Procházet zdrojové kódy

Fix description of css variables in argument documentation

tags/v0.3.0
Garrick Aden-Buie před 6 roky
rodič
revize
254bb0802c
21 změnil soubory, kde provedl 1488 přidání a 984 odebrání
  1. +90
    -24
      R/style_duo.R
  2. +90
    -24
      R/style_duo_accent.R
  3. +90
    -24
      R/style_duo_accent_inverse.R
  4. +91
    -24
      R/style_mono_accent.R
  5. +91
    -24
      R/style_mono_accent_inverse.R
  6. +91
    -24
      R/style_mono_dark.R
  7. +91
    -24
      R/style_mono_light.R
  8. +34
    -106
      R/style_solarized_dark.R
  9. +34
    -106
      R/style_solarized_light.R
  10. +34
    -106
      R/style_xaringan.R
  11. +9
    -5
      R/utils_theme-gen.R
  12. +91
    -25
      man/style_duo.Rd
  13. +91
    -25
      man/style_duo_accent.Rd
  14. +91
    -25
      man/style_duo_accent_inverse.Rd
  15. +92
    -25
      man/style_mono_accent.Rd
  16. +92
    -25
      man/style_mono_accent_inverse.Rd
  17. +92
    -25
      man/style_mono_dark.Rd
  18. +92
    -25
      man/style_mono_light.Rd
  19. +34
    -106
      man/style_solarized_dark.Rd
  20. +34
    -106
      man/style_solarized_light.Rd
  21. +34
    -106
      man/style_xaringan.Rd

+ 90
- 24
R/style_duo.R Zobrazit soubor

#' multiple CSS rules. #' multiple CSS rules.
#' @param text_color Text Color. Defaults to #' @param text_color Text Color. Defaults to
#' `choose_dark_or_light(primary_color, darken_color(primary_color, 0.9), lighten_color(secondary_color, 0.99))`. #' `choose_dark_or_light(primary_color, darken_color(primary_color, 0.9), lighten_color(secondary_color, 0.99))`.
#' Modifies the `body` element.
#' Modifies the `body` element. The value of this variable is also stored as
#' a CSS variable that can be referenced with `var(--text_color)` in any
#' argument of a style function or in custom CSS.
#' @param header_color Header Color. Defaults to `secondary_color`. Modifies #' @param header_color Header Color. Defaults to `secondary_color`. Modifies
#' the `h1, h2, h3` elements.
#' the `h1, h2, h3` elements. The value of this variable is also stored as a
#' CSS variable that can be referenced with `var(--header-color)` in any
#' argument of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `primary_color`. #' @param background_color Slide Background Color. Defaults to `primary_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to `secondary_color`. Modifies the #' @param link_color Link Color. Defaults to `secondary_color`. Modifies the
#' `a, a > code` elements.
#' `a, a > code` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--link-color)` in any argument
#' of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to `secondary_color`. #' @param text_bold_color Bold Text Color. Defaults to `secondary_color`.
#' Modifies the `strong` element.
#' Modifies the `strong` element. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--text-bold-color)` in
#' any argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to `text_color`. #' @param text_slide_number_color Slide Number Color. Defaults to `text_color`.
#' 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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to `secondary_color`. #' @param code_inline_color Inline Code Color. Defaults to `secondary_color`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class.
#' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to `primary_color`. #' @param inverse_text_color Inverse Text Color. Defaults to `primary_color`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #' @param inverse_header_color Inverse Header Color. Defaults to
#' `primary_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3` #' `primary_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3`
#' classes.
#' classes. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--inverse-header-color)` in any argument of a
#' style function or in custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `secondary_color`. Modifies the `.title-slide` class.
#' `secondary_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-text-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `primary_color`. Modifies the `.title-slide` class.
#' to `primary_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-background-color)` in any argument of a style function
#' or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `lighten_color(primary_color, 0.9)`. Modifies the #' Defaults to `lighten_color(primary_color, 0.9)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 90
- 24
R/style_duo_accent.R Zobrazit soubor

#' @param black_color Darkest color used. Defaults to #000000. Used in multiple #' @param black_color Darkest color used. Defaults to #000000. Used in multiple
#' CSS rules. #' CSS rules.
#' @param text_color Text Color. Defaults to `black_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `black_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `primary_color`. Modifies the #' @param header_color Header Color. Defaults to `primary_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `white_color`. #' @param background_color Slide Background Color. Defaults to `white_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to #' @param link_color Link Color. Defaults to
#' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`. #' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`.
#' Modifies the `a, a > code` elements.
#' Modifies the `a, a > code` elements. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(--link-color)`
#' in any argument of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to #' @param text_bold_color Bold Text Color. Defaults to
#' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`. #' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`.
#' Modifies the `strong` element.
#' Modifies the `strong` element. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--text-bold-color)` in
#' any argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to #' @param text_slide_number_color Slide Number Color. Defaults to
#' `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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to #' @param code_inline_color Inline Code Color. Defaults to
#' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`. #' `choose_dark_or_light(secondary_color, primary_color, secondary_color)`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class.
#' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to #' @param inverse_text_color Inverse Text Color. Defaults to
#' `choose_dark_or_light(secondary_color, black_color, white_color)`. #' `choose_dark_or_light(secondary_color, black_color, white_color)`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #' @param inverse_header_color Inverse Header Color. Defaults to
#' `choose_dark_or_light(secondary_color, black_color, white_color)`. #' `choose_dark_or_light(secondary_color, black_color, white_color)`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `choose_dark_or_light(primary_color, black_color, white_color)`. Modifies #' `choose_dark_or_light(primary_color, black_color, white_color)`. Modifies
#' the `.title-slide` class.
#' the `.title-slide` class. The value of this variable is also stored as a
#' CSS variable that can be referenced with `var(--title-slide-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `primary_color`. Modifies the `.title-slide` class.
#' to `primary_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-background-color)` in any argument of a style function
#' or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `lighten_color(secondary_color, 0.8)`. Modifies the #' Defaults to `lighten_color(secondary_color, 0.8)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 90
- 24
R/style_duo_accent_inverse.R Zobrazit soubor

#' @param black_color Darkest color used. Defaults to #000000. Used in multiple #' @param black_color Darkest color used. Defaults to #000000. Used in multiple
#' CSS rules. #' CSS rules.
#' @param text_color Text Color. Defaults to `white_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `white_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `primary_color`. Modifies the #' @param header_color Header Color. Defaults to `primary_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `black_color`. #' @param background_color Slide Background Color. Defaults to `black_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to #' @param link_color Link Color. Defaults to
#' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`. #' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`.
#' Modifies the `a, a > code` elements.
#' Modifies the `a, a > code` elements. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(--link-color)`
#' in any argument of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to #' @param text_bold_color Bold Text Color. Defaults to
#' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`. #' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`.
#' Modifies the `strong` element.
#' Modifies the `strong` element. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--text-bold-color)` in
#' any argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to #' @param text_slide_number_color Slide Number Color. Defaults to
#' `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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to #' @param code_inline_color Inline Code Color. Defaults to
#' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`. #' `choose_dark_or_light(secondary_color, secondary_color, primary_color)`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `secondary_color`. Modifies the `.inverse` class.
#' `secondary_color`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to #' @param inverse_text_color Inverse Text Color. Defaults to
#' `choose_dark_or_light(secondary_color, black_color, white_color)`. #' `choose_dark_or_light(secondary_color, black_color, white_color)`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #' @param inverse_header_color Inverse Header Color. Defaults to
#' `choose_dark_or_light(secondary_color, black_color, white_color)`. #' `choose_dark_or_light(secondary_color, black_color, white_color)`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `choose_dark_or_light(primary_color, black_color, white_color)`. Modifies #' `choose_dark_or_light(primary_color, black_color, white_color)`. Modifies
#' the `.title-slide` class.
#' the `.title-slide` class. The value of this variable is also stored as a
#' CSS variable that can be referenced with `var(--title-slide-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `primary_color`. Modifies the `.title-slide` class.
#' to `primary_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-background-color)` in any argument of a style function
#' or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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,
#' `darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.2)`. #' `darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.2)`.
#' Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' Modifies the `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 91
- 24
R/style_mono_accent.R Zobrazit soubor

