1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef config_def_h_INCLUDED
#define config_def_h_INCLUDED
#define KBD_PIXEL_HEIGHT 40
#define KBD_PIXEL_LANDSCAPE_HEIGHT 40
static const char *default_font = "Monospace 14";
struct clr_scheme scheme = {
/* colors */
.bg = {.bgra = {15, 15, 15, 225}},
.fg = {.bgra = {45, 45, 45, 225}},
.high = {.bgra = {100, 100, 100, 225}},
.swipe = {.bgra = {100, 255, 100, 64}},
.text = {.color = UINT32_MAX},
};
#endif // config_def_h_INCLUDED
|