😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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