shithub: zuke

ref: c23e5b256d2509b8e4a6b25822ee5e8bda5a0d9d
dir: /theme.h/

View raw version
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 *);
void themeinit(void);