42 lines
611 B
C
42 lines
611 B
C
/* XPM */
|
|
static char * colormap_xpm[] = {
|
|
/* width height ncolors chars_per_pixel */
|
|
"6 5 30 1",
|
|
/* colors */
|
|
" c black",
|
|
". c DarkSlateGrey",
|
|
"X c SlateGrey",
|
|
"o c grey",
|
|
"O c gainsboro",
|
|
"+ c white",
|
|
"@ c navy",
|
|
"# c blue",
|
|
"$ c DodgerBlue",
|
|
"% c SkyBlue",
|
|
"& c lavender",
|
|
"* c cyan",
|
|
"= c purple",
|
|
"- c firebrick",
|
|
"; c SeaGreen",
|
|
": c LimeGreen",
|
|
"> c green",
|
|
", c PaleGreen",
|
|
"< c magenta",
|
|
"1 c red",
|
|
"2 c tomato",
|
|
"3 c orange",
|
|
"4 c gold",
|
|
"5 c yellow",
|
|
"6 c violet",
|
|
"7 c sienna",
|
|
"8 c peru",
|
|
"9 c tan",
|
|
"0 c wheat",
|
|
"q c LemonChiffon",
|
|
/* pixels */
|
|
" .XoO+",
|
|
"@#$%&*",
|
|
"=-;:>,",
|
|
"<12345",
|
|
"67890q"};
|