2021-08-25 23:52:08 +02:00
|
|
|
#ifndef config_def_h_INCLUDED
|
|
|
|
#define config_def_h_INCLUDED
|
|
|
|
|
2021-08-26 23:35:28 +02:00
|
|
|
static const char *default_font = "Monospace 14";
|
2021-08-25 23:52:08 +02:00
|
|
|
|
2021-08-26 09:16:47 +02:00
|
|
|
struct clr_scheme scheme = {
|
2021-09-19 14:23:51 +02:00
|
|
|
/* colors */
|
|
|
|
.bg = {.bgra = {15, 15, 15, 225}},
|
|
|
|
.fg = {.bgra = {45, 45, 45, 225}},
|
|
|
|
.high = {.bgra = {100, 100, 100, 225}},
|
|
|
|
.text = {.color = UINT32_MAX},
|
2021-08-26 09:16:47 +02:00
|
|
|
};
|
|
|
|
struct clr_scheme scheme1 = {
|
2021-09-19 14:23:51 +02:00
|
|
|
/* colors */
|
|
|
|
.bg = {.bgra = {15, 15, 15, 225}},
|
|
|
|
.fg = {.bgra = {32, 32, 32, 225}},
|
|
|
|
.high = {.bgra = {100, 100, 100, 225}},
|
|
|
|
.text = {.color = UINT32_MAX},
|
2021-08-26 09:16:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* layers is an ordered list of layouts, used to cycle through */
|
|
|
|
static enum layout_id layers[] = {
|
2021-09-19 14:23:51 +02:00
|
|
|
Full, // First layout is the default layout on startup
|
2021-10-31 19:41:56 +01:00
|
|
|
Special, Emoji, Simple, SimpleGrid, Nav, Cyrillic, Arabic,
|
2021-09-19 14:23:51 +02:00
|
|
|
NumLayouts // signals the last item, may not be omitted
|
2021-08-26 09:16:47 +02:00
|
|
|
};
|
|
|
|
|
2021-08-26 19:20:20 +02:00
|
|
|
/* layers is an ordered list of layouts, used to cycle through */
|
|
|
|
static enum layout_id landscape_layers[] = {
|
2021-09-19 14:23:51 +02:00
|
|
|
Landscape, // First layout is the default layout on startup
|
2021-10-31 19:41:56 +01:00
|
|
|
Special, Emoji, Nav,
|
2021-09-19 14:23:51 +02:00
|
|
|
NumLayouts // signals the last item, may not be omitted
|
2021-08-26 19:20:20 +02:00
|
|
|
};
|
|
|
|
|
2021-08-25 23:52:08 +02:00
|
|
|
#endif // config_def_h_INCLUDED
|