Explorar el Código

Document the CSS property accepted by the various arguments

Closes #33
tags/v0.3.0
Garrick Aden-Buie hace 6 años
padre
commit
e883552cd2
Se han modificado 25 ficheros con 1294 adiciones y 634 borrados
  1. +62
    -31
      R/style_duo.R
  2. +62
    -31
      R/style_duo_accent.R
  3. +62
    -31
      R/style_duo_accent_inverse.R
  4. +62
    -31
      R/style_mono_accent.R
  5. +62
    -31
      R/style_mono_accent_inverse.R
  6. +62
    -31
      R/style_mono_dark.R
  7. +62
    -31
      R/style_mono_light.R
  8. +62
    -31
      R/style_solarized_dark.R
  9. +62
    -31
      R/style_solarized_light.R
  10. +62
    -31
      R/style_xaringan.R
  11. BIN
      R/sysdata.rda
  12. +9
    -0
      R/utils_theme-gen.R
  13. +31
    -2
      data-raw/theme_template_variables.R
  14. +1
    -0
      inst/scripts/generate_theme_functions.R
  15. +63
    -32
      man/style_duo.Rd
  16. +63
    -32
      man/style_duo_accent.Rd
  17. +63
    -32
      man/style_duo_accent_inverse.Rd
  18. +63
    -32
      man/style_mono_accent.Rd
  19. +63
    -32
      man/style_mono_accent_inverse.Rd
  20. +63
    -32
      man/style_mono_dark.Rd
  21. +63
    -32
      man/style_mono_light.Rd
  22. +63
    -32
      man/style_solarized_dark.Rd
  23. +63
    -32
      man/style_solarized_light.Rd
  24. +63
    -32
      man/style_xaringan.Rd
  25. +3
    -2
      vignettes/template-variables.Rmd

+ 62
- 31
R/style_duo.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class. The value of this #' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with #' variable is also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(secondary_color, 0.6)`. Modifies the #' `apply_alpha(secondary_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_duo_accent.R Ver fichero

#' `primary_color`. Modifies the `.remark-slide-number` class. #' `primary_color`. Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class. The value of this #' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with #' variable is also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(primary_color, 0.6)`. Modifies the #' `apply_alpha(primary_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_duo_accent_inverse.R Ver fichero

#' `primary_color`. Modifies the `.remark-slide-number` class. #' `primary_color`. Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class. The value of this #' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with #' variable is also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(primary_color, 0.6)`. Modifies the #' `apply_alpha(primary_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_mono_accent.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class. The value of this variable is #' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with #' also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(base_color, 0.6)`. Modifies the #' `apply_alpha(base_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_mono_accent_inverse.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class. The value of this variable is #' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with #' also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(base_color, 0.6)`. Modifies the #' `apply_alpha(base_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_mono_dark.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class. The value of this variable is #' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with #' also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(base_color, 0.6)`. Modifies the #' `apply_alpha(base_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_mono_light.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class. The value of this variable is #' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with #' also stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' `apply_alpha(base_color, 0.6)`. Modifies the #' `apply_alpha(base_color, 0.6)`. Modifies the
#' `.left-column h2, .left-column h3` classes. #' `.left-column h2, .left-column h3` classes.
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_solarized_dark.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #268bd240. #' @param code_highlight_color Code Line Highlight. Defaults to #268bd240.
#' Modifies the `.remark-code-line-highlighted` class. The value of this #' Modifies the `.remark-code-line-highlighted` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with #' variable is also stored as a CSS variable that can be referenced with
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' #fdf6e3. Modifies the `.inverse` class. The value of this variable is also #' #fdf6e3. Modifies the `.inverse` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with #' stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' #586e75. Modifies the `.left-column h2, .left-column h3` classes. #' #586e75. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #' @param left_column_selected_color Left Column Current Selection. Defaults to
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_solarized_light.R Ver fichero

#' Modifies the `.remark-slide-number` class. #' Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #268bd240. #' @param code_highlight_color Code Line Highlight. Defaults to #268bd240.
#' Modifies the `.remark-code-line-highlighted` class. The value of this #' Modifies the `.remark-code-line-highlighted` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with #' variable is also stored as a CSS variable that can be referenced with
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' #002b36. Modifies the `.inverse` class. The value of this variable is also #' #002b36. Modifies the `.inverse` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with #' stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' #93a1a1. Modifies the `.left-column h2, .left-column h3` classes. #' #93a1a1. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #' @param left_column_selected_color Left Column Current Selection. Defaults to
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

