1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* XPM */
static char * maximize_toggled_active_xpm[] = {
"24 14 5 1",
" c None",
". c #C0C0C0 s active_color_2",
"+ c #D0D0D0 s active_hilight_2",
"@ c #A0A0D0 s active_shadow_2",
"# c #000000 s active_border_color",
" ...................... ",
"........................",
"..........#######.......",
"..........#######.......",
"................#.......",
".......#######..#.......",
".......#######..#.......",
".......#.....#..#.......",
".......#.....#.##.......",
".......#.....#..........",
".......#.....#..........",
".......#######..........",
"........................",
" ...................... "};
|