RGB-Color Hex-Code Chart
duplicate the indicated codes, e.g., FC9 = FFCC99 *
home page       Ed Stephan       comments


*Hexadecimal conversion

0-9 are the same in Hexadecimal and decimal numbering;
then it's 10=A, 11=B, 12=C, 13=D, 14=E, and 15=F.

To convert the Hex Code "pqxyrs" to RGB values, use this:

    R = 16*p + q     G = 16*x + y     B = 16*r + s

Thus, "FFCC99" = "255,204,153" (or in percents of 255: "100,80,60")

    R = 16*15 + 15 = 255     G = 16*12 + 12 = 204     B = 16*9 + 9 = 153