#' @param black_color Darkest color used. Defaults to #272822. Used in multiple #' @param black_color Darkest color used. Defaults to #272822. Used in multiple
#' CSS rules. #' CSS rules.
#' @param text_color Text Color. Defaults to `black_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `black_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `base_color`. Modifies the #' @param header_color Header Color. Defaults to `base_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `white_color`. #' @param background_color Slide Background Color. Defaults to `white_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to `base_color`. Modifies the #' @param link_color Link Color. Defaults to `base_color`. Modifies the
#' `a, a > code` elements.
#' `a, a > code` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--link-color)` in any argument
#' of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies #' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies
#' the `strong` element.
#' the `strong` element. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to `base_color`. #' @param text_slide_number_color Slide Number Color. Defaults to `base_color`.
#' 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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to `base_color`. #' @param code_inline_color Inline Code Color. Defaults to `base_color`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class.
#' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to `white_color`. #' @param inverse_text_color Inverse Text Color. Defaults to `white_color`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to `white_color`. #' @param inverse_header_color Inverse Header Color. Defaults to `white_color`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `inverse_text_color`. Modifies the `.title-slide` class.
#' `inverse_text_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-text-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `inverse_background_color`. Modifies the `.title-slide` class.
#' to `inverse_background_color`. Modifies the `.title-slide` class. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `lighten_color(base_color, 0.8)`. Modifies the #' Defaults to `lighten_color(base_color, 0.8)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 91
- 24
R/style_mono_accent_inverse.R Zobrazit soubor

#' `base_color`. Defaults to `darken_color(base_color, 0.9)`. Used in #' `base_color`. Defaults to `darken_color(base_color, 0.9)`. Used in
#' multiple CSS rules. #' multiple CSS rules.
#' @param text_color Text Color. Defaults to `white_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `white_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `base_color`. Modifies the #' @param header_color Header Color. Defaults to `base_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `black_color`. #' @param background_color Slide Background Color. Defaults to `black_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to `base_color`. Modifies the #' @param link_color Link Color. Defaults to `base_color`. Modifies the
#' `a, a > code` elements.
#' `a, a > code` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--link-color)` in any argument
#' of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies #' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies
#' the `strong` element.
#' the `strong` element. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to `base_color`. #' @param text_slide_number_color Slide Number Color. Defaults to `base_color`.
#' 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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to `base_color`. #' @param code_inline_color Inline Code Color. Defaults to `base_color`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class.
#' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to `black_color`. #' @param inverse_text_color Inverse Text Color. Defaults to `black_color`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to `black_color`. #' @param inverse_header_color Inverse Header Color. Defaults to `black_color`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `inverse_text_color`. Modifies the `.title-slide` class.
#' `inverse_text_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-text-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `inverse_background_color`. Modifies the `.title-slide` class.
#' to `inverse_background_color`. Modifies the `.title-slide` class. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `darken_color(base_color, 0.8)`. Modifies the #' Defaults to `darken_color(base_color, 0.8)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 91
- 24
R/style_mono_dark.R Zobrazit soubor

#' `base_color`. Defaults to `darken_color(base_color, 0.85)`. Used in #' `base_color`. Defaults to `darken_color(base_color, 0.85)`. Used in
#' multiple CSS rules. #' multiple CSS rules.
#' @param text_color Text Color. Defaults to `white_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `white_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `base_color`. Modifies the #' @param header_color Header Color. Defaults to `base_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `black_color`. #' @param background_color Slide Background Color. Defaults to `black_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to `base_color`. Modifies the #' @param link_color Link Color. Defaults to `base_color`. Modifies the
#' `a, a > code` elements.
#' `a, a > code` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--link-color)` in any argument
#' of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies #' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies
#' the `strong` element.
#' the `strong` element. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to `base_color`. #' @param text_slide_number_color Slide Number Color. Defaults to `base_color`.
#' 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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to `base_color`. #' @param code_inline_color Inline Code Color. Defaults to `base_color`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class.
#' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to `black_color`. #' @param inverse_text_color Inverse Text Color. Defaults to `black_color`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to `black_color`. #' @param inverse_header_color Inverse Header Color. Defaults to `black_color`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `inverse_text_color`. Modifies the `.title-slide` class.
#' `inverse_text_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-text-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `inverse_background_color`. Modifies the `.title-slide` class.
#' to `inverse_background_color`. Modifies the `.title-slide` class. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `darken_color(base_color, 0.7)`. Modifies the #' Defaults to `darken_color(base_color, 0.7)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 91
- 24
R/style_mono_light.R Zobrazit soubor

#' `base_color`. Defaults to `darken_color(base_color, 0.3)`. Used in #' `base_color`. Defaults to `darken_color(base_color, 0.3)`. Used in
#' multiple CSS rules. #' multiple CSS rules.
#' @param text_color Text Color. Defaults to `black_color`. Modifies the `body` #' @param text_color Text Color. Defaults to `black_color`. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text_color)` in any argument of a style
#' function or in custom CSS.
#' @param header_color Header Color. Defaults to `base_color`. Modifies the #' @param header_color Header Color. Defaults to `base_color`. Modifies the
#' `h1, h2, h3` elements.
#' `h1, h2, h3` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--header-color)` in any argument
#' of a style function or in custom CSS.
#' @param background_color Slide Background Color. Defaults to `white_color`. #' @param background_color Slide Background Color. Defaults to `white_color`.
#' Modifies the `.remark-slide-content` class.
#' Modifies the `.remark-slide-content` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--background-color)` in any argument of a style function or in custom
#' CSS.
#' @param link_color Link Color. Defaults to `base_color`. Modifies the #' @param link_color Link Color. Defaults to `base_color`. Modifies the
#' `a, a > code` elements.
#' `a, a > code` elements. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--link-color)` in any argument
#' of a style function or in custom CSS.
#' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies #' @param text_bold_color Bold Text Color. Defaults to `base_color`. Modifies
#' the `strong` element.
#' the `strong` element. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to `base_color`. #' @param text_slide_number_color Slide Number Color. Defaults to `base_color`.
#' 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
#' `.remark-slide-content` class. #' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to `base_color`. #' @param code_inline_color Inline Code Color. Defaults to `base_color`.
#' Modifies the `.remark-inline-code` class. #' Modifies the `.remark-inline-code` class.
#' @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.
#' 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.
#' @param inverse_background_color Inverse Background Color. Defaults to #' @param inverse_background_color Inverse Background Color. Defaults to
#' `base_color`. Modifies the `.inverse` class.
#' `base_color`. Modifies the `.inverse` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--inverse-background-color)` in any argument of a style function or
#' in custom CSS.
#' @param inverse_text_color Inverse Text Color. Defaults to `white_color`. #' @param inverse_text_color Inverse Text Color. Defaults to `white_color`.
#' Modifies the `.inverse` class.
#' Modifies the `.inverse` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(--inverse-text-color)`
#' in any argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. #' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to `white_color`. #' @param inverse_header_color Inverse Header Color. Defaults to `white_color`.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_text_color Title Slide Text Color. Defaults to #' @param title_slide_text_color Title Slide Text Color. Defaults to
#' `inverse_text_color`. Modifies the `.title-slide` class.
#' `inverse_text_color`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--title-slide-text-color)` in any argument of a style function or in
#' custom CSS.
#' @param title_slide_background_color Title Slide Background Color. Defaults #' @param title_slide_background_color Title Slide Background Color. Defaults
#' to `inverse_background_color`. Modifies the `.title-slide` class.
#' to `inverse_background_color`. Modifies the `.title-slide` class. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' 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 `lighten_color(base_color, 0.8)`. Modifies the #' Defaults to `lighten_color(base_color, 0.8)`. Modifies the
#' `thead, tfoot, tr:nth-child(even)` elements. #' `thead, tfoot, tr:nth-child(even)` elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element.
#' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with
#' `var(--base-font-size)` in any argument of a style function or in custom
#' 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 `.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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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.
#' 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.
#' @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`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-color)` in any argument of a style function or in
#' custom CSS.
#' @param header_background_text_color Text Color for h1 Header with #' @param header_background_text_color Text Color for h1 Header with
#' Background. Defaults to `background_color`. Modifies the #' Background. Defaults to `background_color`. Modifies the
#' `.remark-slide-content h1` class.
#' `.remark-slide-content h1` class. The value of this variable is also
#' stored as a CSS variable that can be referenced with
#' `var(--header-background-text-color)` in any argument of a style function
#' 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.
#' @param header_background_content_padding_top Top Padding for Content in #' @param header_background_content_padding_top Top Padding for Content in
#' @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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element.
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(--text-font-family)` in any argument of a style
#' 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.
#' @param text_font_url Body Text Font URL(s). Defaults to #' @param text_font_url Body Text Font URL(s). Defaults to
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' element.
#' element. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--text-font-family-fallback)` in any argument
#' of a style function or in custom CSS.
#' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults #' @param text_font_base Body Text Base Font (Total Failure Fallback). Defaults
#' to sans-serif. Modifies the `body` element.
#' to sans-serif. Modifies the `body` element. The value of this variable is
#' also stored as a CSS variable that can be referenced with
#' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. #' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements.
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(--header-font-family)` in any argument of a
#' 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.
#' @param header_font_url Header Font URL. Defaults to #' @param header_font_url Header Font URL. Defaults to
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. #' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(--code-font-family)` in any argument of a style function or in custom
#' 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.
#' `.remark-inline` class. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(--code-font-size)` in any
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. #' Modifies the `@import url` elements.

