if (requireNamespace("thematic")) thematic::thematic_rmd(font = "auto")
This is an R Markdown document themed with {bslib} package. {bslib} makes it easy to customize the main colors and fonts of a html_document, flexdashboard::flex_dashboard, shiny::fluidPage(), or more generally any website that uses Bootstrap for styling. The theme parameter in the yaml front-matter of this Rmd document describes a bslib::bs_theme() object. This particular example uses Bootstrap 3 (version: 3), which is primarily for 'legacy' documents that would break with Bootstrap 4 or above.
When running this document with {thematic} installed, the thematic::thematic_rmd(font = "auto") effectively translates theme (CSS) settings to new global theming defaults for {ggplot2}, {lattice}, and {base} R graphics:
library(ggplot2) ggplot(mpg, aes(displ, hwy)) + geom_point() + geom_smooth()
# lattice::show.settings()
plot(pressure, col = thematic::thematic_get_option("accent"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.