😎 Give your xaringan slides some style
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

19 líneas
524B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/utils.R
  3. \name{apply_alpha}
  4. \alias{apply_alpha}
  5. \title{Add alpha to hex color}
  6. \usage{
  7. apply_alpha(color_hex, opacity = 0.5)
  8. }
  9. \arguments{
  10. \item{color_hex}{A character string representing a hex color}
  11. \item{opacity}{Desired opacity of the output color}
  12. }
  13. \description{
  14. Applies alpha (or opacity) to a color in hexadecimal form by
  15. converting opacity in the \code{[0, 1]} range to hex in the \code{[0, 255]} range
  16. and appending to the hex color.
  17. }