From 4e953018533f6b176d952e072a8c7064f7d69a4f Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Thu, 9 Jan 2025 14:55:56 -0500 Subject: updates --- config.def.h | 11 ++++++----- 1 file 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[] = { -- cgit v1.2.3