😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Garrick Aden-Buie 07b573ed50 Add text_size* template variables пре 8 година
R Add text_size* template variables пре 8 година
docs Squash screenshot пре 8 година
inst Add text_size* template variables пре 8 година
man Add text_size* template variables пре 8 година
man-roxygen Add solarized dark and light themes пре 8 година
tests Initial commit, MWP пре 8 година
.Rbuildignore Oops, setup README.Rmd > github README.md пре 8 година
.gitignore Initial commit, MWP пре 8 година
DESCRIPTION Add package dependencies пре 8 година
NAMESPACE Add solarized dark and light themes пре 8 година
README.Rmd Add screenshots пре 8 година
README.md Add screenshots пре 8 година
xaringanthemer.Rproj Initial commit, MWP пре 8 година

README.md

xaringanthemer

Easily style your xaringan slides with xaringanthemer

Installation

Currently, this is a work in progress. Try it yourself:

devtools::install_github("gadenbuie/xaringanthemer")

Make it work

To make it work, add css: xaringan-themed.css to your xaringan slides YAML header under xaringan::moonreader:

output:
  xaringan::moon_reader:
    lib_dir: libs
    css: xaringan-themed.css

Then, in the first knitr chunk, try this:

```{r setup}
options(htmltools.dir.version = FALSE)
library(xaringanthemer)
mono_light(
  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")
)
```

Monotone Themes

Use these functions to automatically create a consistent color palette for your slides, based around a single color.

  • mono_light(): A light theme based around a single color

  • mono_dark(): A dark theme based around a single color

  • mono_accent(): The default xaringan theme with a single color used for color accents on select elements (headers, bold text, etc.)

  • mono_accent_inverse(): An “inverted” default xaringan theme with a single color used for color accents on select elements (headers, bold text, etc.)