| RGB-Color
Hex-Code Chart duplicate the indicated codes, e.g., the middle gif is transparent, so you can try it on other backgrounds the 216 colors in the first six rows work across IBM-MAC platforms |
| home page       Ed Stephan       comments |
![]() |
![]() |
![]() |
technical: the apparently black ("000000") box and letters are really
"000011";
this was so I could create a black background which could be made
transparent
*Hexadecimal conversion0-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