mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
25 lines
375 B
C
25 lines
375 B
C
|
/* XPM */
|
||
|
static char *up_xpm[] = {
|
||
|
/* width height num_colors chars_per_pixel */
|
||
|
" 11 11 4 1",
|
||
|
/* colors */
|
||
|
". c #656565",
|
||
|
"# c #959595",
|
||
|
"a c #b0b0b0",
|
||
|
"b c #e0e0e0",
|
||
|
/* pixels */
|
||
|
"#####b#####",
|
||
|
"####bb.####",
|
||
|
"####bb.####",
|
||
|
"###bba..###",
|
||
|
"###bba..###",
|
||
|
"##bbaaa..##",
|
||
|
"##bbaaa..##",
|
||
|
"#bbaaaaa..#",
|
||
|
"#bbaaaaa..#",
|
||
|
"bb.........",
|
||
|
"b.........."
|
||
|
};
|
||
|
|
||
|
|