Use any Bootstrap variables to customize a {shiny} theme.
bs_vars(...)
Variables to use, under the form body_bg = "#FFF"
or "body-bg" = "#FFF"
.
a list
that can be used in create_theme
.
For a full list of available variables, use search_vars_bs
.
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"