diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,16 +1,14 @@ /* See LICENSE file for copyright and license details. */ static char *fontfallbacks[] = { - "dejavu sans", - "roboto", - "ubuntu", + "Ubuntu Mono Nerd Font", }; #define NUMFONTSCALES 42 #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 */ + "#FFFFFF", /* foreground color */ + "#000000", /* background color */ }; static const float linespacing = 1.4; |