From 03ca7a04ab888e1a411a1c6d6a815f685e4d6f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 4 Jul 2019 09:27:06 +0200 Subject: [PATCH] main: more zenburn:ish default foreground and background colors --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index a87598c4..55f793a0 100644 --- a/main.c +++ b/main.c @@ -31,8 +31,8 @@ #define min(x, y) ((x) < (y) ? (x) : (y)) #define max(x, y) ((x) > (y) ? (x) : (y)) -static const struct rgba default_foreground = {1.0, 1.0, 1.0, 1.0}; -static const struct rgba default_background = {0.0, 0.0, 0.0, 1.0}; +static const struct rgba default_foreground = {0.86, 0.86, 0.86, 1.0}; +static const struct rgba default_background = {0.067, 0.067, 0.067, 1.0}; struct wayland { struct wl_display *display;