😎 Give your xaringan slides some style
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lines
794B

  1. test_that("read theme settings from css variables", {
  2. expected_vars <- list(
  3. background_color = "#E9EBEE",
  4. text_color = "#18273F",
  5. header_color = "#23395b",
  6. text_bold_color = "#23395b",
  7. inverse_background_color = "#23395b",
  8. inverse_text_color = "#E9EBEE",
  9. inverse_header_color = "#E9EBEE",
  10. text_font_size = "20px",
  11. header_h3_font_size = "35px",
  12. text_font_family = "'Noto Serif'",
  13. text_font_is_google = TRUE,
  14. header_font_family = "'Yanone Kaffeesatz'",
  15. header_font_is_google = FALSE,
  16. code_font_family = "'Source Code Pro'",
  17. code_font_is_google = FALSE
  18. )
  19. css_vars <- read_css_vars(testthat::test_path("css/mono_light.css"))
  20. for (var in names(expected_vars)) {
  21. expect_equal(!!css_vars[[var]], !!expected_vars[[var]])
  22. }
  23. })