Use any Bootstrap variables to customize a {shiny} theme.

bs_vars(...)

Arguments

...

Variables to use, under the form body_bg = "#FFF" or "body-bg" = "#FFF".

Value

a list that can be used in create_theme.

Note

For a full list of available variables, use search_vars_bs.

Examples

bs_vars(body_bg = "#FFF")
#> $`body-bg` #> [1] "#FFF" #> #> attr(,"class") #> [1] "fresh_sass_vars" "bootstrap_vars" "list"
bs_vars("body-bg" = "#FFF")
#> $`body-bg` #> [1] "#FFF" #> #> attr(,"class") #> [1] "fresh_sass_vars" "bootstrap_vars" "list"