Convert hex colour to
hue_convert_to_hue_sat.Rd
Convert hex colour to
Arguments
- colour
A colour name as listed by
colours()
or a hexadecimal colour string.
Examples
hue_convert_to_hue_sat("red")
#> $hue
#> [1] 0
#>
#> $sat
#> [1] 255
#>
hue_convert_to_hue_sat("#E414FF")
#> $hue
#> [1] 53358
#>
#> $sat
#> [1] 235
#>
if (interactive()) {
hue_convert_to_hue_sat(colourpicker::colourPicker(numCols = 1))
}