Kaynağa Gözat

feat: Add inverse_link_color to styles

Fixes #44
tags/v0.3.3
Garrick Aden-Buie 5 yıl önce
ebeveyn
işleme
8a8ebd5e41
41 değiştirilmiş dosya ile 200 ekleme ve 7 silme
  1. +6
    -0
      NEWS.md
  2. +6
    -0
      R/style_duo.R
  3. +6
    -0
      R/style_duo_accent.R
  4. +6
    -0
      R/style_duo_accent_inverse.R
  5. +6
    -0
      R/style_mono_accent.R
  6. +6
    -0
      R/style_mono_accent_inverse.R
  7. +6
    -0
      R/style_mono_dark.R
  8. +6
    -0
      R/style_mono_light.R
  9. +6
    -0
      R/style_solarized_dark.R
  10. +6
    -0
      R/style_solarized_light.R
  11. +6
    -0
      R/style_xaringan.R
  12. BIN
      R/sysdata.rda
  13. +1
    -1
      README.Rmd
  14. +2
    -2
      README.md
  15. +1
    -0
      data-raw/theme_template_variables.R
  16. +4
    -0
      inst/resources/template.css
  17. +0
    -4
      make.R
  18. +7
    -0
      man/style_duo.Rd
  19. +7
    -0
      man/style_duo_accent.Rd
  20. +7
    -0
      man/style_duo_accent_inverse.Rd
  21. +7
    -0
      man/style_mono_accent.Rd
  22. +7
    -0
      man/style_mono_accent_inverse.Rd
  23. +7
    -0
      man/style_mono_dark.Rd
  24. +7
    -0
      man/style_mono_light.Rd
  25. +7
    -0
      man/style_solarized_dark.Rd
  26. +7
    -0
      man/style_solarized_light.Rd
  27. +7
    -0
      man/style_xaringan.Rd
  28. +4
    -0
      tests/testthat/css/duo-header_bg.css
  29. +4
    -0
      tests/testthat/css/duo.css
  30. +4
    -0
      tests/testthat/css/duo_accent.css
  31. +4
    -0
      tests/testthat/css/duo_accent_inverse.css
  32. +4
    -0
      tests/testthat/css/google_fonts.css
  33. +4
    -0
      tests/testthat/css/mono_accent.css
  34. +4
    -0
      tests/testthat/css/mono_accent_inverse.css
  35. +4
    -0
      tests/testthat/css/mono_dark.css
  36. +4
    -0
      tests/testthat/css/mono_light-header_bg.css
  37. +4
    -0
      tests/testthat/css/mono_light.css
  38. +4
    -0
      tests/testthat/css/solarized_dark-header_bg.css
  39. +4
    -0
      tests/testthat/css/solarized_dark.css
  40. +4
    -0
      tests/testthat/css/solarized_light.css
  41. +4
    -0
      tests/testthat/css/xaringan.css

+ 6
- 0
NEWS.md Dosyayı Görüntüle

# xaringanthemer 0.3.0.9000

- Add `inverse_link_color` to control color of links on inverse slides (thanks @dmi3kno, #44)

- .pull-right[] now clears floats just for its immediate sibling

# xaringanthemer 0.3.0 # xaringanthemer 0.3.0


* Adds `theme_xaringan()`, a ggplot2 theme that automatically uses the colors * Adds `theme_xaringan()`, a ggplot2 theme that automatically uses the colors

+ 6
- 0
R/style_duo.R Dosyayı Görüntüle

#' 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
#' can be referenced with `var(--inverse-header-color)` in any argument of a #' can be referenced with `var(--inverse-header-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `secondary_color`. Modifies the `.title-slide` 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
inverse_text_color = primary_color, inverse_text_color = primary_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = primary_color, inverse_header_color = primary_color,
inverse_link_color = link_color,
title_slide_text_color = secondary_color, title_slide_text_color = secondary_color,
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_duo_accent.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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 value of this variable is also stored as a #' the `.title-slide` class. The value of this variable is also stored as a
inverse_text_color = choose_dark_or_light(secondary_color, black_color, white_color), inverse_text_color = choose_dark_or_light(secondary_color, black_color, white_color),
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = choose_dark_or_light(secondary_color, black_color, white_color), inverse_header_color = choose_dark_or_light(secondary_color, black_color, white_color),
inverse_link_color = link_color,
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),
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_duo_accent_inverse.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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 value of this variable is also stored as a #' the `.title-slide` class. The value of this variable is also stored as a
inverse_text_color = choose_dark_or_light(secondary_color, black_color, white_color), inverse_text_color = choose_dark_or_light(secondary_color, black_color, white_color),
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = choose_dark_or_light(secondary_color, black_color, white_color), inverse_header_color = choose_dark_or_light(secondary_color, black_color, white_color),
inverse_link_color = link_color,
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),
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_mono_accent.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = white_color, inverse_text_color = white_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = white_color, inverse_header_color = white_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_mono_accent_inverse.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = black_color, inverse_text_color = black_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = black_color, inverse_header_color = black_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_mono_dark.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = black_color, inverse_text_color = black_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = black_color, inverse_header_color = black_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_mono_light.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = white_color, inverse_text_color = white_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = white_color, inverse_header_color = white_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_solarized_dark.R Dosyayı Görüntüle

