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

22 lines
566B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/utils.R
  3. \name{lighten_darken_color}
  4. \alias{lighten_darken_color}
  5. \alias{lighten_color}
  6. \alias{darken_color}
  7. \title{Generate lighter or darker version of a color}
  8. \usage{
  9. lighten_color(color_hex, strength = 0.7)
  10. darken_color(color_hex, strength = 0.8)
  11. }
  12. \arguments{
  13. \item{color_hex}{A character string representing a hex color}
  14. \item{strength}{The "strength" of the blend with white or black,
  15. 0 low to 1 high.}
  16. }
  17. \description{
  18. Produces a linear blend of the color with white or black.
  19. }