summaryrefslogtreecommitdiff
path: root/dmenu/themes/sunshine.h
blob: fcf01a897762b20d098bbd8259bb4621ecbfe454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static const char *colors[SchemeLast][2] = {
        /*     fg         bg       */
        [SchemeNorm] = { "#dad", "#111" },
        [SchemeSel] = { "#dad", "#94d" },
        [SchemeOut] = { "#dad", "#94d" },
};

static const unsigned int alpha = 0xf0;

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