| @@ -17,16 +17,16 @@ Then, in a hidden chunk just after the knitr setup chunk, load **xaringanthemer* | |||
| ````markdown | |||
| ```{r xaringan-themer, include = FALSE}`r ""` | |||
| library(xaringanthemer) | |||
| style_mono_light( | |||
| style_mono_accent( | |||
| base_color = "#1c5253", | |||
| header_font_google = google_font("Josefin Sans"), | |||
| text_font_google = google_font("Montserrat", "300", "300i"), | |||
| code_font_google = google_font("Droid Mono") | |||
| code_font_google = google_font("Fira Mono") | |||
| ) | |||
| ``` | |||
| ```` | |||
| <img src="https://raw.githubusercontent.com/gadenbuie/xaringanthemer/assets/example_mono_light_1c5253.png" alt="Example title and normal slides using a green xaringanthemer theme" data-external="1" /> | |||
| <img src="https://raw.githubusercontent.com/gadenbuie/xaringanthemer/assets/example_mono_accent_1c5253.png" alt="Example title and normal slides using a green xaringanthemer theme" data-external="1" /> | |||
| ### Matching ggplot Themes | |||
| @@ -44,11 +44,11 @@ the primary color used in your slides. | |||
| See `?scale_xaringan` for more details. | |||
| ```{r xaringanthemer-ggplot-setup, include=FALSE, eval=IS_README} | |||
| style_mono_light( | |||
| style_mono_accent( | |||
| base_color = "#1c5253", | |||
| header_font_google = google_font("Josefin Sans"), | |||
| text_font_google = google_font("Montserrat", "300", "300i"), | |||
| code_font_google = google_font("Droid Mono"), | |||
| code_font_google = google_font("Fira Mono"), | |||
| outfile = NULL | |||
| ) | |||
| ``` | |||