blob: a2868e8f66f9841b97c1983e876329e9f3fe138d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* XPM */
static char *point[] = {
/* width height num_colors chars_per_pixel */
" 4 4 2 1",
/* colors */
" s None c None",
"n c #de9541",
/* pixels */
" ",
" nn ",
" nn ",
" "
};
|