diff options
| -rw-r--r-- | config.def.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index 60eb376..fc0d471 100644 --- a/config.def.h +++ b/config.def.h @@ -1,22 +1,23 @@ /* See LICENSE file for copyright and license details. */ static char *fontfallbacks[] = { + "fira code", "dejavu sans", "roboto", "ubuntu", }; -#define NUMFONTSCALES 42 +#define NUMFONTSCALES 60 #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 */ + "#fbf1c7", /* foreground color */ + "#1d2021", /* background color */ }; -static const float linespacing = 1.4; +static const float linespacing = 2; /* how much screen estate is to be used at max for the content */ -static const float usablewidth = 0.75; +static const float usablewidth = 0.90; static const float usableheight = 0.75; static Mousekey mshortcuts[] = { |