+ 34
- 106
R/style_solarized_dark.R Zobrazit soubor

#' variable that can be referenced with `var(--text-bold-color)` in any #' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to #586e75. #' @param text_slide_number_color Slide Number Color. Defaults to #586e75.
#' Modifies the `.remark-slide-number` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' 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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' @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
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param background_size Background image size, requires `background_image` to #' @param background_size Background image size, requires `background_image` to
#' 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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' `NULL`. Modifies the `.remark-slide-content` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @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
#' `var(--code-highlight-color)` in any argument of a style function or in #' `var(--code-highlight-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to #6c71c4. Modifies #' @param code_inline_color Inline Code Color. Defaults to #6c71c4. Modifies
#' the `.remark-inline-code` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' the `.remark-inline-code` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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 #' Modifies the `.remark-inline-code` 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
#' variable that can be referenced with `var(--inverse-text-color)` in any #' variable that can be referenced with `var(--inverse-text-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #' @param inverse_header_color Inverse Header Color. Defaults to
#' `inverse_text_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3` #' `inverse_text_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3`
#' classes. The value of this variable is also stored as a CSS variable that #' classes. The value of this variable is also stored as a CSS variable that
#' referenced with `var(--title-slide-background-color)` in any argument of a #' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' Defaults to `NULL`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `.title-slide` class.
#' @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. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' @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. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `.footnote` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to 60px. Modifies the `.footnote` class.
#' @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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' #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
#' #93a1a1. Modifies the #' #93a1a1. Modifies the
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults #' @param blockquote_left_border_color Blockquote Left Border Color. Defaults
#' to #cb4b16. Modifies the `blockquote` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with `var(NA)` in
#' any argument of a style function or in custom CSS.
#' to #cb4b16. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #657b83. #' @param table_border_color Table top/bottom border. Defaults to #657b83.
#' Modifies the `table: border-top, border-bottom` elements. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #' @param table_row_border_color Table row inner bottom border. Defaults to
#' #657b83. Modifies the `table thead th: border-bottom` elements. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' #657b83. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. #' @param table_row_even_background_color Table Even Row Background Color.
#' Defaults to #073642. Modifies the `thead, tfoot, tr:nth-child(even)` #' Defaults to #073642. Modifies the `thead, tfoot, tr:nth-child(even)`
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element. The value of this variable #' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with #' is also stored as a CSS variable that can be referenced with
#' custom CSS. #' 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`. The value of this variable is also stored as
#' a CSS variable that can be referenced with `var(NA)` in any argument of a
#' style function or in custom CSS.
#' enable. Defaults to `FALSE`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class. The value of this variable is also #' `.remark-slide-content h1` class. The value of this variable is also
#' `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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param header_background_ignore_classes Slide Classes Where Header with #' @param header_background_ignore_classes Slide Classes Where Header with
#' Background will not be Applied. Defaults to #' Background will not be Applied. Defaults to
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 0.9em. Modifies the `.remark-slide-number` class.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' 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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The #' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be #' value of this variable is also stored as a CSS variable that can be
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `body` element.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url()` elements.
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' `var(--text-font-base)` in any argument of a style function or in custom #' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements. The value of this variable is also stored as a CSS variable that #' elements. The value of this variable is also stored as a CSS variable that
#' 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. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' `h1, h2, h3` elements.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of #' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with #' this variable is also stored as a CSS variable that can be referenced with
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo, #' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo,
#' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the #' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
#' `.remark-code, .remark-inline-code` classes. The value of this variable is
#' also stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' `.remark-code, .remark-inline-code` classes.
#' @template theme_params #' @template theme_params
#' @template style_solarized_dark #' @template style_solarized_dark
#' @family Solarized themes #' @family Solarized themes

+ 34
- 106
R/style_solarized_light.R Zobrazit soubor

#' variable that can be referenced with `var(--text-bold-color)` in any #' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to #93a1a1. #' @param text_slide_number_color Slide Number Color. Defaults to #93a1a1.
#' Modifies the `.remark-slide-number` class. The value of this variable is
#' also stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' 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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' @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
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param background_size Background image size, requires `background_image` to #' @param background_size Background image size, requires `background_image` to
#' 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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' `NULL`. Modifies the `.remark-slide-content` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @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
#' `var(--code-highlight-color)` in any argument of a style function or in #' `var(--code-highlight-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to #6c71c4. Modifies #' @param code_inline_color Inline Code Color. Defaults to #6c71c4. Modifies
#' the `.remark-inline-code` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' the `.remark-inline-code` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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 #' Modifies the `.remark-inline-code` 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
#' variable that can be referenced with `var(--inverse-text-color)` in any #' variable that can be referenced with `var(--inverse-text-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #' @param inverse_header_color Inverse Header Color. Defaults to
#' `inverse_text_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3` #' `inverse_text_color`. Modifies the `.inverse h1, .inverse h2, .inverse h3`
#' classes. The value of this variable is also stored as a CSS variable that #' classes. The value of this variable is also stored as a CSS variable that
#' referenced with `var(--title-slide-background-color)` in any argument of a #' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' Defaults to `NULL`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `.title-slide` class.
#' @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. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' @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. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `.footnote` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to 60px. Modifies the `.footnote` class.
#' @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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' #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
#' #586e75. Modifies the #' #586e75. Modifies the
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults #' @param blockquote_left_border_color Blockquote Left Border Color. Defaults
#' to #cb4b16. Modifies the `blockquote` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with `var(NA)` in
#' any argument of a style function or in custom CSS.
#' to #cb4b16. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #839496. #' @param table_border_color Table top/bottom border. Defaults to #839496.
#' Modifies the `table: border-top, border-bottom` elements. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #' @param table_row_border_color Table row inner bottom border. Defaults to
#' #839496. Modifies the `table thead th: border-bottom` elements. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' #839496. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. #' @param table_row_even_background_color Table Even Row Background Color.
#' Defaults to #eee8d5. Modifies the `thead, tfoot, tr:nth-child(even)` #' Defaults to #eee8d5. Modifies the `thead, tfoot, tr:nth-child(even)`
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element. The value of this variable #' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with #' is also stored as a CSS variable that can be referenced with
#' custom CSS. #' 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`. The value of this variable is also stored as
#' a CSS variable that can be referenced with `var(NA)` in any argument of a
#' style function or in custom CSS.
#' enable. Defaults to `FALSE`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class. The value of this variable is also #' `.remark-slide-content h1` class. The value of this variable is also
#' `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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param header_background_ignore_classes Slide Classes Where Header with #' @param header_background_ignore_classes Slide Classes Where Header with
#' Background will not be Applied. Defaults to #' Background will not be Applied. Defaults to
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 0.9em. Modifies the `.remark-slide-number` class.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' 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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The #' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be #' value of this variable is also stored as a CSS variable that can be
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `body` element.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url()` elements.
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' `var(--text-font-base)` in any argument of a style function or in custom #' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements. The value of this variable is also stored as a CSS variable that #' elements. The value of this variable is also stored as a CSS variable that
#' 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. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' `h1, h2, h3` elements.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of #' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with #' this variable is also stored as a CSS variable that can be referenced with
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo, #' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo,
#' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the #' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
#' `.remark-code, .remark-inline-code` classes. The value of this variable is
#' also stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' `.remark-code, .remark-inline-code` classes.
#' @template theme_params #' @template theme_params
#' @template style_solarized_light #' @template style_solarized_light
#' @family Solarized themes #' @family Solarized themes

+ 34
- 106
R/style_xaringan.R Zobrazit soubor

#' variable that can be referenced with `var(--text-bold-color)` in any #' variable that can be referenced with `var(--text-bold-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param text_slide_number_color Slide Number Color. Defaults to #' @param text_slide_number_color Slide Number Color. Defaults to
#' `inverse_background_color`. Modifies the `.remark-slide-number` class. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' `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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' to 16px 64px 16px 64px. Modifies the `.remark-slide-content` class.
#' @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
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param background_size Background image size, requires `background_image` to #' @param background_size Background image size, requires `background_image` to
#' 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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' `NULL`. Modifies the `.remark-slide-content` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @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
#' referenced with `var(--code-highlight-color)` in any argument of a style #' referenced with `var(--code-highlight-color)` in any argument of a style
#' function or in custom CSS. #' function or in custom CSS.
#' @param code_inline_color Inline Code Color. Defaults to #000. Modifies the #' @param code_inline_color Inline Code Color. Defaults to #000. Modifies the
#' `.remark-inline-code` class. The value of this variable is also stored as
#' a CSS variable that can be referenced with `var(NA)` in any argument of a
#' style function or in custom CSS.
#' `.remark-inline-code` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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 #' Modifies the `.remark-inline-code` 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
#' variable that can be referenced with `var(--inverse-text-color)` in any #' variable that can be referenced with `var(--inverse-text-color)` in any
#' argument of a style function or in custom CSS. #' argument of a style function or in custom CSS.
#' @param inverse_text_shadow Enables Shadow on text of inverse slides. #' @param inverse_text_shadow Enables Shadow on text of inverse slides.
#' Defaults to `FALSE`. Modifies the `.inverse` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `FALSE`. Modifies the `.inverse` class.
#' @param inverse_header_color Inverse Header Color. Defaults to #f3f3f3. #' @param inverse_header_color Inverse Header Color. Defaults to #f3f3f3.
#' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of #' Modifies the `.inverse h1, .inverse h2, .inverse h3` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with #' this variable is also stored as a CSS variable that can be referenced with
#' referenced with `var(--title-slide-background-color)` in any argument of a #' referenced with `var(--title-slide-background-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param title_slide_background_image Title Slide Background Image URL. #' @param title_slide_background_image Title Slide Background Image URL.
#' Defaults to `NULL`. Modifies the `.title-slide` class. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `.title-slide` class.
#' @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. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' Position. Defaults to `NULL`. Modifies the `.title-slide` class.
#' @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. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `.footnote` class.
#' @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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to 60px. Modifies the `.footnote` class.
#' @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. The value
#' of this variable is also stored as a CSS variable that can be referenced
#' with `var(NA)` in any argument of a style function or in custom CSS.
#' #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
#' #000. Modifies the #' #000. Modifies the
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults #' @param blockquote_left_border_color Blockquote Left Border Color. Defaults
#' to lightgray. Modifies the `blockquote` element. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' to lightgray. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. #' @param table_border_color Table top/bottom border. Defaults to #666.
#' Modifies the `table: border-top, border-bottom` elements. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #' @param table_row_border_color Table row inner bottom border. Defaults to
#' #ddd. Modifies the `table thead th: border-bottom` elements. The value of
#' this variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. #' @param table_row_even_background_color Table Even Row Background Color.
#' Defaults to #eee. Modifies the `thead, tfoot, tr:nth-child(even)` #' Defaults to #eee. Modifies the `thead, tfoot, tr:nth-child(even)`
#' elements. The value of this variable is also stored as a CSS variable that
#' can be referenced with `var(NA)` in any argument of a style function or in
#' custom CSS.
#' elements.
#' @param base_font_size Base Font Size for All Slide Elements (must be `px`). #' @param base_font_size Base Font Size for All Slide Elements (must be `px`).
#' Defaults to 20px. Modifies the `html` element. The value of this variable #' Defaults to 20px. Modifies the `html` element. The value of this variable
#' is also stored as a CSS variable that can be referenced with #' is also stored as a CSS variable that can be referenced with
#' custom CSS. #' 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`. The value of this variable is also stored as
#' a CSS variable that can be referenced with `var(NA)` in any argument of a
#' style function or in custom CSS.
#' enable. Defaults to `FALSE`.
#' @param header_background_color Background Color for h1 Header with #' @param header_background_color Background Color for h1 Header with
#' Background. Defaults to `header_color`. Modifies the #' Background. Defaults to `header_color`. Modifies the
#' `.remark-slide-content h1` class. The value of this variable is also #' `.remark-slide-content h1` class. The value of this variable is also
#' `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. The
#' value of this variable is also stored as a CSS variable that can be
#' referenced with `var(NA)` in any argument of a style function or in custom
#' CSS.
#' Defaults to `NULL`. Modifies the `.remark-slide-content h1` class.
#' @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. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.remark-slide-content` class.
#' @param header_background_ignore_classes Slide Classes Where Header with #' @param header_background_ignore_classes Slide Classes Where Header with
#' Background will not be Applied. Defaults to #' Background will not be Applied. Defaults to
#' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the #' `c('normal', 'inverse', 'title', 'middle', 'bottom')`. Modifies the
#' `.remark-slide-content` class. The value of this variable is also stored
#' as a CSS variable that can be referenced with `var(NA)` in any argument of
#' a style function or in custom CSS.
#' `.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. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' 0.9em. Modifies the `.remark-slide-number` class.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' 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
#' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The #' `'Droid Serif'`). Defaults to Noto Sans. Modifies the `body` element. The
#' value of this variable is also stored as a CSS variable that can be #' value of this variable is also stored as a CSS variable that can be
#' 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 value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' the `body` element.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url()` elements.
#' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to #' @param text_font_family_fallback Body Text Font Fallbacks. Defaults to
#' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, #' -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
#' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body` #' helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the `body`
#' `var(--text-font-base)` in any argument of a style function or in custom #' `var(--text-font-base)` in any argument of a style function or in custom
#' CSS. #' CSS.
#' @param header_font_google Use `google_font()` to specify header font. #' @param header_font_google Use `google_font()` to specify header font.
#' Defaults to `NULL`. Modifies the `body` element. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(NA)` in any argument of a style function or in custom CSS.
#' Defaults to `NULL`. Modifies the `body` element.
#' @param header_font_family Header Font Family (xaringan default is #' @param header_font_family Header Font Family (xaringan default is
#' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3` #' `'Yanone Kaffeesatz'`). Defaults to Cabin. Modifies the `h1, h2, h3`
#' elements. The value of this variable is also stored as a CSS variable that #' elements. The value of this variable is also stored as a CSS variable that
#' 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. The value of this variable is also stored as a CSS
#' variable that can be referenced with `var(NA)` in any argument of a style
#' function or in custom CSS.
#' `h1, h2, h3` elements.
#' @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. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_google Use `google_font()` to specify code font. Defaults #' @param code_font_google Use `google_font()` to specify code font. Defaults
#' to `NULL`. Modifies the `body` element. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' to `NULL`. Modifies the `body` element.
#' @param code_font_family Code Font Family. Defaults to Source Code Pro. #' @param code_font_family Code Font Family. Defaults to Source Code Pro.
#' Modifies the `.remark-code, .remark-inline-code` classes. The value of #' Modifies the `.remark-code, .remark-inline-code` classes. The value of
#' this variable is also stored as a CSS variable that can be referenced with #' this variable is also stored as a CSS variable that can be referenced with
#' 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
#' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. #' https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
#' Modifies the `@import url` elements. The value of this variable is also
#' stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' Modifies the `@import url` elements.
#' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo, #' @param code_font_family_fallback Code Font Fallback. Defaults to Menlo,
#' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the #' Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
#' `.remark-code, .remark-inline-code` classes. The value of this variable is
#' also stored as a CSS variable that can be referenced with `var(NA)` in any
#' argument of a style function or in custom CSS.
#' `.remark-code, .remark-inline-code` classes.
#' @template theme_params #' @template theme_params
#' @template style_xaringan #' @template style_xaringan
#' @export #' @export

+ 9
- 5
R/utils_theme-gen.R Zobrazit soubor

} }


