You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
532 B
30 lines
532 B
/* XPM */
|
|
#ifndef XPMMAIN
|
|
extern const char* swap_layer_xpm[];
|
|
#else
|
|
const char * swap_layer_xpm[] = {
|
|
"16 16 6 1",
|
|
" c None",
|
|
". c #B70000",
|
|
"+ c #000000",
|
|
"@ c #9B0000",
|
|
"# c #008F00",
|
|
"$ c #007900",
|
|
".......... ",
|
|
".......... + ",
|
|
".........@++++ ",
|
|
".........@+++++ ",
|
|
".......... + +++",
|
|
".......... ++",
|
|
"......##########",
|
|
"......##########",
|
|
"......##########",
|
|
"......##########",
|
|
"++ ##########",
|
|
"+++ + ##########",
|
|
" +++++$#########",
|
|
" ++++$#########",
|
|
" + ##########",
|
|
" ##########"};
|
|
|
|
#endif
|