Argb32
Description
Specifies a color value as a 32-bit ARGB integer.
HTML color values in the form #rrggbb can be specified as 0xFFrrggbb. For example: HTML color #EEDD00 (light reddish yellow) is given as 0xFFEEDD00 (fully opaque light reddish yellow).
Fields / Required
argb
The 32-bit ARGB color value:
- 
0xAA000000
Bits (31..24) specify the alpha channel (linear) in the range[0..255]resp.[0x00..0xFF]. - 
0x00RR0000
Bits (23..16) specify the red channel (compressed sRGB) in the range[0..255]resp.[0x00..0xFF]. - 
0x0000GG00
Bits (15..8) specify the green channel (compressed sRGB) in the range[0..255]resp.[0x00..0xFF]. - 
0x000000BB
Bits (7..0) specify the blue channel (compressed sRGB) in the range[0..255]resp.[0x00..0xFF].