#' 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
#' can be referenced with `var(--inverse-header-color)` in any argument of a #' can be referenced with `var(--inverse-header-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = "#002b36", inverse_text_color = "#002b36",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = inverse_text_color, inverse_header_color = inverse_text_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_solarized_light.R Dosyayı Görüntüle

#' 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
#' can be referenced with `var(--inverse-header-color)` in any argument of a #' can be referenced with `var(--inverse-header-color)` in any argument of a
#' style function or in custom CSS. #' style function or in custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = "#fdf6e3", inverse_text_color = "#fdf6e3",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = inverse_text_color, inverse_header_color = inverse_text_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

+ 6
- 0
R/style_xaringan.R Dosyayı Görüntüle

#' 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
#' `var(--inverse-header-color)` in any argument of a style function or in #' `var(--inverse-header-color)` in any argument of a style function or in
#' custom CSS. #' custom CSS.
#' @param inverse_link_color Inverse Link Color. Defaults to `link_color`.
#' Modifies the `.inverse a, .inverse a > code` classes. The value of this
#' variable is also stored as a CSS variable that can be referenced with
#' `var(--inverse-link-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. The value of this #' `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 #' variable is also stored as a CSS variable that can be referenced with
inverse_text_color = "#d6d6d6", inverse_text_color = "#d6d6d6",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = "#f3f3f3", inverse_header_color = "#f3f3f3",
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,

BIN
R/sysdata.rda Dosyayı Görüntüle


+ 1
- 1
README.Rmd Dosyayı Görüntüle

