summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 60eb376..b09f839 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,8 +9,13 @@ static char *fontfallbacks[] = {
#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
static const char *colors[] = {
- "#000000", /* foreground color */
- "#FFFFFF", /* background color */
+ "#f2f1f0", /* foreground color */
+ "#222d32", /* background color */
+};
+
+static const char *inverted_colors[] = {
+ "#222d32", /* foreground color */
+ "#f2f1f0", /* background color */
};
static const float linespacing = 1.4;
@@ -19,6 +24,9 @@ static const float linespacing = 1.4;
static const float usablewidth = 0.75;
static const float usableheight = 0.75;
+/* height of the presentation progress bar */
+static const int progressheight = 5;
+
static Mousekey mshortcuts[] = {
/* button function argument */
{ Button1, advance, {.i = +1} },