Files
puzzles/icons/win16pal.xpm
Simon Tatham 90e6864579 Code to construct Windows icon files for the puzzles, by munging the
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]
2006-12-26 22:00:11 +00:00

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+@#$%&*=-;:"
};