ref: 7531dbe191cee7e6eb4a85b50da142cd61e85ff3
dir: /theme.h/
enum {
Dback = 0,
Dfhigh,
Dfmed,
Dflow,
Dfinv,
Dbhigh,
Dbmed,
Dblow,
Dbinv,
Numcolors,
};
typedef struct ThemeColor ThemeColor;
struct ThemeColor {
char *id;
u32int rgb;
Image *im;
};
extern ThemeColor colors[Numcolors];
void themeproc(void *fd);
void themeinit(void);