+ 62
- 31
R/style_xaringan.R Ver fichero

#' `inverse_background_color`. Modifies the `.remark-slide-number` class. #' `inverse_background_color`. Modifies the `.remark-slide-number` class.
#' @param padding Slide Padding in `top right [bottom left]` format. Defaults #' @param padding Slide Padding in `top right [bottom left]` format. Defaults
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class. #' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' Accepts CSS
#' [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param background_image Background image applied to each *and every* slide. #' @param background_image Background image applied to each *and every* slide.
#' Set `title_slide_background_image = "none"` to remove the background image #' Set `title_slide_background_image = "none"` to remove the background image
#' from the title slide. Defaults to `NULL`. Modifies the #' from the title slide. Defaults to `NULL`. Modifies the
#' be set. If `background_image` is set, `background_size` will default to #' be set. If `background_image` is set, `background_size` will default to
#' `cover` so the backround fills the screen. If both `background_image` and #' `cover` so the backround fills the screen. If both `background_image` and
#' `background_position` are set, will default to 100 percent. Defaults to #' `background_position` are set, will default to 100 percent. Defaults to
#' `NULL`. Modifies the `.remark-slide-content` class.
#' `NULL`. Modifies the `.remark-slide-content` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param background_position Background image position, requires #' @param background_position Background image position, requires
#' `background_image` to be set, and it is recommended to adjust #' `background_image` to be set, and it is recommended to adjust
#' `background_size`. Defaults to `NULL`. Modifies the #' `background_size`. Defaults to `NULL`. Modifies the
#' `.remark-slide-content` class.
#' `.remark-slide-content` class. Accepts CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param code_highlight_color Code Line Highlight. Defaults to #' @param code_highlight_color Code Line Highlight. Defaults to
#' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class. #' rgba(255,255,0,0.5). Modifies the `.remark-code-line-highlighted` class.
#' The value of this variable is also stored as a CSS variable that can be #' The value of this variable is also stored as a CSS variable that can be
#' @param code_inline_background_color Inline Code Background Color. Defaults #' @param code_inline_background_color Inline Code Background Color. Defaults
#' to `NULL`. Modifies the `.remark-inline-code` class. #' to `NULL`. Modifies the `.remark-inline-code` class.
#' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em. #' @param code_inline_font_size Inline Code Text Font Size. Defaults to 1em.
#' Modifies the `.remark-inline-code` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--code-inline-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-inline-code` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-inline-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' #272822. Modifies the `.inverse` class. The value of this variable is also #' #272822. Modifies the `.inverse` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with #' stored as a CSS variable that can be referenced with
#' Defaults to `NULL`. Modifies the `.title-slide` class. #' Defaults to `NULL`. Modifies the `.title-slide` class.
#' @param title_slide_background_size Title Slide Background Image Size, #' @param title_slide_background_size Title Slide Background Image Size,
#' defaults to "cover" if background image is set. Defaults to `NULL`. #' defaults to "cover" if background image is set. Defaults to `NULL`.
#' Modifies the `.title-slide` class.
#' Modifies the `.title-slide` class. Accepts CSS
#' [background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)
#' property values.
#' @param title_slide_background_position Title Slide Background Image #' @param title_slide_background_position Title Slide Background Image
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class. Accepts
#' CSS
#' [background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)
#' property values.
#' @param footnote_color Footnote text color (if `NA`, then it will be the same #' @param footnote_color Footnote text color (if `NA`, then it will be the same
#' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote` #' color as `text_color`). Defaults to `NULL`. Modifies the `.footnote`
#' class. #' class.
#' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies #' @param footnote_font_size Footnote font size. Defaults to 0.9em. Modifies
#' the `.footnote` class.
#' the `.footnote` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param footnote_position_bottom Footnote location from bottom of screen. #' @param footnote_position_bottom Footnote location from bottom of screen.
#' Defaults to 60px. Modifies the `.footnote` class.
#' Defaults to 60px. Modifies the `.footnote` class. Accepts CSS
#' [position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)
#' property values.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #' @param left_column_subtle_color Left Column Text (not last). Defaults to
#' #777. Modifies the `.left-column h2, .left-column h3` classes. #' #777. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #' @param left_column_selected_color Left Column Current Selection. Defaults to
#' `var(--base-font-size)` in any argument of a style function or in custom #' `var(--base-font-size)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies #' @param text_font_size Slide Body Text Font Size. Defaults to 1rem. Modifies
#' the `.remark-slide-content` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--text-font-size)` in any argument of a style function or in custom
#' CSS.
#' the `.remark-slide-content` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem. #' @param header_h1_font_size h1 Header Text Font Size. Defaults to 2.75rem.
#' Modifies the `.remark-slide-content h1` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h1-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h1` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h1-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem. #' @param header_h2_font_size h2 Header Text Font Size. Defaults to 2.25rem.
#' Modifies the `.remark-slide-content h2` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h2-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h2` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h2-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem. #' @param header_h3_font_size h3 Header Text Font Size. Defaults to 1.75rem.
#' Modifies the `.remark-slide-content h3` class. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--header-h3-font-size)` in any argument of a style function or in
#' custom CSS.
#' Modifies the `.remark-slide-content h3` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-h3-font-size)` in any
#' argument of a style function or in custom CSS.
#' @param header_background_auto Add background under slide title automatically #' @param header_background_auto Add background under slide title automatically
#' for h1 header elements. If not enabled, use `class: header_background` to #' for h1 header elements. If not enabled, use `class: header_background` to
#' enable. Defaults to `FALSE`. #' enable. Defaults to `FALSE`.
#' `var(--header-background-text-color)` in any argument of a style function #' `var(--header-background-text-color)` in any argument of a style function
#' or in custom CSS. #' or in custom CSS.
#' @param header_background_padding Padding for h1 Header with Background. #' @param header_background_padding Padding for h1 Header with Background.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class. Accepts
#' CSS [padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)
#' property values.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' Slide with Header with Background. Defaults to 7rem. Modifies the #' Slide with Header with Background. Defaults to 7rem. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to #' @param text_slide_number_font_size Slide Number Text Font Size. Defaults to
#' 0.9em. Modifies the `.remark-slide-number` class.
#' 0.9em. Modifies the `.remark-slide-number` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values.
#' @param text_font_google Use `google_font()` to specify body font. Defaults #' @param text_font_google Use `google_font()` to specify body font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param text_font_family Body Text Font Family (xaringan default is #' @param text_font_family Body Text Font Family (xaringan default is
#' referenced with `var(--text-font-family)` in any argument of a style #' referenced with `var(--text-font-family)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies #' @param text_font_weight Body Text Font Weight. Defaults to normal. Modifies
#' the `body` element.
#' the `body` element. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. #' https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
#' Modifies the `@import url()` elements. #' Modifies the `@import url()` elements.
#' can be referenced with `var(--header-font-family)` in any argument of a #' can be referenced with `var(--header-font-family)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the #' @param header_font_weight Header Font Weight. Defaults to 600. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. Accepts CSS
#' [font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)
#' property values.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. #' https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.
#' `var(--code-font-family)` in any argument of a style function or in custom #' `var(--code-font-family)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the #' @param code_font_size Code Text Font Size. Defaults to 0.9rem. Modifies the
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' `.remark-inline` class. Accepts CSS
#' [font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)
#' property values. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any #' variable that can be referenced with `var(--code-font-size)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param code_font_url Code Font URL. Defaults to #' @param code_font_url Code Font URL. Defaults to