describe_css_variable <- function(css_variable = NULL) { describe_css_variable <- function(css_variable = NULL) {
if (is.null(css_variable) || is.na(css_variable)) return("")
glue::glue(
" The value of this variable is also stored as a CSS variable that can be ",
"referenced with `var({css_variable})` in any argument of a style ",
"function or in custom CSS."
if (is.null(css_variable)) return("")
ifelse(
is.na(css_variable),
"",
glue::glue(
" The value of this variable is also stored as a CSS variable that can be ",
"referenced with `var({css_variable})` in any argument of a style ",
"function or in custom CSS."
)
) )
} }



+ 91
- 25
man/style_duo.Rd Zobrazit soubor



\item{text_color}{Text Color. Defaults to \item{text_color}{Text Color. Defaults to
\code{choose_dark_or_light(primary_color, darken_color(primary_color, 0.9), lighten_color(secondary_color, 0.99))}. \code{choose_dark_or_light(primary_color, darken_color(primary_color, 0.9), lighten_color(secondary_color, 0.99))}.
Modifies the \code{body} element.}
Modifies the \code{body} element. The value of this variable is also stored as
a CSS variable that can be referenced with \code{var(--text_color)} in any
argument of a style function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{secondary_color}. Modifies \item{header_color}{Header Color. Defaults to \code{secondary_color}. Modifies
the \verb{h1, h2, h3} elements.}
the \verb{h1, h2, h3} elements. The value of this variable is also stored as a
CSS variable that can be referenced with \code{var(--header-color)} in any
argument of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{primary_color}. \item{background_color}{Slide Background Color. Defaults to \code{primary_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \code{secondary_color}. Modifies the \item{link_color}{Link Color. Defaults to \code{secondary_color}. Modifies the
\verb{a, a > code} elements.}
\verb{a, a > code} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--link-color)} in any argument
of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \code{secondary_color}. \item{text_bold_color}{Bold Text Color. Defaults to \code{secondary_color}.
Modifies the \code{strong} element.}
Modifies the \code{strong} element. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--text-bold-color)} in
any argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \code{text_color}. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{text_color}.
Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \code{secondary_color}. \item{code_inline_color}{Inline Code Color. Defaults to \code{secondary_color}.
Modifies the \code{.remark-inline-code} class.} Modifies the \code{.remark-inline-code} 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.}
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.}


