diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-01-09 14:55:56 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-01-09 14:55:56 -0500 |
| commit | 4e953018533f6b176d952e072a8c7064f7d69a4f (patch) | |
| tree | 178e46c6b629faab7059c2b3ad47f95f49644b6a /config.def.h | |
| parent | 882d54c225b83c762acf5bb3967f4890c3ecef86 (diff) | |
| download | sent-4e953018533f6b176d952e072a8c7064f7d69a4f.tar.gz | |
Diffstat (limited to 'config.def.h')
| -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[] = { |