anBackColor Set Background Color
|
|
Set Background Color using an RGB Array
#INCLUDE "I_COLOR.CH"
BACKCOLOR RED // Using predefine color
BACKCOLOR { 10, 20, 30 } // Using custom RGB settings
BASIC COLOR TABLE:
Predefined Color (See \include\i_color.ch )
YELLOW { 255 , 255 , 0 }
PINK {
255 , 128 , 192 }
RED { 255 , 0 , 0 }
FUCHSIA { 255 , 0 , 255 }
BROWN { 128 , 64 , 64 }
ORANGE { 255 , 128 , 64 }
GREEN {
0 , 255 , 0 }
PURPLE {
128 , 0 , 128 }
BLACK {
0 , 0 , 0 }
WHITE {
255 , 255 , 255 }
GRAY {
128 , 128 , 128 }
BLUE {
0 , 0 , 255 }
SILVER {
192 , 192 , 192 }
MAROON {
128 , 0 , 0 }
OLIVE {
128 , 128 , 0 }
LGREEN {
0 , 128 , 0 }
AQUA {
0 , 255 , 255 }
NAVY {
0 , 0 , 128 }
TEAL { 0 , 128 , 128
}
Color name that are written in black do not have enough contrast to show here.