\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.}
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \code{primary_color}. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{primary_color}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \item{inverse_header_color}{Inverse Header Color. Defaults to
\code{primary_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} \code{primary_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3}
classes.}
classes. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--inverse-header-color)} in any argument of a
style function or in custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{secondary_color}. Modifies the \code{.title-slide} class.}
\code{secondary_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-text-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{primary_color}. Modifies the \code{.title-slide} class.}
to \code{primary_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-background-color)} in any argument of a style function
or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 91
- 25
man/style_duo_accent.Rd Zobrazit soubor

CSS rules.} CSS rules.}


\item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{primary_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{primary_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{white_color}. \item{background_color}{Slide Background Color. Defaults to \code{white_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \item{link_color}{Link Color. Defaults to
\code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}. \code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}.
Modifies the \verb{a, a > code} elements.}
Modifies the \verb{a, a > code} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(--link-color)}
in any argument of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \item{text_bold_color}{Bold Text Color. Defaults to
\code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}. \code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}.
Modifies the \code{strong} element.}
Modifies the \code{strong} element. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--text-bold-color)} in
any argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \item{text_slide_number_color}{Slide Number Color. Defaults to
\code{primary_color}. Modifies the \code{.remark-slide-number} class.} \code{primary_color}. Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \item{code_inline_color}{Inline Code Color. Defaults to
\code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}. \code{choose_dark_or_light(secondary_color, primary_color, secondary_color)}.
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.}
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.}


\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.}
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \item{inverse_text_color}{Inverse Text Color. Defaults to
\code{choose_dark_or_light(secondary_color, black_color, white_color)}. \code{choose_dark_or_light(secondary_color, black_color, white_color)}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \item{inverse_header_color}{Inverse Header Color. Defaults to
\code{choose_dark_or_light(secondary_color, black_color, white_color)}. \code{choose_dark_or_light(secondary_color, black_color, white_color)}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{choose_dark_or_light(primary_color, black_color, white_color)}. Modifies \code{choose_dark_or_light(primary_color, black_color, white_color)}. Modifies
the \code{.title-slide} class.}
the \code{.title-slide} class. The value of this variable is also stored as a
CSS variable that can be referenced with \code{var(--title-slide-text-color)}
in any argument of a style function or in custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{primary_color}. Modifies the \code{.title-slide} class.}
to \code{primary_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-background-color)} in any argument of a style function
or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 91
- 25
man/style_duo_accent_inverse.Rd Zobrazit soubor

CSS rules.} CSS rules.}


\item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{primary_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{primary_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{black_color}. \item{background_color}{Slide Background Color. Defaults to \code{black_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \item{link_color}{Link Color. Defaults to
\code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}. \code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}.
Modifies the \verb{a, a > code} elements.}
Modifies the \verb{a, a > code} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(--link-color)}
in any argument of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \item{text_bold_color}{Bold Text Color. Defaults to
\code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}. \code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}.
Modifies the \code{strong} element.}
Modifies the \code{strong} element. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--text-bold-color)} in
any argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \item{text_slide_number_color}{Slide Number Color. Defaults to
\code{primary_color}. Modifies the \code{.remark-slide-number} class.} \code{primary_color}. Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \item{code_inline_color}{Inline Code Color. Defaults to
\code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}. \code{choose_dark_or_light(secondary_color, secondary_color, primary_color)}.
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.}
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.}


\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.}
\code{secondary_color}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \item{inverse_text_color}{Inverse Text Color. Defaults to
\code{choose_dark_or_light(secondary_color, black_color, white_color)}. \code{choose_dark_or_light(secondary_color, black_color, white_color)}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \item{inverse_header_color}{Inverse Header Color. Defaults to
\code{choose_dark_or_light(secondary_color, black_color, white_color)}. \code{choose_dark_or_light(secondary_color, black_color, white_color)}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{choose_dark_or_light(primary_color, black_color, white_color)}. Modifies \code{choose_dark_or_light(primary_color, black_color, white_color)}. Modifies
the \code{.title-slide} class.}
the \code{.title-slide} class. The value of this variable is also stored as a
CSS variable that can be referenced with \code{var(--title-slide-text-color)}
in any argument of a style function or in custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{primary_color}. Modifies the \code{.title-slide} class.}
to \code{primary_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-background-color)} in any argument of a style function
or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
Modifies the \verb{thead, tfoot, tr:nth-child(even)} elements.} Modifies the \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 92
- 25
man/style_mono_accent.Rd Zobrazit soubor

