summaryrefslogtreecommitdiff
path: root/dmenu/themes/cicada.h
blob: 47742e2d3b373941d1d1628368dbf60f02b40305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static const char *colors[SchemeLast][2] = {
	/*     fg         bg       */
	[SchemeNorm] = { "#bbbbbb", "#0c0c0c" },
	[SchemeSel] = { "#eeeeee", "#666" },
	[SchemeOut] = { "#000000", "#666" },
};
//static const unsigned int alpha = 0xf9;
static const unsigned int alpha = 0xbb;

static const unsigned int alphas[SchemeLast][2] = {
	[SchemeNorm] = { OPAQUE, alpha },
	[SchemeSel] = { OPAQUE, alpha },
	[SchemeOut] = { OPAQUE, alpha },
};