mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-29 12:45:59 +02:00
39 lines
638 B
C
39 lines
638 B
C
/* XPM */
|
|
static char *magick[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 16 16 1",
|
|
" c black",
|
|
". c maroon",
|
|
"X c green",
|
|
"o c olive",
|
|
"O c navy",
|
|
"+ c purple",
|
|
"@ c teal",
|
|
"# c fractal",
|
|
"$ c silver",
|
|
"% c red",
|
|
"& c lime",
|
|
"* c yellow",
|
|
"= c blue",
|
|
"- c fuchsia",
|
|
"; c aqua",
|
|
": c gray100",
|
|
/* pixels */
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$ $$$$",
|
|
"$$$$$$$$ #$$$$$",
|
|
"$$$$$$$# $$$$$$",
|
|
"$$$$$$$ #$$$$$$",
|
|
"$$$$$$# $$$$$$$",
|
|
"$$$$$$ #$$$$$$$",
|
|
"$$$$$# $$$$$$$$",
|
|
"$$$$$ #$$$$$$$$",
|
|
"$$$ $$$$$$$",
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$$$$$$$$$$",
|
|
"$$$$$$$$$$$$$$$$"
|
|
};
|