<!-- badges: start --> <!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/xaringanthemer)](https://CRAN.R-project.org/package=xaringanthemer) [![CRAN status](https://www.r-pkg.org/badges/version/xaringanthemer)](https://CRAN.R-project.org/package=xaringanthemer)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable) [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
[![CI by {tic}](https://github.com/gadenbuie/xaringanthemer/workflows/CI%20by%20{tic}/badge.svg?branch=master)](https://github.com/gadenbuie/xaringanthemer/actions)
[![CI by {tic}](https://github.com/gadenbuie/xaringanthemer/workflows/tic/badge.svg?branch=master)](https://github.com/gadenbuie/xaringanthemer/actions)
[![Codecov](https://img.shields.io/codecov/c/github/gadenbuie/xaringanthemer)](https://codecov.io/github/gadenbuie/xaringanthemer) [![Codecov](https://img.shields.io/codecov/c/github/gadenbuie/xaringanthemer)](https://codecov.io/github/gadenbuie/xaringanthemer)
<!-- badges: end --> <!-- badges: end -->



+ 2
- 2
README.md Dosyayı Görüntüle

[![Lifecycle: [![Lifecycle:
stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable) stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
[![CI by [![CI by
{tic}](https://github.com/gadenbuie/xaringanthemer/workflows/CI%20by%20%7Btic%7D/badge.svg?branch=master)](https://github.com/gadenbuie/xaringanthemer/actions)
{tic}](https://github.com/gadenbuie/xaringanthemer/workflows/tic/badge.svg?branch=master)](https://github.com/gadenbuie/xaringanthemer/actions)
[![Codecov](https://img.shields.io/codecov/c/github/gadenbuie/xaringanthemer)](https://codecov.io/github/gadenbuie/xaringanthemer) [![Codecov](https://img.shields.io/codecov/c/github/gadenbuie/xaringanthemer)](https://codecov.io/github/gadenbuie/xaringanthemer)
<!-- badges: end --> <!-- badges: end -->




## Features ## Features


There’s a lot more that **xaringanthemer** can do\! [Discover
There’s a lot more that **xaringanthemer** can do! [Discover
xaringanthemer’s xaringanthemer’s
features.](https://pkg.garrickadenbuie.com/xaringanthemer/articles/xaringanthemer.html) features.](https://pkg.garrickadenbuie.com/xaringanthemer/articles/xaringanthemer.html)

+ 1
- 0
data-raw/theme_template_variables.R Dosyayı Görüntüle

, "inverse_text_color", "#d6d6d6", ".inverse", "Inverse Text Color", "--inverse-text-color" , "inverse_text_color", "#d6d6d6", ".inverse", "Inverse Text Color", "--inverse-text-color"
, "inverse_text_shadow", "{FALSE}", ".inverse", "Enables Shadow on text of inverse slides", NA_character_ , "inverse_text_shadow", "{FALSE}", ".inverse", "Enables Shadow on text of inverse slides", NA_character_
, "inverse_header_color", "#f3f3f3", ".inverse h1, .inverse h2, .inverse h3", "Inverse Header Color", "--inverse-header-color" , "inverse_header_color", "#f3f3f3", ".inverse h1, .inverse h2, .inverse h3", "Inverse Header Color", "--inverse-header-color"
, "inverse_link_color", "{link_color}", ".inverse a, .inverse a > code", "Inverse Link Color", "--inverse-link-color"
, "title_slide_text_color", "{inverse_text_color}", ".title-slide", "Title Slide Text Color", "--title-slide-text-color" , "title_slide_text_color", "{inverse_text_color}", ".title-slide", "Title Slide Text Color", "--title-slide-text-color"
, "title_slide_background_color", "{inverse_background_color}", ".title-slide", "Title Slide Background Color", "--title-slide-background-color" , "title_slide_background_color", "{inverse_background_color}", ".title-slide", "Title Slide Background Color", "--title-slide-background-color"
, "title_slide_background_image", "{NULL}", ".title-slide", "Title Slide Background Image URL", NA_character_ , "title_slide_background_image", "{NULL}", ".title-slide", "Title Slide Background Image URL", NA_character_

+ 4
- 0
inst/resources/template.css Dosyayı Görüntüle

--inverse-text-color: {{inverse_text_color}}; --inverse-text-color: {{inverse_text_color}};
--inverse-background-color: {{inverse_background_color}}; --inverse-background-color: {{inverse_background_color}};
--inverse-header-color: {{inverse_header_color}}; --inverse-header-color: {{inverse_header_color}};
--inverse-link-color: {{inverse_link_color}};
--title-slide-background-color: {{title_slide_background_color}}; --title-slide-background-color: {{title_slide_background_color}};
--title-slide-text-color: {{title_slide_text_color}}; --title-slide-text-color: {{title_slide_text_color}};
--header-background-color: {{header_background_color}}; --header-background-color: {{header_background_color}};
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 0
- 4
make.R Dosyayı Görüntüle

rmarkdown::render("README.Rmd", quiet = TRUE) rmarkdown::render("README.Rmd", quiet = TRUE)
unlink("README.html") unlink("README.html")


message("Rendering index.Rmd for pkgdown")
rmarkdown::render("index.Rmd", quiet = TRUE)
unlink("index.html")

message("Checking package") message("Checking package")
devtools::check(document = FALSE) devtools::check(document = FALSE)



+ 7
- 0
man/style_duo.Rd Dosyayı Görüntüle

inverse_text_color = primary_color, inverse_text_color = primary_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = primary_color, inverse_header_color = primary_color,
inverse_link_color = link_color,
title_slide_text_color = secondary_color, title_slide_text_color = secondary_color,
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
can be referenced with \code{var(--inverse-header-color)} in any argument of a can be referenced with \code{var(--inverse-header-color)} in any argument of a
style function or in custom CSS.} style function or in custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_duo_accent.Rd Dosyayı Görüntüle

inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = choose_dark_or_light(secondary_color, black_color, inverse_header_color = choose_dark_or_light(secondary_color, black_color,
white_color), white_color),
inverse_link_color = link_color,
title_slide_text_color = choose_dark_or_light(primary_color, black_color, title_slide_text_color = choose_dark_or_light(primary_color, black_color,
white_color), white_color),
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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 value of this variable is also stored as a the \code{.title-slide} class. The value of this variable is also stored as a

+ 7
- 0
man/style_duo_accent_inverse.Rd Dosyayı Görüntüle

inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = choose_dark_or_light(secondary_color, black_color, inverse_header_color = choose_dark_or_light(secondary_color, black_color,
white_color), white_color),
inverse_link_color = link_color,
title_slide_text_color = choose_dark_or_light(primary_color, black_color, title_slide_text_color = choose_dark_or_light(primary_color, black_color,
white_color), white_color),
title_slide_background_color = primary_color, title_slide_background_color = primary_color,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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 value of this variable is also stored as a the \code{.title-slide} class. The value of this variable is also stored as a

+ 7
- 0
man/style_mono_accent.Rd Dosyayı Görüntüle

inverse_text_color = white_color, inverse_text_color = white_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = white_color, inverse_header_color = white_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_mono_accent_inverse.Rd Dosyayı Görüntüle

inverse_text_color = black_color, inverse_text_color = black_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = black_color, inverse_header_color = black_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_mono_dark.Rd Dosyayı Görüntüle

inverse_text_color = black_color, inverse_text_color = black_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = black_color, inverse_header_color = black_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_mono_light.Rd Dosyayı Görüntüle

inverse_text_color = white_color, inverse_text_color = white_color,
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = white_color, inverse_header_color = white_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_solarized_dark.Rd Dosyayı Görüntüle

inverse_text_color = "#002b36", inverse_text_color = "#002b36",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = inverse_text_color, inverse_header_color = inverse_text_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
can be referenced with \code{var(--inverse-header-color)} in any argument of a can be referenced with \code{var(--inverse-header-color)} in any argument of a
style function or in custom CSS.} style function or in custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_solarized_light.Rd Dosyayı Görüntüle

inverse_text_color = "#fdf6e3", inverse_text_color = "#fdf6e3",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = inverse_text_color, inverse_header_color = inverse_text_color,
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
can be referenced with \code{var(--inverse-header-color)} in any argument of a can be referenced with \code{var(--inverse-header-color)} in any argument of a
style function or in custom CSS.} style function or in custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 7
- 0
man/style_xaringan.Rd Dosyayı Görüntüle

inverse_text_color = "#d6d6d6", inverse_text_color = "#d6d6d6",
inverse_text_shadow = FALSE, inverse_text_shadow = FALSE,
inverse_header_color = "#f3f3f3", inverse_header_color = "#f3f3f3",
inverse_link_color = link_color,
title_slide_text_color = inverse_text_color, title_slide_text_color = inverse_text_color,
title_slide_background_color = inverse_background_color, title_slide_background_color = inverse_background_color,
title_slide_background_image = NULL, title_slide_background_image = NULL,
\code{var(--inverse-header-color)} in any argument of a style function or in \code{var(--inverse-header-color)} in any argument of a style function or in
custom CSS.} custom CSS.}


\item{inverse_link_color}{Inverse Link Color. Defaults to \code{link_color}.
Modifies the \verb{.inverse a, .inverse a > code} classes. The value of this
variable is also stored as a CSS variable that can be referenced with
\code{var(--inverse-link-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. The value of this \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 variable is also stored as a CSS variable that can be referenced with

+ 4
- 0
tests/testthat/css/duo-header_bg.css Dosyayı Görüntüle

--inverse-text-color: #1F4257; --inverse-text-color: #1F4257;
--inverse-background-color: #F97B64; --inverse-background-color: #F97B64;
--inverse-header-color: #1F4257; --inverse-header-color: #1F4257;
--inverse-link-color: #F97B64;
--title-slide-background-color: #1F4257; --title-slide-background-color: #1F4257;
--title-slide-text-color: #F97B64; --title-slide-text-color: #F97B64;
--header-background-color: #F97B64; --header-background-color: #F97B64;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/duo.css Dosyayı Görüntüle

--inverse-text-color: #1F4257; --inverse-text-color: #1F4257;
--inverse-background-color: #F97B64; --inverse-background-color: #F97B64;
--inverse-header-color: #1F4257; --inverse-header-color: #1F4257;
--inverse-link-color: #F97B64;
--title-slide-background-color: #1F4257; --title-slide-background-color: #1F4257;
--title-slide-text-color: #F97B64; --title-slide-text-color: #F97B64;
--header-background-color: #F97B64; --header-background-color: #F97B64;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/duo_accent.css Dosyayı Görüntüle

--inverse-text-color: #000000; --inverse-text-color: #000000;
--inverse-background-color: #03A696; --inverse-background-color: #03A696;
--inverse-header-color: #000000; --inverse-header-color: #000000;
--inverse-link-color: #035AA6;
--title-slide-background-color: #035AA6; --title-slide-background-color: #035AA6;
--title-slide-text-color: #FFFFFF; --title-slide-text-color: #FFFFFF;
--header-background-color: #035AA6; --header-background-color: #035AA6;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/duo_accent_inverse.css Dosyayı Görüntüle

--inverse-text-color: #000000; --inverse-text-color: #000000;
--inverse-background-color: #03A696; --inverse-background-color: #03A696;
--inverse-header-color: #000000; --inverse-header-color: #000000;
--inverse-link-color: #03A696;
--title-slide-background-color: #035AA6; --title-slide-background-color: #035AA6;
--title-slide-text-color: #FFFFFF; --title-slide-text-color: #FFFFFF;
--header-background-color: #035AA6; --header-background-color: #035AA6;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/google_fonts.css Dosyayı Görüntüle

--inverse-text-color: #d6d6d6; --inverse-text-color: #d6d6d6;
--inverse-background-color: #272822; --inverse-background-color: #272822;
--inverse-header-color: #f3f3f3; --inverse-header-color: #f3f3f3;
--inverse-link-color: rgb(249, 38, 114);
--title-slide-background-color: #272822; --title-slide-background-color: #272822;
--title-slide-text-color: #d6d6d6; --title-slide-text-color: #d6d6d6;
--header-background-color: #000; --header-background-color: #000;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/mono_accent.css Dosyayı Görüntüle

--inverse-text-color: #FFFFFF; --inverse-text-color: #FFFFFF;
--inverse-background-color: #43418A; --inverse-background-color: #43418A;
--inverse-header-color: #FFFFFF; --inverse-header-color: #FFFFFF;
--inverse-link-color: #43418A;
--title-slide-background-color: #43418A; --title-slide-background-color: #43418A;
--title-slide-text-color: #FFFFFF; --title-slide-text-color: #FFFFFF;
--header-background-color: #43418A; --header-background-color: #43418A;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/mono_accent_inverse.css Dosyayı Görüntüle

--inverse-text-color: #050F0F; --inverse-text-color: #050F0F;
--inverse-background-color: #3C989E; --inverse-background-color: #3C989E;
--inverse-header-color: #050F0F; --inverse-header-color: #050F0F;
--inverse-link-color: #3C989E;
--title-slide-background-color: #3C989E; --title-slide-background-color: #3C989E;
--title-slide-text-color: #050F0F; --title-slide-text-color: #050F0F;
--header-background-color: #3C989E; --header-background-color: #3C989E;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/mono_dark.css Dosyayı Görüntüle

--inverse-text-color: #1E2523; --inverse-text-color: #1E2523;
--inverse-background-color: #cbf7ed; --inverse-background-color: #cbf7ed;
--inverse-header-color: #1E2523; --inverse-header-color: #1E2523;
--inverse-link-color: #cbf7ed;
--title-slide-background-color: #cbf7ed; --title-slide-background-color: #cbf7ed;
--title-slide-text-color: #1E2523; --title-slide-text-color: #1E2523;
--header-background-color: #cbf7ed; --header-background-color: #cbf7ed;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/mono_light-header_bg.css Dosyayı Görüntüle

--inverse-text-color: #E9EBEE; --inverse-text-color: #E9EBEE;
--inverse-background-color: #23395b; --inverse-background-color: #23395b;
--inverse-header-color: #E9EBEE; --inverse-header-color: #E9EBEE;
--inverse-link-color: #23395b;
--title-slide-background-color: #23395b; --title-slide-background-color: #23395b;
--title-slide-text-color: #E9EBEE; --title-slide-text-color: #E9EBEE;
--header-background-color: #23395b; --header-background-color: #23395b;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/mono_light.css Dosyayı Görüntüle

--inverse-text-color: #E9EBEE; --inverse-text-color: #E9EBEE;
--inverse-background-color: #23395b; --inverse-background-color: #23395b;
--inverse-header-color: #E9EBEE; --inverse-header-color: #E9EBEE;
--inverse-link-color: #23395b;
--title-slide-background-color: #23395b; --title-slide-background-color: #23395b;
--title-slide-text-color: #E9EBEE; --title-slide-text-color: #E9EBEE;
--header-background-color: #23395b; --header-background-color: #23395b;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/solarized_dark-header_bg.css Dosyayı Görüntüle

--inverse-text-color: #002b36; --inverse-text-color: #002b36;
--inverse-background-color: #fdf6e3; --inverse-background-color: #fdf6e3;
--inverse-header-color: #002b36; --inverse-header-color: #002b36;
--inverse-link-color: #b58900;
--title-slide-background-color: #fdf6e3; --title-slide-background-color: #fdf6e3;
--title-slide-text-color: #002b36; --title-slide-text-color: #002b36;
--header-background-color: #dc322f; --header-background-color: #dc322f;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/solarized_dark.css Dosyayı Görüntüle

--inverse-text-color: #002b36; --inverse-text-color: #002b36;
--inverse-background-color: #fdf6e3; --inverse-background-color: #fdf6e3;
--inverse-header-color: #002b36; --inverse-header-color: #002b36;
--inverse-link-color: #b58900;
--title-slide-background-color: #fdf6e3; --title-slide-background-color: #fdf6e3;
--title-slide-text-color: #002b36; --title-slide-text-color: #002b36;
--header-background-color: #dc322f; --header-background-color: #dc322f;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/solarized_light.css Dosyayı Görüntüle

--inverse-text-color: #fdf6e3; --inverse-text-color: #fdf6e3;
--inverse-background-color: #002b36; --inverse-background-color: #002b36;
--inverse-header-color: #fdf6e3; --inverse-header-color: #fdf6e3;
--inverse-link-color: #b58900;
--title-slide-background-color: #002b36; --title-slide-background-color: #002b36;
--title-slide-text-color: #fdf6e3; --title-slide-text-color: #fdf6e3;
--header-background-color: #dc322f; --header-background-color: #dc322f;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

+ 4
- 0
tests/testthat/css/xaringan.css Dosyayı Görüntüle

--inverse-text-color: #d6d6d6; --inverse-text-color: #d6d6d6;
--inverse-background-color: #272822; --inverse-background-color: #272822;
--inverse-header-color: #f3f3f3; --inverse-header-color: #f3f3f3;
--inverse-link-color: rgb(249, 38, 114);
--title-slide-background-color: #272822; --title-slide-background-color: #272822;
--title-slide-text-color: #d6d6d6; --title-slide-text-color: #d6d6d6;
--header-background-color: #000; --header-background-color: #000;
.inverse h1, .inverse h2, .inverse h3 { .inverse h1, .inverse h2, .inverse h3 {
color: var(--inverse-header-color); color: var(--inverse-header-color);
} }
.inverse a, .inverse a > code {
color: var(--inverse-link-color);
}
.title-slide, .title-slide h1, .title-slide h2, .title-slide h3 { .title-slide, .title-slide h1, .title-slide h2, .title-slide h3 {
color: var(--title-slide-text-color); color: var(--title-slide-text-color);
} }

Yükleniyor…
İptal
Kaydet