BIN
R/sysdata.rda Ver fichero


+ 9
- 0
R/utils_theme-gen.R Ver fichero

) )
} }


describe_css_property <- function(css_property = NULL) {
if (is.null(css_property)) return("")
ifelse(
is.na(css_property),
"",
glue::glue(" Accepts CSS {css_property} property values.")
)
}

# nocov end # nocov end

+ 31
- 2
data-raw/theme_template_variables.R Ver fichero

, "code_font_family_fallback", "Menlo, Consolas, Monaco, Liberation Mono, Lucida Console", ".remark-code, .remark-inline-code", "Code Font Fallback", NA_character_ , "code_font_family_fallback", "Menlo, Consolas, Monaco, Liberation Mono, Lucida Console", ".remark-code, .remark-inline-code", "Code Font Fallback", NA_character_
) )


set_default <- function(tv, ...) {
set_default <- function(tv, ..., set_var = "default") {
vars <- c(...) vars <- c(...)
for (var in names(vars)) { for (var in names(vars)) {
tv[tv$variable == var, 'default'] <- vars[var]
tv[tv$variable == var, set_var] <- vars[var]
} }
tv tv
} }


template_variables$css_property <- NA_character_
mdn_font_size <- "[font-size](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size)"
mdn_font_weight <- "[font-weight](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight)"
mdn_background_size <- "[background-size](https://developer.mozilla.org/en-US/docs/Web/CSS/background-size)"
mdn_background_position <- "[background-position](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)"
mdn_padding <- "[padding](https://developer.mozilla.org/en-US/docs/Web/CSS/padding)"

