From 0a30ccce70b1b8034395d65bbb7bbf91d1745122 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 28 Jan 2021 11:23:51 +0100 Subject: [PATCH] Nord theme --- config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.h b/config.h index fca89ed..f44079a 100644 --- a/config.h +++ b/config.h @@ -2,15 +2,15 @@ /* See LICENSE file for copyright and license details. */ static char *fontfallbacks[] = { - "mono", - "JoyPixels", + (char *)"mono", + (char *)"JoyPixels", }; #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 */ + "#eceff4", /* foreground color */ + "#2e3440", /* background color */ }; static const float linespacing = 1.4;