CSS rules.} CSS rules.}


\item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{white_color}. \item{background_color}{Slide Background Color. Defaults to \code{white_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the \item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the
\verb{a, a > code} elements.}
\verb{a, a > code} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--link-color)} in any argument
of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies \item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies
the \code{strong} element.}
the \code{strong} element. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-bold-color)} in any
argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}.
Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}. \item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}.
Modifies the \code{.remark-inline-code} class.} Modifies the \code{.remark-inline-code} 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.}
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.}


\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.}
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \code{white_color}. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{white_color}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \code{white_color}. \item{inverse_header_color}{Inverse Header Color. Defaults to \code{white_color}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{inverse_text_color}. Modifies the \code{.title-slide} class.}
\code{inverse_text_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-text-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{inverse_background_color}. Modifies the \code{.title-slide} class.}
to \code{inverse_background_color}. Modifies the \code{.title-slide} class. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--title-slide-background-color)} in any argument of a
style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 92
- 25
man/style_mono_accent_inverse.Rd Zobrazit soubor

multiple CSS rules.} multiple CSS rules.}


\item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{black_color}. \item{background_color}{Slide Background Color. Defaults to \code{black_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the \item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the
\verb{a, a > code} elements.}
\verb{a, a > code} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--link-color)} in any argument
of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies \item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies
the \code{strong} element.}
the \code{strong} element. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-bold-color)} in any
argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}.
Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}. \item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}.
Modifies the \code{.remark-inline-code} class.} Modifies the \code{.remark-inline-code} 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.}
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.}


\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.}
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \code{black_color}. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{black_color}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \code{black_color}. \item{inverse_header_color}{Inverse Header Color. Defaults to \code{black_color}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{inverse_text_color}. Modifies the \code{.title-slide} class.}
\code{inverse_text_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-text-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{inverse_background_color}. Modifies the \code{.title-slide} class.}
to \code{inverse_background_color}. Modifies the \code{.title-slide} class. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--title-slide-background-color)} in any argument of a
style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 92
- 25
man/style_mono_dark.Rd Zobrazit soubor

multiple CSS rules.} multiple CSS rules.}


\item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{white_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{black_color}. \item{background_color}{Slide Background Color. Defaults to \code{black_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the \item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the
\verb{a, a > code} elements.}
\verb{a, a > code} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--link-color)} in any argument
of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies \item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies
the \code{strong} element.}
the \code{strong} element. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-bold-color)} in any
argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}.
Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}. \item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}.
Modifies the \code{.remark-inline-code} class.} Modifies the \code{.remark-inline-code} 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.}
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.}


\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.}
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \code{black_color}. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{black_color}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \code{black_color}. \item{inverse_header_color}{Inverse Header Color. Defaults to \code{black_color}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{inverse_text_color}. Modifies the \code{.title-slide} class.}
\code{inverse_text_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-text-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{inverse_background_color}. Modifies the \code{.title-slide} class.}
to \code{inverse_background_color}. Modifies the \code{.title-slide} class. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--title-slide-background-color)} in any argument of a
style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 92
- 25
man/style_mono_light.Rd Zobrazit soubor

multiple CSS rules.} multiple CSS rules.}


\item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body} \item{text_color}{Text Color. Defaults to \code{black_color}. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text_color)} in any argument of a style
function or in custom CSS.}


\item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the \item{header_color}{Header Color. Defaults to \code{base_color}. Modifies the
\verb{h1, h2, h3} elements.}
\verb{h1, h2, h3} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--header-color)} in any argument
of a style function or in custom CSS.}


\item{background_color}{Slide Background Color. Defaults to \code{white_color}. \item{background_color}{Slide Background Color. Defaults to \code{white_color}.
Modifies the \code{.remark-slide-content} class.}
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(--background-color)} in any argument of a style function or in custom
CSS.}


\item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the \item{link_color}{Link Color. Defaults to \code{base_color}. Modifies the
\verb{a, a > code} elements.}
\verb{a, a > code} elements. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--link-color)} in any argument
of a style function or in custom CSS.}


\item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies \item{text_bold_color}{Bold Text Color. Defaults to \code{base_color}. Modifies
the \code{strong} element.}
the \code{strong} element. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--text-bold-color)} in any
argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}. \item{text_slide_number_color}{Slide Number Color. Defaults to \code{base_color}.
Modifies the \code{.remark-slide-number} class.} Modifies the \code{.remark-slide-number} class.}
\code{.remark-slide-content} class.} \code{.remark-slide-content} class.}


\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.
The value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--code-highlight-color)} in any argument of a style
function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}. \item{code_inline_color}{Inline Code Color. Defaults to \code{base_color}.
Modifies the \code{.remark-inline-code} class.} Modifies the \code{.remark-inline-code} 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.}
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.}


\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.}
\code{base_color}. Modifies the \code{.inverse} class. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--inverse-background-color)} in any argument of a style function or
in custom CSS.}


\item{inverse_text_color}{Inverse Text Color. Defaults to \code{white_color}. \item{inverse_text_color}{Inverse Text Color. Defaults to \code{white_color}.
Modifies the \code{.inverse} class.}
Modifies the \code{.inverse} class. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(--inverse-text-color)}
in any argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.} Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \code{white_color}. \item{inverse_header_color}{Inverse Header Color. Defaults to \code{white_color}.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes.}
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_text_color}{Title Slide Text Color. Defaults to \item{title_slide_text_color}{Title Slide Text Color. Defaults to
\code{inverse_text_color}. Modifies the \code{.title-slide} class.}
\code{inverse_text_color}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--title-slide-text-color)} in any argument of a style function or in
custom CSS.}


\item{title_slide_background_color}{Title Slide Background Color. Defaults \item{title_slide_background_color}{Title Slide Background Color. Defaults
to \code{inverse_background_color}. Modifies the \code{.title-slide} class.}
to \code{inverse_background_color}. Modifies the \code{.title-slide} class. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--title-slide-background-color)} in any argument of a
style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.} Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}
\verb{thead, tfoot, tr:nth-child(even)} elements.} \verb{thead, tfoot, tr:nth-child(even)} elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element.}
Defaults to 20px. Modifies the \code{html} element. The value of this variable
is also stored as a CSS variable that can be referenced with
\code{var(--base-font-size)} in any argument of a style function or in custom
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 \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.}


\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.}
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.}


\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.}
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.}


\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.}
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.}


\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


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-color)} in any argument of a style function or in
custom CSS.}


\item{header_background_text_color}{Text Color for h1 Header with \item{header_background_text_color}{Text Color for h1 Header with
Background. Defaults to \code{background_color}. Modifies the Background. Defaults to \code{background_color}. Modifies the
\verb{.remark-slide-content h1} class.}
\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-background-text-color)} in any argument of a style function
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element.}
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(--text-font-family)} in any argument of a style
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.}
\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body} helvetica, Ubuntu, roboto, noto, segoe ui, arial. Modifies the \code{body}
element.}
element. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--text-font-family-fallback)} in any argument
of a style function or in custom CSS.}


\item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults \item{text_font_base}{Body Text Base Font (Total Failure Fallback). Defaults
to sans-serif. Modifies the \code{body} element.}
to sans-serif. Modifies the \code{body} element. The value of this variable is
also stored as a CSS variable that can be referenced with
\code{var(--text-font-base)} in any argument of a style function or in custom
CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element.} Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
elements.}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(--header-font-family)} in any argument of a
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.}
to \code{NULL}. Modifies the \code{body} element.} to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes.}
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(--code-font-family)} in any argument of a style function or in custom
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.}
\code{.remark-inline} class. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(--code-font-size)} in any
argument of a style function or in custom CSS.}


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.

+ 34
- 106
man/style_solarized_dark.Rd Zobrazit soubor

argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to #586e75. \item{text_slide_number_color}{Slide Number Color. Defaults to #586e75.
Modifies the \code{.remark-slide-number} class. The value of this variable is
also stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}


