shithub: orca

ref: 0927bbcd7f04299e91151dd6fd432390c203bcb2
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 *fd);
void themeinit(void);