template_variables <- set_default(
template_variables,
set_var = "css_property",
padding = mdn_padding,
background_size = mdn_background_size,
background_position = mdn_background_position,
code_inline_font_size = mdn_font_size,
title_slide_background_position = mdn_background_position,
title_slide_background_size = mdn_background_size,
footnote_font_size = mdn_font_size,
footnote_position_bottom = "[position](https://developer.mozilla.org/en-US/docs/Web/CSS/position_value)",
text_font_size = mdn_font_size,
header_h1_font_size = mdn_font_size,
header_h2_font_size = mdn_font_size,
header_h3_font_size = mdn_font_size,
header_background_padding = mdn_padding,
text_slide_number_font_size = mdn_font_size,
text_font_weight = mdn_font_weight,
header_font_weight = mdn_font_weight,
code_font_size = mdn_font_size
)

template_mono_light <- tibble::tribble( template_mono_light <- tibble::tribble(
~ variable, ~ default, ~ element, ~ description, ~ css_variable ~ variable, ~ default, ~ element, ~ description, ~ css_variable
, "base_color", "#23395b", "multiple", "Monotone base color, works best with a strong color", "--base" , "base_color", "#23395b", "multiple", "Monotone base color, works best with a strong color", "--base"

+ 1
- 0
inst/scripts/generate_theme_functions.R Ver fichero

"#' @param {variable} {description}. ", "#' @param {variable} {description}. ",
"Defaults to {gsub('[{{}}]', '`', default)}. ", "Defaults to {gsub('[{{}}]', '`', default)}. ",
"{element_description(element)}", "{element_description(element)}",
"{describe_css_property(css_property)}",
"{describe_css_variable(css_variable)}" "{describe_css_variable(css_variable)}"
) )
), ),

