convert R color to HCL color matrix
R compatible color, either a color name, or hex value, or
a mixture of the two. Any value compatible with
col2rgb
.
the color model to use, from "polarLUV"
for the
standard R conventional HCL, and "polarLAB"
which uses the
LAB-based HCL values.
additional arguments are ignored.
numeric maximum value to return, useful when the downstream alpha range should be 255. By default maxValue=1 is returned.
This function takes an R color and converts to an HCL matrix, using
the colorspace package, and RGB
and
polarLUV
functions. It is also used to
maintain alpha transparency, to enable interconversion via other
color manipulation functions as well.
When model="hcl"
this function uses farver::decode_colour()
and bypasses colorspace
. In future the colorspace
dependency
will likely be removed in favor of using farver
. In any event,
model="hcl"
is equivalent to using model="polarLUV"
and
fixup=TRUE
, except that it should be much faster.
Other jam color functions:
alpha2col()
,
applyCLrange()
,
col2alpha()
,
col2hsl()
,
col2hsv()
,
color2gradient()
,
fixYellowHue()
,
fixYellow()
,
getColorRamp()
,
hcl2col()
,
hsl2col()
,
hsv2col()
,
isColor()
,
kable_coloring()
,
makeColorDarker()
,
make_html_styles()
,
make_styles()
,
rgb2col()
,
setCLranges()
,
setTextContrastColor()
,
showColors()
,
unalpha()
,
warpRamp()
col2hcl("#FF000044")
#> [,1]
#> H 12.1743993
#> C 179.0489832
#> L 53.2407941
#> alpha 0.2666667