27 lines
537 B
C
27 lines
537 B
C
|
/* XPM */
|
||
|
static char * DocClosed_xpm[] = {
|
||
|
/* width height ncolors chars_per_pixel */
|
||
|
"16 16 4 1",
|
||
|
/* colors */
|
||
|
" s None c None",
|
||
|
". c #000000",
|
||
|
"& c #ff0000",
|
||
|
"+ c #ffffff",
|
||
|
/* pixels */
|
||
|
" ",
|
||
|
"........ ",
|
||
|
".++++++.. ",
|
||
|
".+.+.++.+. ",
|
||
|
".++++++.... ",
|
||
|
".+.+.+++++.. ",
|
||
|
".+++++++++.&. ",
|
||
|
".+.+.+.+.+.&&. ",
|
||
|
".+++++++++.&&&. ",
|
||
|
".+.+.+.+.+.&&&. ",
|
||
|
".+++++++++.&&. ",
|
||
|
".+.+.+.+.+.&. ",
|
||
|
".+++++++++.. ",
|
||
|
"........... ",
|
||
|
" ",
|
||
|
" "};
|