Name of the color. For example, light blue.
RGB value of the color. For example, (193, 233, 230).
Includes alphanumeric characters (A-Z, 0-9), the underscore (_), and the dash (-)
Must start with an alpha (A-Z) character
Case insensitive
A name in the format (RGBredgreenblue) cannot be assigned a value.
'None' and 'default' are reserved. 'Default' is used during execution when a referenced color is not defined in the runtime environment.
red_lit|_var|_col, green_lit|_var|_col, blue_lit|_var|_col where each component is a value in the range of 000 to 255. In BEGIN-SETUP, only literal values are allowed.
Default colors implicitly installed with Production Reporting:
ALTER-COLOR-MAP is allowed wherever PRINT is allowed. ALTER-COLOR-MAP dynamically alters a color; it does not define a color.
begin-program
alter-color-map name = 'light_blue' value = (193, 233, 230)
print 'Yellow Submarine' ()
foreground = ('yellow')
background = ('light_blue')
get-color print-text-foreground = ($print-foreground)
set-color print-text-foreground = ('purple')
print 'Barney' (+1,1)
set-color print-text-foreground = ($print-foreground)
end-program