mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-23 08:52:14 -07:00
Files

screenshots into appropriate sizes and colour depths. This is all done with a nasty Perl script, because ImageMagick does not output correct .ICO format. Not sure why; it isn't _that_ hard. I intend at some point to link the resulting icons into the actual Windows puzzle binaries, but before then I have to make them prettier: most of them would benefit from being derived from a smaller crop of the puzzle screenshot instead of trying to fit the whole thing in. [originally from svn r7017]
24 lines
368 B
C
24 lines
368 B
C
/* XPM */
|
|
static char *win16pal[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 1 16 1",
|
|
" c #000000",
|
|
". c #800000",
|
|
"X c #008000",
|
|
"o c #808000",
|
|
"O c #000080",
|
|
"+ c #800080",
|
|
"@ c #008080",
|
|
"# c #C0C0C0",
|
|
"$ c #808080",
|
|
"% c #FF0000",
|
|
"& c #00FF00",
|
|
"* c #FFFF00",
|
|
"= c #0000FF",
|
|
"- c #FF00FF",
|
|
"; c #00FFFF",
|
|
": c #FFFFFF",
|
|
/* pixels */
|
|
" .XoO+@#$%&*=-;:"
|
|
};
|