DistinctColors {bfw} | R Documentation |
create vector containing Hex color codes
DistinctColors(range, random = FALSE)
range |
number of colors as sequence |
random |
logical, indicating whether or not to provide random colors, Default: FALSE |
DistinctColors(1:3)
# [1] "#FFFF00" "#1CE6FF" "#FF34FF"
set.seed(1)
DistinctColors(1:3, TRUE)
# [1] "#575329" "#CB7E98" "#D86A78"