\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
from the title slide. Defaults to \code{NULL}. Modifies the from the title slide. Defaults to \code{NULL}. 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(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{background_size}{Background image size, requires \code{background_image} to \item{background_size}{Background image size, requires \code{background_image} to
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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
\code{NULL}. Modifies the \code{.remark-slide-content} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\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
custom CSS.} custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to #6c71c4. Modifies \item{code_inline_color}{Inline Code Color. Defaults to #6c71c4. 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(NA)} in any argument of
a style function or in custom CSS.}
the \code{.remark-inline-code} class.}


\item{code_inline_background_color}{Inline Code Background Color. Defaults \item{code_inline_background_color}{Inline Code Background Color. Defaults
to \code{NULL}. 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(NA)} in any argument of a style function or in custom CSS.}
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 Modifies the \code{.remark-inline-code} class. The value of this variable is
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \item{inverse_header_color}{Inverse Header Color. Defaults to
\code{inverse_text_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} \code{inverse_text_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3}
style function or in custom CSS.} style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \code{.title-slide} class.}


\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. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{.footnote} class.}


\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to 60px. Modifies the \code{.footnote} class.}


\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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
#586e75. Modifies the \verb{.left-column h2, .left-column h3} classes.}


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \item{left_column_selected_color}{Left Column Current Selection. Defaults to
#93a1a1. Modifies the #93a1a1. Modifies the
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults \item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults
to #cb4b16. Modifies the \code{blockquote} element. The value of this variable
is also stored as a CSS variable that can be referenced with \code{var(NA)} in
any argument of a style function or in custom CSS.}
to #cb4b16. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #657b83. \item{table_border_color}{Table top/bottom border. Defaults to #657b83.
Modifies the \verb{table: border-top, border-bottom} elements. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Modifies the \verb{table: border-top, border-bottom} elements.}


\item{table_row_border_color}{Table row inner bottom border. Defaults to \item{table_row_border_color}{Table row inner bottom border. Defaults to
#657b83. Modifies the \verb{table thead th: border-bottom} elements. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
#657b83. Modifies the \verb{table thead th: border-bottom} elements.}


\item{table_row_even_background_color}{Table Even Row Background Color. \item{table_row_even_background_color}{Table Even Row Background Color.
Defaults to #073642. Modifies the \verb{thead, tfoot, tr:nth-child(even)} Defaults to #073642. Modifies the \verb{thead, tfoot, tr:nth-child(even)}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element. The value of this variable Defaults to 20px. Modifies the \code{html} element. The value of this variable


\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
enable. Defaults to \code{FALSE}. The value of this variable is also stored as
a CSS variable that can be referenced with \code{var(NA)} in any argument of a
style function or in custom CSS.}
enable. Defaults to \code{FALSE}.}


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{header_background_ignore_classes}{Slide Classes Where Header with \item{header_background_ignore_classes}{Slide Classes Where Header with
Background will not be Applied. Defaults to Background will not be Applied. Defaults to
\code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. Modifies the \code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. 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(NA)} in any argument of
a style function or in custom CSS.}
\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
0.9em. Modifies the \code{.remark-slide-number} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The \code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{body} element.}


\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.
Modifies the \verb{@import url()} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url()} elements.}


\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
CSS.} CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
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. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
\verb{h1, h2, h3} elements.}


\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.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_google}{Use \code{google_font()} to specify code font. Defaults \item{code_font_google}{Use \code{google_font()} to specify code font. Defaults
to \code{NULL}. Modifies the \code{body} element. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo, \item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo,
Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
\verb{.remark-code, .remark-inline-code} classes. The value of this variable is
also stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
\verb{.remark-code, .remark-inline-code} classes.}


\item{colors}{A named vector of custom colors. The names of the colors \item{colors}{A named vector of custom colors. The names of the colors
become CSS variables and classes that can be used within your slides. become CSS variables and classes that can be used within your slides.

+ 34
- 106
man/style_solarized_light.Rd Zobrazit soubor

argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to #93a1a1. \item{text_slide_number_color}{Slide Number Color. Defaults to #93a1a1.
Modifies the \code{.remark-slide-number} class. The value of this variable is
also stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}


\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
from the title slide. Defaults to \code{NULL}. Modifies the from the title slide. Defaults to \code{NULL}. 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(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{background_size}{Background image size, requires \code{background_image} to \item{background_size}{Background image size, requires \code{background_image} to
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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
\code{NULL}. Modifies the \code{.remark-slide-content} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\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
custom CSS.} custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to #6c71c4. Modifies \item{code_inline_color}{Inline Code Color. Defaults to #6c71c4. 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(NA)} in any argument of
a style function or in custom CSS.}
the \code{.remark-inline-code} class.}


\item{code_inline_background_color}{Inline Code Background Color. Defaults \item{code_inline_background_color}{Inline Code Background Color. Defaults
to \code{NULL}. 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(NA)} in any argument of a style function or in custom CSS.}
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 Modifies the \code{.remark-inline-code} class. The value of this variable is
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to \item{inverse_header_color}{Inverse Header Color. Defaults to
\code{inverse_text_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} \code{inverse_text_color}. Modifies the \verb{.inverse h1, .inverse h2, .inverse h3}
style function or in custom CSS.} style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \code{.title-slide} class.}


\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. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{.footnote} class.}


\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to 60px. Modifies the \code{.footnote} class.}


\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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
#93a1a1. Modifies the \verb{.left-column h2, .left-column h3} classes.}


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \item{left_column_selected_color}{Left Column Current Selection. Defaults to
#586e75. Modifies the #586e75. Modifies the
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults \item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults
to #cb4b16. Modifies the \code{blockquote} element. The value of this variable
is also stored as a CSS variable that can be referenced with \code{var(NA)} in
any argument of a style function or in custom CSS.}
to #cb4b16. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #839496. \item{table_border_color}{Table top/bottom border. Defaults to #839496.
Modifies the \verb{table: border-top, border-bottom} elements. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Modifies the \verb{table: border-top, border-bottom} elements.}


\item{table_row_border_color}{Table row inner bottom border. Defaults to \item{table_row_border_color}{Table row inner bottom border. Defaults to
#839496. Modifies the \verb{table thead th: border-bottom} elements. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
#839496. Modifies the \verb{table thead th: border-bottom} elements.}


\item{table_row_even_background_color}{Table Even Row Background Color. \item{table_row_even_background_color}{Table Even Row Background Color.
Defaults to #eee8d5. Modifies the \verb{thead, tfoot, tr:nth-child(even)} Defaults to #eee8d5. Modifies the \verb{thead, tfoot, tr:nth-child(even)}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element. The value of this variable Defaults to 20px. Modifies the \code{html} element. The value of this variable


\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
enable. Defaults to \code{FALSE}. The value of this variable is also stored as
a CSS variable that can be referenced with \code{var(NA)} in any argument of a
style function or in custom CSS.}
enable. Defaults to \code{FALSE}.}


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{header_background_ignore_classes}{Slide Classes Where Header with \item{header_background_ignore_classes}{Slide Classes Where Header with
Background will not be Applied. Defaults to Background will not be Applied. Defaults to
\code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. Modifies the \code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. 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(NA)} in any argument of
a style function or in custom CSS.}
\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
0.9em. Modifies the \code{.remark-slide-number} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The \code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{body} element.}


\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.
Modifies the \verb{@import url()} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url()} elements.}


\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
CSS.} CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
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. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
\verb{h1, h2, h3} elements.}


