2021-08-25 23:52:08 +02:00
|
|
|
#ifndef config_def_h_INCLUDED
|
|
|
|
#define config_def_h_INCLUDED
|
|
|
|
|
2023-10-23 13:59:31 +02:00
|
|
|
#define DEFAULT_FONT "Sans 14"
|
2024-04-15 20:38:02 +02:00
|
|
|
#define DEFAULT_ROUNDING 5
|
2023-08-31 11:30:03 +02:00
|
|
|
static const int transparency = 255;
|
2021-08-25 23:52:08 +02:00
|
|
|
|
2023-10-09 17:27:51 +02:00
|
|
|
struct clr_scheme schemes[] = {
|
|
|
|
{
|
2021-09-19 14:23:51 +02:00
|
|
|
/* colors */
|
2022-01-15 08:23:46 +01:00
|
|
|
.bg = {.bgra = {15, 15, 15, transparency}},
|
|
|
|
.fg = {.bgra = {45, 45, 45, transparency}},
|
|
|
|
.high = {.bgra = {100, 100, 100, transparency}},
|
2021-12-03 11:57:19 -05:00
|
|
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
2021-09-19 14:23:51 +02:00
|
|
|
.text = {.color = UINT32_MAX},
|
2023-10-23 13:59:31 +02:00
|
|
|
.font = DEFAULT_FONT,
|
2024-04-15 20:38:02 +02:00
|
|
|
.rounding = DEFAULT_ROUNDING,
|
2023-10-09 17:27:51 +02:00
|
|
|
},
|
|
|
|
{
|
2021-09-19 14:23:51 +02:00
|
|
|
/* colors */
|
2022-01-15 08:23:46 +01:00
|
|
|
.bg = {.bgra = {15, 15, 15, transparency}},
|
|
|
|
.fg = {.bgra = {32, 32, 32, transparency}},
|
|
|
|
.high = {.bgra = {100, 100, 100, transparency}},
|
2021-12-03 11:57:19 -05:00
|
|
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
2021-09-19 14:23:51 +02:00
|
|
|
.text = {.color = UINT32_MAX},
|
2023-10-23 13:59:31 +02:00
|
|
|
.font = DEFAULT_FONT,
|
2024-04-15 20:38:02 +02:00
|
|
|
.rounding = DEFAULT_ROUNDING,
|
2023-10-09 17:27:51 +02:00
|
|
|
}
|
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
|
2023-08-29 12:01:43 +02:00
|
|
|
Special,
|
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
|
2023-08-29 14:01:16 +02:00
|
|
|
LandscapeSpecial,
|
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
|