Переглянути джерело

BREAKING - blockquote_left_border_color replaces blockquote_left_color

tags/v0.1.1
Garrick Aden-Buie 8 роки тому
джерело
коміт
025a94c4a5
24 змінених файлів з 58 додано та 56 видалено
  1. +1
    -1
      .gitignore
  2. +2
    -2
      R/duo.R
  3. +2
    -2
      R/duo_accent.R
  4. +2
    -2
      R/duo_accent_inverse.R
  5. +2
    -2
      R/mono_accent.R
  6. +2
    -2
      R/mono_accent_inverse.R
  7. +2
    -2
      R/mono_dark.R
  8. +2
    -2
      R/mono_light.R
  9. +2
    -2
      R/solarized_dark.R
  10. +2
    -2
      R/solarized_light.R
  11. +11
    -11
      R/theme_settings.R
  12. +2
    -2
      R/write_theme.R
  13. +1
    -1
      inst/resources/template.css
  14. +2
    -2
      man/duo.Rd
  15. +2
    -2
      man/duo_accent.Rd
  16. +2
    -2
      man/duo_accent_inverse.Rd
  17. +2
    -2
      man/mono_accent.Rd
  18. +2
    -2
      man/mono_accent_inverse.Rd
  19. +2
    -2
      man/mono_dark.Rd
  20. +2
    -2
      man/mono_light.Rd
  21. +4
    -3
      man/solarized_dark.Rd
  22. +4
    -3
      man/solarized_light.Rd
  23. +2
    -2
      man/write_xaringan_theme.Rd
  24. +1
    -1
      vignettes/template-variables.md

+ 1
- 1
.gitignore Переглянути файл

.Rhistory .Rhistory
.RData .RData
.Ruserdata .Ruserdata
inst/doc/
inst/doc

