Squashed commit of the following:
[xmenu] / config.h
CommitLineData
fd530f3f 1/* font */
2static const char *font = "monospace:size=9"; /* for regular items */
3
4/* colors */
5static const char *background_color = "#FFFFFF";
6static const char *foreground_color = "#2E3436";
7static const char *selbackground_color = "#3584E4";
8static const char *selforeground_color = "#FFFFFF";
9static const char *separator_color = "#CDC7C2";
10static const char *border_color = "#E6E6E6";
11
12/* sizes in pixels */
13static int width_pixels = 130; /* minimum width of a menu */
685ca30d 14static int height_pixels = 25; /* height of a single menu item */
fd530f3f 15static int border_pixels = 1; /* menu border */
16static int separator_pixels = 3; /* space around separator */
17
685ca30d 18/* the variables below cannot be set by X resources */
19
fd530f3f 20/* geometry of the right-pointing isoceles triangle for submenus */
21static const int triangle_width = 3;
22static const int triangle_height = 7;
685ca30d 23
24/* padding of the area around the icon */
25static const int iconpadding = 4;