shithub: bar

ref: f34cd2fe2f884b250bf0c4396cfe4186b34b2bf9
dir: /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);