main: more zenburn:ish default foreground and background colors

This commit is contained in:
Daniel Eklöf 2019-07-04 09:27:06 +02:00
parent a191d98d09
commit 03ca7a04ab
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
main.c
View file

@ -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;