0xRRGGBB
0xRRGGBB is a common hexadecimal notation used in programming to represent a 24-bit color value. After the 0x prefix, six hexadecimal digits encode the red, green, and blue components in the order red, green, blue. Each pair ranges from 00 to FF, corresponding to 0 to 255 for the color channels. For example, 0xFF0000 denotes pure red, 0x00FF00 denotes pure green, and 0x0000FF denotes pure blue; 0x80A0C0 encodes a mid-level red, a medium-high green, and a light blue.
In typical use, the 0xRRGGBB value is stored as a 24-bit integer. To extract the individual components
The 0xRRGGBB scheme is distinct from CSS color notations, which use #RRGGBB or rgb() functions. In graphics