1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# The basic symbol names for all colors.
#
# written by Elrond <Elrond@Wunder-Nett.org>
# the color palette is the definition of the symbolic colors
# that are used everywhere else in the configuration files
# syntax of the color specification is:
#
# fore back
# or
# symbolic_fore:symbolic_back
# or
# symbolic
color_palette {
# map system colors to symbolic
{ 'black', '0 0' },
{ 'darkBlue', '1 1' },
{ 'darkGreen', '2 2' },
{ 'darkCyan', '3 3' },
{ 'darkRed', '4 4' },
{ 'darkMagenta', '5 5' },
{ 'brown', '6 6' },
{ 'gray', '7 7' },
{ 'darkGray', '8 8' },
{ 'blue', '9 9' },
{ 'green', 'A A' },
{ 'cyan', 'B B' },
{ 'red', 'C C' },
{ 'magenta', 'D D' },
{ 'yellow', 'E E' },
{ 'white', 'F F' },
}
|