\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.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_google}{Use \code{google_font()} to specify code font. Defaults \item{code_font_google}{Use \code{google_font()} to specify code font. Defaults
to \code{NULL}. Modifies the \code{body} element. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo, \item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo,
Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
\verb{.remark-code, .remark-inline-code} classes. The value of this variable is
also stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
\verb{.remark-code, .remark-inline-code} classes.}


\item{colors}{A named vector of custom colors. The names of the colors \item{colors}{A named vector of custom colors. The names of the colors
become CSS variables and classes that can be used within your slides. become CSS variables and classes that can be used within your slides.

+ 34
- 106
man/style_xaringan.Rd Zobrazit soubor

argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{text_slide_number_color}{Slide Number Color. Defaults to \item{text_slide_number_color}{Slide Number Color. Defaults to
\code{inverse_background_color}. Modifies the \code{.remark-slide-number} class. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
\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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
to 16px 64px 16px 64px. Modifies the \code{.remark-slide-content} class.}


\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
from the title slide. Defaults to \code{NULL}. Modifies the from the title slide. Defaults to \code{NULL}. 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(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{background_size}{Background image size, requires \code{background_image} to \item{background_size}{Background image size, requires \code{background_image} to
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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
\code{NULL}. Modifies the \code{.remark-slide-content} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\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.
function or in custom CSS.} function or in custom CSS.}


\item{code_inline_color}{Inline Code Color. Defaults to #000. Modifies the \item{code_inline_color}{Inline Code Color. Defaults to #000. 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(NA)} in any argument of a
style function or in custom CSS.}
\code{.remark-inline-code} class.}


\item{code_inline_background_color}{Inline Code Background Color. Defaults \item{code_inline_background_color}{Inline Code Background Color. Defaults
to \code{NULL}. 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(NA)} in any argument of a style function or in custom CSS.}
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 Modifies the \code{.remark-inline-code} class. The value of this variable is
argument of a style function or in custom CSS.} argument of a style function or in custom CSS.}


\item{inverse_text_shadow}{Enables Shadow on text of inverse slides. \item{inverse_text_shadow}{Enables Shadow on text of inverse slides.
Defaults to \code{FALSE}. Modifies the \code{.inverse} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{FALSE}. Modifies the \code{.inverse} class.}


\item{inverse_header_color}{Inverse Header Color. Defaults to #f3f3f3. \item{inverse_header_color}{Inverse Header Color. Defaults to #f3f3f3.
Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of Modifies the \verb{.inverse h1, .inverse h2, .inverse h3} classes. The value of
style function or in custom CSS.} style function or in custom CSS.}


\item{title_slide_background_image}{Title Slide Background Image URL. \item{title_slide_background_image}{Title Slide Background Image URL.
Defaults to \code{NULL}. Modifies the \code{.title-slide} class. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \code{.title-slide} class.}


\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. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
Position. Defaults to \code{NULL}. Modifies the \code{.title-slide} class.}


\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. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{.footnote} class.}


\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to 60px. Modifies the \code{.footnote} class.}


\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. The value
of this variable is also stored as a CSS variable that can be referenced
with \code{var(NA)} in any argument of a style function or in custom CSS.}
#777. Modifies the \verb{.left-column h2, .left-column h3} classes.}


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \item{left_column_selected_color}{Left Column Current Selection. Defaults to
#000. Modifies the #000. Modifies the
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
\verb{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults \item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults
to lightgray. Modifies the \code{blockquote} element. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
to lightgray. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. \item{table_border_color}{Table top/bottom border. Defaults to #666.
Modifies the \verb{table: border-top, border-bottom} elements. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Modifies the \verb{table: border-top, border-bottom} elements.}


\item{table_row_border_color}{Table row inner bottom border. Defaults to \item{table_row_border_color}{Table row inner bottom border. Defaults to
#ddd. Modifies the \verb{table thead th: border-bottom} elements. The value of
this variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
#ddd. Modifies the \verb{table thead th: border-bottom} elements.}


\item{table_row_even_background_color}{Table Even Row Background Color. \item{table_row_even_background_color}{Table Even Row Background Color.
Defaults to #eee. Modifies the \verb{thead, tfoot, tr:nth-child(even)} Defaults to #eee. Modifies the \verb{thead, tfoot, tr:nth-child(even)}
elements. The value of this variable is also stored as a CSS variable that
can be referenced with \code{var(NA)} in any argument of a style function or in
custom CSS.}
elements.}


\item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}). \item{base_font_size}{Base Font Size for All Slide Elements (must be \code{px}).
Defaults to 20px. Modifies the \code{html} element. The value of this variable Defaults to 20px. Modifies the \code{html} element. The value of this variable


\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
enable. Defaults to \code{FALSE}. The value of this variable is also stored as
a CSS variable that can be referenced with \code{var(NA)} in any argument of a
style function or in custom CSS.}
enable. Defaults to \code{FALSE}.}


\item{header_background_color}{Background Color for h1 Header with \item{header_background_color}{Background Color for h1 Header with
Background. Defaults to \code{header_color}. Modifies the Background. Defaults to \code{header_color}. Modifies the
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. The
value of this variable is also stored as a CSS variable that can be
referenced with \code{var(NA)} in any argument of a style function or in custom
CSS.}
Defaults to \code{NULL}. Modifies the \verb{.remark-slide-content h1} class.}


\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. The value of this variable is also stored
as a CSS variable that can be referenced with \code{var(NA)} in any argument of
a style function or in custom CSS.}
\code{.remark-slide-content} class.}


\item{header_background_ignore_classes}{Slide Classes Where Header with \item{header_background_ignore_classes}{Slide Classes Where Header with
Background will not be Applied. Defaults to Background will not be Applied. Defaults to
\code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. Modifies the \code{c('normal', 'inverse', 'title', 'middle', 'bottom')}. 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(NA)} in any argument of
a style function or in custom CSS.}
\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. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
0.9em. Modifies the \code{.remark-slide-number} class.}


\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. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{text_font_family}{Body Text Font Family (xaringan default is \item{text_font_family}{Body Text Font Family (xaringan default is
\code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The \code{'Droid Serif'}). Defaults to Noto Sans. Modifies the \code{body} element. The
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 value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
the \code{body} element.}


\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.
Modifies the \verb{@import url()} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url()} elements.}


\item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to \item{text_font_family_fallback}{Body Text Font Fallbacks. Defaults to
-apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue,
CSS.} CSS.}


\item{header_font_google}{Use \code{google_font()} to specify header font. \item{header_font_google}{Use \code{google_font()} to specify header font.
Defaults to \code{NULL}. Modifies the \code{body} element. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(NA)} in any argument of a style function or in custom CSS.}
Defaults to \code{NULL}. Modifies the \code{body} element.}


\item{header_font_family}{Header Font Family (xaringan default is \item{header_font_family}{Header Font Family (xaringan default is
\code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3} \code{'Yanone Kaffeesatz'}). Defaults to Cabin. Modifies the \verb{h1, h2, h3}
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. The value of this variable is also stored as a CSS
variable that can be referenced with \code{var(NA)} in any argument of a style
function or in custom CSS.}
\verb{h1, h2, h3} elements.}


\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.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_google}{Use \code{google_font()} to specify code font. Defaults \item{code_font_google}{Use \code{google_font()} to specify code font. Defaults
to \code{NULL}. Modifies the \code{body} element. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
to \code{NULL}. Modifies the \code{body} element.}


\item{code_font_family}{Code Font Family. Defaults to Source Code Pro. \item{code_font_family}{Code Font Family. Defaults to Source Code Pro.
Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of Modifies the \verb{.remark-code, .remark-inline-code} classes. The value of


\item{code_font_url}{Code Font URL. Defaults to \item{code_font_url}{Code Font URL. Defaults to
https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap. https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap.
Modifies the \verb{@import url} elements. The value of this variable is also
stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
Modifies the \verb{@import url} elements.}


\item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo, \item{code_font_family_fallback}{Code Font Fallback. Defaults to Menlo,
Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the Consolas, Monaco, Liberation Mono, Lucida Console. Modifies the
\verb{.remark-code, .remark-inline-code} classes. The value of this variable is
also stored as a CSS variable that can be referenced with \code{var(NA)} in any
argument of a style function or in custom CSS.}
\verb{.remark-code, .remark-inline-code} classes.}


\item{colors}{A named vector of custom colors. The names of the colors \item{colors}{A named vector of custom colors. The names of the colors
become CSS variables and classes that can be used within your slides. become CSS variables and classes that can be used within your slides.

Načítá se…
Zrušit
Uložit