+ 63
- 32
man/style_duo.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this \code{secondary_color}. Modifies the \code{.inverse} class. The value of this


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(secondary_color, 0.6)}. Modifies the \code{apply_alpha(secondary_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_duo_accent.Rd Ver fichero

\code{primary_color}. Modifies the \code{.remark-slide-number} class.} \code{primary_color}. Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this \code{secondary_color}. Modifies the \code{.inverse} class. The value of this


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(primary_color, 0.6)}. Modifies the \code{apply_alpha(primary_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_duo_accent_inverse.Rd Ver fichero

\code{primary_color}. Modifies the \code{.remark-slide-number} class.} \code{primary_color}. Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this \code{secondary_color}. Modifies the \code{.inverse} class. The value of this


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(primary_color, 0.6)}. Modifies the \code{apply_alpha(primary_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_mono_accent.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is \code{base_color}. Modifies the \code{.inverse} class. The value of this variable is


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(base_color, 0.6)}. Modifies the \code{apply_alpha(base_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_mono_accent_inverse.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is \code{base_color}. Modifies the \code{.inverse} class. The value of this variable is


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(base_color, 0.6)}. Modifies the \code{apply_alpha(base_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_mono_dark.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is \code{base_color}. Modifies the \code{.inverse} class. The value of this variable is


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(base_color, 0.6)}. Modifies the \code{apply_alpha(base_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_mono_light.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is \code{base_color}. Modifies the \code{.inverse} class. The value of this variable is


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
\code{apply_alpha(base_color, 0.6)}. Modifies the \code{apply_alpha(base_color, 0.6)}. Modifies the
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_solarized_dark.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to #268bd240. \item{code_highlight_color}{Code Line Highlight. Defaults to #268bd240.
Modifies the \code{.remark-code-line-highlighted} class. The value of this Modifies the \code{.remark-code-line-highlighted} class. The value of this
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
#fdf6e3. Modifies the \code{.inverse} class. The value of this variable is also #fdf6e3. Modifies the \code{.inverse} class. The value of this variable is also


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
#586e75. Modifies the \verb{.left-column h2, .left-column h3} classes.} #586e75. Modifies the \verb{.left-column h2, .left-column h3} classes.}
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_solarized_light.Rd Ver fichero

Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to #268bd240. \item{code_highlight_color}{Code Line Highlight. Defaults to #268bd240.
Modifies the \code{.remark-code-line-highlighted} class. The value of this Modifies the \code{.remark-code-line-highlighted} class. The value of this
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
#002b36. Modifies the \code{.inverse} class. The value of this variable is also #002b36. Modifies the \code{.inverse} class. The value of this variable is also


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
#93a1a1. Modifies the \verb{.left-column h2, .left-column h3} classes.} #93a1a1. Modifies the \verb{.left-column h2, .left-column h3} classes.}
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 63
- 32
man/style_xaringan.Rd Ver fichero

\code{inverse_background_color}. Modifies the \code{.remark-slide-number} class.} \code{inverse_background_color}. Modifies the \code{.remark-slide-number} class.}


\item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults \item{padding}{Slide Padding in \verb{top right [bottom left]} format. Defaults
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.
Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{background_image}{Background image applied to each \emph{and every} slide. \item{background_image}{Background image applied to each \emph{and every} slide.
Set \code{title_slide_background_image = "none"} to remove the background image Set \code{title_slide_background_image = "none"} to remove the background image
be set. If \code{background_image} is set, \code{background_size} will default to be set. If \code{background_image} is set, \code{background_size} will default to
\code{cover} so the backround fills the screen. If both \code{background_image} and \code{cover} so the backround fills the screen. If both \code{background_image} and
\code{background_position} are set, will default to 100 percent. Defaults to \code{background_position} are set, will default to 100 percent. Defaults to
\code{NULL}. Modifies the \code{.remark-slide-content} class.}
\code{NULL}. Modifies the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{background_position}{Background image position, requires \item{background_position}{Background image position, requires
\code{background_image} to be set, and it is recommended to adjust \code{background_image} to be set, and it is recommended to adjust
\code{background_size}. Defaults to \code{NULL}. Modifies the \code{background_size}. Defaults to \code{NULL}. Modifies the
\code{.remark-slide-content} class.}
\code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{code_highlight_color}{Code Line Highlight. Defaults to \item{code_highlight_color}{Code Line Highlight. Defaults to
rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class. rgba(255,255,0,0.5). Modifies the \code{.remark-code-line-highlighted} class.
to \code{NULL}. Modifies the \code{.remark-inline-code} class.} to \code{NULL}. Modifies the \code{.remark-inline-code} class.}


\item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em. \item{code_inline_font_size}{Inline Code Text Font Size. Defaults to 1em.
Modifies the \code{.remark-inline-code} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--code-inline-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \code{.remark-inline-code} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-inline-font-size)} in any
argument of a style function or in custom CSS.}


\item{inverse_background_color}{Inverse Background Color. Defaults to \item{inverse_background_color}{Inverse Background Color. Defaults to
#272822. Modifies the \code{.inverse} class. The value of this variable is also #272822. Modifies the \code{.inverse} class. The value of this variable is also


\item{title_slide_background_size}{Title Slide Background Image Size, \item{title_slide_background_size}{Title Slide Background Image Size,
defaults to "cover" if background image is set. Defaults to \code{NULL}. defaults to "cover" if background image is set. Defaults to \code{NULL}.
Modifies the \code{.title-slide} class.}
Modifies the \code{.title-slide} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}{background-size}
property values.}


\item{title_slide_background_position}{Title Slide Background Image \item{title_slide_background_position}{Title Slide Background Image
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class. Accepts
CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/background-position}{background-position}
property values.}


\item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same \item{footnote_color}{Footnote text color (if \code{NA}, then it will be the same
color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote} color as \code{text_color}). Defaults to \code{NULL}. Modifies the \code{.footnote}
class.} class.}


\item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies \item{footnote_font_size}{Footnote font size. Defaults to 0.9em. Modifies
the \code{.footnote} class.}
the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{footnote_position_bottom}{Footnote location from bottom of screen. \item{footnote_position_bottom}{Footnote location from bottom of screen.
Defaults to 60px. Modifies the \code{.footnote} class.}
Defaults to 60px. Modifies the \code{.footnote} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/position_value}{position}
property values.}


\item{left_column_subtle_color}{Left Column Text (not last). Defaults to \item{left_column_subtle_color}{Left Column Text (not last). Defaults to
#777. Modifies the \verb{.left-column h2, .left-column h3} classes.} #777. Modifies the \verb{.left-column h2, .left-column h3} classes.}
CSS.} CSS.}


\item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies \item{text_font_size}{Slide Body Text Font Size. Defaults to 1rem. Modifies
the \code{.remark-slide-content} class. The value of this variable is also
stored as a CSS variable that can be referenced with
\code{var(--text-font-size)} in any argument of a style function or in custom
CSS.}
the \code{.remark-slide-content} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem. \item{header_h1_font_size}{h1 Header Text Font Size. Defaults to 2.75rem.
Modifies the \verb{.remark-slide-content h1} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h1-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h1} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h1-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem. \item{header_h2_font_size}{h2 Header Text Font Size. Defaults to 2.25rem.
Modifies the \verb{.remark-slide-content h2} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h2-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h2} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h2-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem. \item{header_h3_font_size}{h3 Header Text Font Size. Defaults to 1.75rem.
Modifies the \verb{.remark-slide-content h3} class. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--header-h3-font-size)} in any argument of a style function or in
custom CSS.}
Modifies the \verb{.remark-slide-content h3} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-h3-font-size)} in any
argument of a style function or in custom CSS.}


