Convert a character vector of HEX color codes to a data.frame with columns
hex, r, g, b.
Examples
hex2rgb("#FF8000")
#> hex r g b
#> 1 #FF8000 255 128 0
hex2rgb(c("#FF8000", "#00FF00"))
#> hex r g b
#> 1 #FF8000 255 128 0
#> 2 #00FF00 0 255 0
