Type for a typical MUI RGB Color with three LongWords to describe the color.
Source position: MUIClass.Area.pas line 21
type TMUIRGB = record |
||
Red: LongWord; |
|
Red color part in 32 bit (0..$ffffffff) |
Green: LongWord; |
|
Green color part in 32 bit (0..$ffffffff) |
Blue: LongWord; |
|
Blue color part in 32 bit (0..$ffffffff) |
end; |
Attention: a white color will be $ffffffff, $ffffffff, $ffffffff (in contrast a $ff, $ff, $ff would be still black)