😎 Give your xaringan slides some style
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

17 lines
532B

  1. #' @title Duotone Theme
  2. #' @description A duotone theme designed to work well with two complementary
  3. #' colors.
  4. #' @examples
  5. #' # Create a xaringan style in a temporary file
  6. #' xaringan_themer_css <- tempfile("xaringan-themer-", fileext = ".css")
  7. #'
  8. #' style_duo(
  9. #' primary_color = "#1f4257",
  10. #' secondary_color = "#f97b64",
  11. #' outfile = xaringan_themer_css # omit in your slides to write the
  12. #' # styles to xaringan-themer.css
  13. #' )
  14. #'
  15. #' # View the CSS:
  16. #' # file.edit(xaringan_themer_css)