shithub: bar

ref: a75dbcaded5dc4a53ae0ed872a0f7da20502610d
dir: bar/theme.h

View raw version
enum {
	Dback = 0,
	Dfhigh,
	Dltitle,
	Numcolors,
};

typedef struct ThemeColor ThemeColor;

struct ThemeColor {
	char *id;
	u32int rgb;
	Image *im;
};

extern ThemeColor colors[Numcolors];

void themeproc(void *fd);
void themeinit(void);