+ 2
- 2
R/duo.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(secondary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(secondary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `secondary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `secondary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(primary_color, 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(primary_color, 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(secondary_color, 0.6), left_column_subtle_color = apply_alpha(secondary_color, 0.6),
left_column_selected_color = secondary_color, left_column_selected_color = secondary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(primary_color, 0.3), table_row_even_background_color = lighten_color(primary_color, 0.3),

+ 2
- 2
R/duo_accent.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(primary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(primary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `primary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `primary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(secondary_color, 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(secondary_color, 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(primary_color, 0.6), left_column_subtle_color = apply_alpha(primary_color, 0.6),
left_column_selected_color = primary_color, left_column_selected_color = primary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(secondary_color, 0.3), table_row_even_background_color = lighten_color(secondary_color, 0.3),

+ 2
- 2
R/duo_accent_inverse.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(primary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(primary_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `primary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `primary_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(secondary_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(primary_color, 0.6), left_column_subtle_color = apply_alpha(primary_color, 0.6),
left_column_selected_color = primary_color, left_column_selected_color = primary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3), table_row_even_background_color = darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3),

+ 2
- 2
R/mono_accent.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(base_color, 0.7), table_row_even_background_color = lighten_color(base_color, 0.7),

+ 2
- 2
R/mono_accent_inverse.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(base_color, 0.7), table_row_even_background_color = darken_color(base_color, 0.7),

+ 2
- 2
R/mono_dark.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `darken_color(base_color, 0.7)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(base_color, 0.7), table_row_even_background_color = darken_color(base_color, 0.7),

+ 2
- 2
R/mono_light.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to `apply_alpha(base_color, 0.6)`. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to `base_color`. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to `apply_alpha(base_color, 0.5)`. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(base_color, 0.8)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to `lighten_color(base_color, 0.8)`. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(base_color, 0.8), table_row_even_background_color = lighten_color(base_color, 0.8),

+ 2
- 2
R/solarized_dark.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #586e75. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to #586e75. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #93a1a1. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to #93a1a1. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to #cb4b16. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to #cb4b16. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #657b83. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #657b83. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #657b83. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #657b83. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to #073642. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to #073642. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = "#586e75", left_column_subtle_color = "#586e75",
left_column_selected_color = "#93a1a1", left_column_selected_color = "#93a1a1",
blockquote_left_color = "#cb4b16",
blockquote_left_border_color = "#cb4b16",
table_border_color = "#657b83", table_border_color = "#657b83",
table_row_border_color = "#657b83", table_row_border_color = "#657b83",
table_row_even_background_color = "#073642", table_row_even_background_color = "#073642",

+ 2
- 2
R/solarized_light.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #93a1a1. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to #93a1a1. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #586e75. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to #586e75. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to #cb4b16. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to #cb4b16. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #839496. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #839496. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #839496. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #839496. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to #eee8d5. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to #eee8d5. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = "#93a1a1", left_column_subtle_color = "#93a1a1",
left_column_selected_color = "#586e75", left_column_selected_color = "#586e75",
blockquote_left_color = "#cb4b16",
blockquote_left_border_color = "#cb4b16",
table_border_color = "#839496", table_border_color = "#839496",
table_row_border_color = "#839496", table_row_border_color = "#839496",
table_row_even_background_color = "#eee8d5", table_row_even_background_color = "#eee8d5",

+ 11
- 11
R/theme_settings.R Переглянути файл

, "footnote_position_bottom", "3em", ".footnote", "Footnote location from bottom of screen" , "footnote_position_bottom", "3em", ".footnote", "Footnote location from bottom of screen"
, "left_column_subtle_color", "#777", ".left-column h2, .left-column h3", "Left Column Text (not last)" , "left_column_subtle_color", "#777", ".left-column h2, .left-column h3", "Left Column Text (not last)"
, "left_column_selected_color", "#000", ".left-column h2:last-of-type, .left-column h3:last-child", "Left Column Current Selection" , "left_column_selected_color", "#000", ".left-column h2:last-of-type, .left-column h3:last-child", "Left Column Current Selection"
, "blockquote_left_color", "lightgray", "blockquote", "Blockquote Left Border Color"
, "blockquote_left_border_color", "lightgray", "blockquote", "Blockquote Left Border Color"
, "table_border_color", "#666", "table: border-top, border-bottom", "Table top/bottom border" , "table_border_color", "#666", "table: border-top, border-bottom", "Table top/bottom border"
, "table_row_border_color", "#ddd", "table thead th: border-bottom", "Table row inner bottom border" , "table_row_border_color", "#ddd", "table thead th: border-bottom", "Table row inner bottom border"
, "table_row_even_background_color", "#eee", "thead, tfoot, tr:nth-child(even)", "Table Even Row Background Color" , "table_row_even_background_color", "#eee", "thead, tfoot, tr:nth-child(even)", "Table Even Row Background Color"
inverse_header_color = "{white_color}", inverse_header_color = "{white_color}",
left_column_subtle_color = "{apply_alpha(base_color, 0.6)}", left_column_subtle_color = "{apply_alpha(base_color, 0.6)}",
left_column_selected_color = "{base_color}", left_column_selected_color = "{base_color}",
blockquote_left_color = "{apply_alpha(base_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(base_color, 0.5)}",
table_row_even_background_color = "{lighten_color(base_color, 0.8)}") table_row_even_background_color = "{lighten_color(base_color, 0.8)}")


template_mono_dark <- tibble::tribble( template_mono_dark <- tibble::tribble(
inverse_header_color = "{black_color}", inverse_header_color = "{black_color}",
left_column_subtle_color = "{apply_alpha(base_color, 0.6)}", left_column_subtle_color = "{apply_alpha(base_color, 0.6)}",
left_column_selected_color = "{base_color}", left_column_selected_color = "{base_color}",
blockquote_left_color = "{apply_alpha(base_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(base_color, 0.5)}",
table_row_even_background_color = "{darken_color(base_color, 0.7)}") table_row_even_background_color = "{darken_color(base_color, 0.7)}")


template_mono_accent <- tibble::tribble( template_mono_accent <- tibble::tribble(
inverse_header_color = "{white_color}", inverse_header_color = "{white_color}",
left_column_subtle_color = "{apply_alpha(base_color, 0.6)}", left_column_subtle_color = "{apply_alpha(base_color, 0.6)}",
left_column_selected_color = "{base_color}", left_column_selected_color = "{base_color}",
blockquote_left_color = "{apply_alpha(base_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(base_color, 0.5)}",
table_row_even_background_color = "{lighten_color(base_color, 0.7)}") table_row_even_background_color = "{lighten_color(base_color, 0.7)}")


template_mono_accent_inverse <- tibble::tribble( template_mono_accent_inverse <- tibble::tribble(
inverse_header_color = "{black_color}", inverse_header_color = "{black_color}",
left_column_subtle_color = "{apply_alpha(base_color, 0.6)}", left_column_subtle_color = "{apply_alpha(base_color, 0.6)}",
left_column_selected_color = "{base_color}", left_column_selected_color = "{base_color}",
blockquote_left_color = "{apply_alpha(base_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(base_color, 0.5)}",
table_row_even_background_color = "{darken_color(base_color, 0.7)}") table_row_even_background_color = "{darken_color(base_color, 0.7)}")


template_duo_light <- tibble::tribble( template_duo_light <- tibble::tribble(
inverse_header_color = "{secondary_color}", inverse_header_color = "{secondary_color}",
left_column_subtle_color = "{apply_alpha(secondary_color, 0.6)}", left_column_subtle_color = "{apply_alpha(secondary_color, 0.6)}",
left_column_selected_color = "{secondary_color}", left_column_selected_color = "{secondary_color}",
blockquote_left_color = "{apply_alpha(secondary_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(secondary_color, 0.5)}",
table_row_even_background_color = "{lighten_color(secondary_color, 0.7)}") table_row_even_background_color = "{lighten_color(secondary_color, 0.7)}")


template_duo <- tibble::tribble( template_duo <- tibble::tribble(
title_slide_background_color = "{primary_color}", title_slide_background_color = "{primary_color}",
left_column_subtle_color = "{apply_alpha(secondary_color, 0.6)}", left_column_subtle_color = "{apply_alpha(secondary_color, 0.6)}",
left_column_selected_color = "{secondary_color}", left_column_selected_color = "{secondary_color}",
blockquote_left_color = "{apply_alpha(secondary_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(secondary_color, 0.5)}",
table_row_even_background_color = "{lighten_color(primary_color, 0.3)}") table_row_even_background_color = "{lighten_color(primary_color, 0.3)}")


template_duo_accent <- tibble::tribble( template_duo_accent <- tibble::tribble(
title_slide_text_color = "{choose_dark_or_light(primary_color, black_color, white_color)}", title_slide_text_color = "{choose_dark_or_light(primary_color, black_color, white_color)}",
left_column_subtle_color = "{apply_alpha(primary_color, 0.6)}", left_column_subtle_color = "{apply_alpha(primary_color, 0.6)}",
left_column_selected_color = "{primary_color}", left_column_selected_color = "{primary_color}",
blockquote_left_color = "{apply_alpha(secondary_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(secondary_color, 0.5)}",
table_row_even_background_color = "{lighten_color(secondary_color, 0.3)}") table_row_even_background_color = "{lighten_color(secondary_color, 0.3)}")


template_duo_accent_inverse <- set_default( template_duo_accent_inverse <- set_default(
title_slide_text_color = "{choose_dark_or_light(primary_color, black_color, white_color)}", title_slide_text_color = "{choose_dark_or_light(primary_color, black_color, white_color)}",
left_column_subtle_color = "{apply_alpha(primary_color, 0.6)}", left_column_subtle_color = "{apply_alpha(primary_color, 0.6)}",
left_column_selected_color = "{primary_color}", left_column_selected_color = "{primary_color}",
blockquote_left_color = "{apply_alpha(secondary_color, 0.5)}",
blockquote_left_border_color = "{apply_alpha(secondary_color, 0.5)}",
table_row_even_background_color = "{darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3)}") table_row_even_background_color = "{darken_color(choose_dark_or_light(primary_color, secondary_color, primary_color), 0.3)}")


solarized <- list( solarized <- list(
title_slide_background_color = "{inverse_background_color}", title_slide_background_color = "{inverse_background_color}",
left_column_subtle_color = solarized$base1, left_column_subtle_color = solarized$base1,
left_column_selected_color = solarized$base01, left_column_selected_color = solarized$base01,
blockquote_left_color = solarized$orange,
blockquote_left_border_color = solarized$orange,
table_border_color = solarized$base0, table_border_color = solarized$base0,
table_row_border_color = solarized$base0, table_row_border_color = solarized$base0,
table_row_even_background_color = solarized$base2 table_row_even_background_color = solarized$base2
title_slide_background_color = "{inverse_background_color}", title_slide_background_color = "{inverse_background_color}",
left_column_subtle_color = solarized$base01, left_column_subtle_color = solarized$base01,
left_column_selected_color = solarized$base1, left_column_selected_color = solarized$base1,
blockquote_left_color = solarized$orange,
blockquote_left_border_color = solarized$orange,
table_border_color = solarized$base00, table_border_color = solarized$base00,
table_row_border_color = solarized$base00, table_row_border_color = solarized$base00,
table_row_even_background_color = solarized$base02 table_row_even_background_color = solarized$base02

+ 2
- 2
R/write_theme.R Переглянути файл

#' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class. #' @param footnote_position_bottom Footnote location from bottom of screen. Defaults to 3em. Modifies the `.footnote` class.
#' @param left_column_subtle_color Left Column Text (not last). Defaults to #777. Modifies the `.left-column h2, .left-column h3` classes. #' @param left_column_subtle_color Left Column Text (not last). Defaults to #777. Modifies the `.left-column h2, .left-column h3` classes.
#' @param left_column_selected_color Left Column Current Selection. Defaults to #000. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes. #' @param left_column_selected_color Left Column Current Selection. Defaults to #000. Modifies the `.left-column h2:last-of-type, .left-column h3:last-child` classes.
#' @param blockquote_left_color Blockquote Left Border Color. Defaults to lightgray. Modifies the `blockquote` element.
#' @param blockquote_left_border_color Blockquote Left Border Color. Defaults to lightgray. Modifies the `blockquote` element.
#' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements. #' @param table_border_color Table top/bottom border. Defaults to #666. Modifies the `table: border-top, border-bottom` elements.
#' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements. #' @param table_row_border_color Table row inner bottom border. Defaults to #ddd. Modifies the `table thead th: border-bottom` elements.
#' @param table_row_even_background_color Table Even Row Background Color. Defaults to #eee. Modifies the `thead, tfoot, tr:nth-child(even)` elements. #' @param table_row_even_background_color Table Even Row Background Color. Defaults to #eee. Modifies the `thead, tfoot, tr:nth-child(even)` elements.
footnote_position_bottom = "3em", footnote_position_bottom = "3em",
left_column_subtle_color = "#777", left_column_subtle_color = "#777",
left_column_selected_color = "#000", left_column_selected_color = "#000",
blockquote_left_color = "lightgray",
blockquote_left_border_color = "lightgray",
table_border_color = "#666", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_border_color = "#ddd",
table_row_even_background_color = "#eee", table_row_even_background_color = "#eee",

+ 1
- 1
inst/resources/template.css Переглянути файл

max-width: 100%; max-width: 100%;
} }
blockquote { blockquote {
border-left: solid 5px {{blockquote_left_color}};
border-left: solid 5px {{blockquote_left_border_color}};
padding-left: 1em; padding-left: 1em;
} }
table { table {

+ 2
- 2
man/duo.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(secondary_color, 0.6), left_column_subtle_color = apply_alpha(secondary_color, 0.6),
left_column_selected_color = secondary_color, left_column_selected_color = secondary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(primary_color, 0.3), table_row_even_background_color = lighten_color(primary_color, 0.3),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{secondary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{secondary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/duo_accent.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(primary_color, 0.6), left_column_subtle_color = apply_alpha(primary_color, 0.6),
left_column_selected_color = primary_color, left_column_selected_color = primary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(secondary_color, 0.3), table_row_even_background_color = lighten_color(secondary_color, 0.3),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{primary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{primary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/duo_accent_inverse.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(primary_color, 0.6), left_column_subtle_color = apply_alpha(primary_color, 0.6),
left_column_selected_color = primary_color, left_column_selected_color = primary_color,
blockquote_left_color = apply_alpha(secondary_color, 0.5),
blockquote_left_border_color = apply_alpha(secondary_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(choose_dark_or_light(primary_color, table_row_even_background_color = darken_color(choose_dark_or_light(primary_color,
secondary_color, primary_color), 0.3), text_font_size = "20px", secondary_color, primary_color), 0.3), text_font_size = "20px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{primary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{primary_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(secondary_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/mono_accent.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(base_color, 0.7), table_row_even_background_color = lighten_color(base_color, 0.7),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/mono_accent_inverse.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(base_color, 0.7), table_row_even_background_color = darken_color(base_color, 0.7),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/mono_dark.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = darken_color(base_color, 0.7), table_row_even_background_color = darken_color(base_color, 0.7),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/mono_light.Rd Переглянути файл

footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = apply_alpha(base_color, 0.6), left_column_subtle_color = apply_alpha(base_color, 0.6),
left_column_selected_color = base_color, left_column_selected_color = base_color,
blockquote_left_color = apply_alpha(base_color, 0.5),
blockquote_left_border_color = apply_alpha(base_color, 0.5),
table_border_color = "#666", table_row_border_color = "#ddd", table_border_color = "#666", table_row_border_color = "#ddd",
table_row_even_background_color = lighten_color(base_color, 0.8), table_row_even_background_color = lighten_color(base_color, 0.8),
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to \code{base_color}. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to \code{apply_alpha(base_color, 0.5)}. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 4
- 3
man/solarized_dark.Rd Переглянути файл

title_slide_background_position = NA, footnote_color = NA, title_slide_background_position = NA, footnote_color = NA,
footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = "#586e75", left_column_subtle_color = "#586e75",
left_column_selected_color = "#93a1a1", blockquote_left_color = "#cb4b16",
table_border_color = "#657b83", table_row_border_color = "#657b83",
left_column_selected_color = "#93a1a1",
blockquote_left_border_color = "#cb4b16", table_border_color = "#657b83",
table_row_border_color = "#657b83",
table_row_even_background_color = "#073642", text_font_size = "20px", table_row_even_background_color = "#073642", text_font_size = "20px",
header_h1_font_size = "55px", header_h2_font_size = "45px", header_h1_font_size = "55px", header_h2_font_size = "45px",
header_h3_font_size = "35px", text_slide_number_font_size = "0.9em", header_h3_font_size = "35px", text_slide_number_font_size = "0.9em",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to #93a1a1. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to #93a1a1. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to #cb4b16. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to #cb4b16. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #657b83. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #657b83. Modifies the \code{table: border-top, border-bottom} elements.}



+ 4
- 3
man/solarized_light.Rd Переглянути файл

title_slide_background_position = NA, footnote_color = NA, title_slide_background_position = NA, footnote_color = NA,
footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = "#93a1a1", left_column_subtle_color = "#93a1a1",
left_column_selected_color = "#586e75", blockquote_left_color = "#cb4b16",
table_border_color = "#839496", table_row_border_color = "#839496",
left_column_selected_color = "#586e75",
blockquote_left_border_color = "#cb4b16", table_border_color = "#839496",
table_row_border_color = "#839496",
table_row_even_background_color = "#eee8d5", text_font_size = "20px", table_row_even_background_color = "#eee8d5", text_font_size = "20px",
header_h1_font_size = "55px", header_h2_font_size = "45px", header_h1_font_size = "55px", header_h2_font_size = "45px",
header_h3_font_size = "35px", text_slide_number_font_size = "0.9em", header_h3_font_size = "35px", text_slide_number_font_size = "0.9em",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to #586e75. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to #586e75. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to #cb4b16. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to #cb4b16. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #839496. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #839496. Modifies the \code{table: border-top, border-bottom} elements.}



+ 2
- 2
man/write_xaringan_theme.Rd Переглянути файл

title_slide_background_position = NA, footnote_color = NA, title_slide_background_position = NA, footnote_color = NA,
footnote_font_size = "0.9em", footnote_position_bottom = "3em", footnote_font_size = "0.9em", footnote_position_bottom = "3em",
left_column_subtle_color = "#777", left_column_selected_color = "#000", left_column_subtle_color = "#777", left_column_selected_color = "#000",
blockquote_left_color = "lightgray", table_border_color = "#666",
blockquote_left_border_color = "lightgray", table_border_color = "#666",
table_row_border_color = "#ddd", table_row_even_background_color = "#eee", table_row_border_color = "#ddd", table_row_even_background_color = "#eee",
text_font_size = "20px", header_h1_font_size = "55px", text_font_size = "20px", header_h1_font_size = "55px",
header_h2_font_size = "45px", header_h3_font_size = "35px", header_h2_font_size = "45px", header_h3_font_size = "35px",


\item{left_column_selected_color}{Left Column Current Selection. Defaults to #000. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.} \item{left_column_selected_color}{Left Column Current Selection. Defaults to #000. Modifies the \code{.left-column h2:last-of-type, .left-column h3:last-child} classes.}


\item{blockquote_left_color}{Blockquote Left Border Color. Defaults to lightgray. Modifies the \code{blockquote} element.}
\item{blockquote_left_border_color}{Blockquote Left Border Color. Defaults to lightgray. Modifies the \code{blockquote} element.}


\item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.} \item{table_border_color}{Table top/bottom border. Defaults to #666. Modifies the \code{table: border-top, border-bottom} elements.}



+ 1
- 1
vignettes/template-variables.md Переглянути файл

| `footnote_position_bottom` | `3em` | .footnote | Footnote location from bottom of screen | | `footnote_position_bottom` | `3em` | .footnote | Footnote location from bottom of screen |
| `left_column_subtle_color` | `#777` | .left-column h2, .left-column h3 | Left Column Text (not last) | | `left_column_subtle_color` | `#777` | .left-column h2, .left-column h3 | Left Column Text (not last) |
| `left_column_selected_color` | `#000` | .left-column h2:last-of-type, .left-column h3:last-child | Left Column Current Selection | | `left_column_selected_color` | `#000` | .left-column h2:last-of-type, .left-column h3:last-child | Left Column Current Selection |
| `blockquote_left_color` | `lightgray` | blockquote | Blockquote Left Border Color |
| `blockquote_left_border_color` | `lightgray` | blockquote | Blockquote Left Border Color |
| `table_border_color` | `#666` | table: border-top, border-bottom | Table top/bottom border | | `table_border_color` | `#666` | table: border-top, border-bottom | Table top/bottom border |
| `table_row_border_color` | `#ddd` | table thead th: border-bottom | Table row inner bottom border | | `table_row_border_color` | `#ddd` | table thead th: border-bottom | Table row inner bottom border |
| `table_row_even_background_color` | `#eee` | thead, tfoot, tr:nth-child(even) | Table Even Row Background Color | | `table_row_even_background_color` | `#eee` | thead, tfoot, tr:nth-child(even) | Table Even Row Background Color |

Завантаження…
Відмінити
Зберегти