blob: 99f0b0fe68e1df291233c1e7a08176590ad3f41b (
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", "#111100" },
[SchemeSel] = { "#eeeeee", "#960" },
[SchemeOut] = { "#000000", "#960" },
};
//static const unsigned int alpha = 0xf9;
static const unsigned int alpha = 0xff;
static const unsigned int alphas[SchemeLast][2] = {
[SchemeNorm] = { OPAQUE, alpha },
[SchemeSel] = { OPAQUE, alpha },
[SchemeOut] = { OPAQUE, alpha },
};
|