|
Additional Colors
|
|
| acGraphics
|
| The "AppControls pack" installs an additional colors to the Delphi / C++ Builder IDE, together with components. You can see these new colors in the Object Inspector, selecting any property with TColor type.
|
|
|
| TColor is used to specify the color of an object. It is used by the Color property of many components and by a number of other properties that specify color values. The acGraphics unit contains definitions of useful additional constants for TColor.
|
|
|
| If you specify TColor as a specific 4-byte hexadecimal number instead of using the constants defined in the acGraphics unit, the low three bytes represent RGB color intensities for blue, green, and red, respectively. The value $00FF0000 represents full-intensity, pure blue, $0000FF00 is pure green, and $000000FF is pure red. $00000000 is black and $00FFFFFF is white.
|
| Constant Value Sample
|
| clHotLight COLOR_HOTLIGHT or $80000000 |
| clGradientActiveCaption COLOR_GRADIENTACTIVECAPTION or $80000000 |
| clGradientInactiveCaption COLOR_GRADIENTINACTIVECAPTION or $80000000 |
| Contstant Value Sample
|
| clContextHelp | $EEFFFF |
| clBrown | $003090 |
| clOliveGreen | $003030 |
| clDarkGreen | $003000 |
| clDarkTeal | $603000 |
| clIndigo | $903030 |
| clNight | $303030 |
| clOrange | $0068FF |
| clBlueGray | $906060 |
| clLightOrange | $0098FF |
| clSeaGreen | $609830 |
| clLightBlue | $FF6830 |
| clMetal | $909090 |
| clGold | $00C8FF |
| clSkyBlue | $FFC800 |
| clPlum | $603090 |
| clRose | $D098FF |
| clTan | $A0C8FF |
| clLightYellow | $90FFFF |
| clLightGreen | $D0FFD0 |
| clLightTurquoise | $FFFFC0 |
| clPaleBlue | $FFC890 |
| clLavender | $FF98C0 |
| clCream | $A6CAF0 |
| clMoneyGreen | $C0DCC0 |
| Additional Cursors
|