style_widgets: Change webexercises widget style

Description Usage Arguments Details Value Examples

View source: R/webexercises_fns.R

Description

Change webexercises widget style

Usage

1
style_widgets(default = "red", correct = "blue")

Arguments

default

The colour of the widgets when the correct answer is not filled in (defaults to blue).

correct

The colour of the widgets when the correct answer not filled in (defaults to red).

Details

Call this function inline in an RMarkdown document to change the default and correct colours using any valid CSS colour word (e.g., red, rgb(255,0,0), hsl(0, 100

Value

A character string containing HTML code to change the CSS style values for widgets.

Examples

1
2
3
4
5
# change to green when correct
style_widgets(correct = "green")

# yellow when unfilled, pink when correct
style_widgets("#FFFF00", "#FF3399")

webexercises documentation built on Sept. 15, 2021, 9:09 a.m.