😎 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.

17 satır
591B

  1. #' @title Duotone Accent Theme
  2. #' @description An default xaringan theme with a two colors used for color
  3. #' accents on select elements (headers, bold text, etc.).
  4. #' @examples
  5. #' # Create a xaringan style in a temporary file
  6. #' xaringan_themer_css <- tempfile("xaringan-themer-", fileext = ".css")
  7. #'
  8. #' style_duo_accent(
  9. #' primary_color = "#006747",
  10. #' secondary_color = "#cfc493",
  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)