loon (version 1.3.3)

hex12tohex6: Convert 12 hexadecimal digit color representations to 6 hexidecimal digit color representations

Description

Tk colors must be in 6 hexadecimal format with two hexadecimal digits for each of the red, green, and blue components. Twelve hexadecimal digit colors have 4 hexadecimal digits for each. This function converts the 12 digit format to the 6 provided the color is preserved.

Usage

hex12tohex6(x)

Arguments

x

a vector with 12 digit hexcolors

Details

Function throws a warning if the conversion loses information. The l_hexcolor function converts any Tcl color specification to a 12 digit hexadecimal color representation.

Examples

Run this code
# NOT RUN {
x <- l_hexcolor(c("red", "green", "blue", "orange"))
x
hex12tohex6(x)

# }

Run the code above in your browser using DataCamp Workspace