\item{header_background_auto}{Add background under slide title automatically \item{header_background_auto}{Add background under slide title automatically
for h1 header elements. If not enabled, use \code{class: header_background} to for h1 header elements. If not enabled, use \code{class: header_background} to
or in custom CSS.} or in custom CSS.}


\item{header_background_padding}{Padding for h1 Header with Background. \item{header_background_padding}{Padding for h1 Header with Background.
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class. Accepts
CSS \href{https://developer.mozilla.org/en-US/docs/Web/CSS/padding}{padding}
property values.}


\item{header_background_content_padding_top}{Top Padding for Content in \item{header_background_content_padding_top}{Top Padding for Content in
Slide with Header with Background. Defaults to 7rem. Modifies the Slide with Header with Background. Defaults to 7rem. Modifies the
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to \item{text_slide_number_font_size}{Slide Number Text Font Size. Defaults to
0.9em. Modifies the \code{.remark-slide-number} class.}
0.9em. Modifies the \code{.remark-slide-number} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values.}


\item{text_font_google}{Use \code{google_font()} to specify body font. Defaults \item{text_font_google}{Use \code{google_font()} to specify body font. Defaults
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}
function or in custom CSS.} function or in custom CSS.}


\item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies \item{text_font_weight}{Body Text Font Weight. Defaults to normal. Modifies
the \code{body} element.}
the \code{body} element. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{text_font_url}{Body Text Font URL(s). Defaults to \item{text_font_url}{Body Text Font URL(s). Defaults to
https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap. https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap.
style function or in custom CSS.} style function or in custom CSS.}


\item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the \item{header_font_weight}{Header Font Weight. Defaults to 600. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight}{font-weight}
property values.}


\item{header_font_url}{Header Font URL. Defaults to \item{header_font_url}{Header Font URL. Defaults to
https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap. https://fonts.googleapis.com/css?family=Cabin:600,600i&display=swap.
CSS.} CSS.}


\item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the \item{code_font_size}{Code Text Font Size. Defaults to 0.9rem. Modifies the
\code{.remark-inline} class. The value of this variable is also stored as a CSS
\code{.remark-inline} class. Accepts CSS
\href{https://developer.mozilla.org/en-US/docs/Web/CSS/font-size}{font-size}
property values. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}



+ 3
- 2
vignettes/template-variables.Rmd Ver fichero

tv$variable <- glue::glue_data(tv, "`{variable}`") tv$variable <- glue::glue_data(tv, "`{variable}`")
tv[!is.na(tv$css_variable), "css_variable"] <- glue::glue("`{tv$css_variable[!is.na(tv$css_variable)]}`") tv[!is.na(tv$css_variable), "css_variable"] <- glue::glue("`{tv$css_variable[!is.na(tv$css_variable)]}`")
tv[is.na(tv$css_variable), "css_variable"] <- "" tv[is.na(tv$css_variable), "css_variable"] <- ""
tv[is.na(tv$css_property), "css_property"] <- ""
tv$default <- gsub("[{}]", "", tv$default) tv$default <- gsub("[{}]", "", tv$default)
tv <- tv[, c( tv <- tv[, c(
"variable", "description", "element", "default", "css_variable"
"variable", "description", "element", "css_property", "default", "css_variable"
)] )]
knitr::kable( knitr::kable(
tv, tv,
col.names = c("Variable", "Description", "Element", "Default", "CSS Variable")
col.names = c("Variable", "Description", "Element", "CSS Property", "Default", "CSS Variable")
) )
``` ```



Cargando…
Cancelar
Guardar