| ````markdown | ````markdown | ||||
| ```{r xaringan-themer, include = FALSE}`r ""` | ```{r xaringan-themer, include = FALSE}`r ""` | ||||
| library(xaringanthemer) | library(xaringanthemer) | ||||
| style_mono_light( | |||||
| style_mono_accent( | |||||
| base_color = "#1c5253", | base_color = "#1c5253", | ||||
| header_font_google = google_font("Josefin Sans"), | header_font_google = google_font("Josefin Sans"), | ||||
| text_font_google = google_font("Montserrat", "300", "300i"), | 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 | ### Matching ggplot Themes | ||||
| See `?scale_xaringan` for more details. | See `?scale_xaringan` for more details. | ||||
| ```{r xaringanthemer-ggplot-setup, include=FALSE, eval=IS_README} | ```{r xaringanthemer-ggplot-setup, include=FALSE, eval=IS_README} | ||||
| style_mono_light( | |||||
| style_mono_accent( | |||||
| base_color = "#1c5253", | base_color = "#1c5253", | ||||
| header_font_google = google_font("Josefin Sans"), | header_font_google = google_font("Josefin Sans"), | ||||
| text_font_google = google_font("Montserrat", "300", "300i"), | text_font_google = google_font("Montserrat", "300", "300i"), | ||||
| code_font_google = google_font("Droid Mono"), | |||||
| code_font_google = google_font("Fira Mono"), | |||||
| outfile = NULL | outfile = NULL | ||||
| ) | ) | ||||
| ``` | ``` |