😎 Give your xaringan slides some style
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

33 行
907B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/color.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. where 0 is entirely the original color and 1 is entirely white
  16. (\code{lighten_color()}) or black (\code{darken_color()}).}
  17. }
  18. \description{
  19. Produces a linear blend of the color with white or black.
  20. }
  21. \examples{
  22. blue <- "#0e6ba8"
  23. blue_light <- lighten_color(blue, strength = 0.33)
  24. blue_dark <- darken_color(blue, strength = 0.33)
  25. if (requireNamespace("scales", quietly = TRUE)) {
  26. scales::show_col(c(blue_light, blue, blue_dark))
  27. }
  28. }