😎 Give your xaringan slides some style
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

47 lines
1.7KB

  1. #' @importFrom grDevices col2rgb rgb rgb2hsv hsv
  2. #' @keywords internal
  3. "_PACKAGE"
  4. xaringanthemer_env <- new.env(parent = emptyenv())
  5. xaringanthemer_env$std_ggplot_defaults <- list(
  6. "line" = list(color = "black"),
  7. "vline" = list(color = "black"),
  8. "hline" = list(color = "black"),
  9. "abline" = list(color = "black"),
  10. "segment" = list(color = "black"),
  11. "bar" = list(fill = "grey35"),
  12. "col" = list(fill = "grey35"),
  13. "boxplot" = list(color = "grey20", fill = "white"),
  14. "contour" = list(color = "#3366FF"),
  15. "density" = list(color = "black",
  16. fill = NA,
  17. alpha = NA),
  18. "dotplot" = list(color = "black"),
  19. "errorbarh" = list(color = "black"),
  20. "crossbar" = list(color = "black"),
  21. "errorbar" = list(color = "black"),
  22. "linerange" = list(color = "black"),
  23. "pointrange" = list(color = "black"),
  24. "map" = list(color = "black"),
  25. "path" = list(color = "black"),
  26. "line" = list(color = "black"),
  27. "step" = list(color = "black"),
  28. "point" = list(color = "black"),
  29. "polygon" = list(color = NA,
  30. fill = "grey20"),
  31. "quantile" = list(color = "#3366FF"),
  32. "rug" = list(color = "black"),
  33. "segment" = list(color = "black"),
  34. "smooth" = list(fill = "grey60",
  35. color = "#3366FF"),
  36. "spoke" = list(color = "black"),
  37. "label" = list(color = "black",
  38. family = ""),
  39. "text" = list(color = "black",
  40. family = ""),
  41. "rect" = list(fill = "grey35"),
  42. "tile" = list(fill = "grey20"),
  43. "violin" = list(fill = "white", color = "grey20")
  44. )