From 70017dc7f1a0f4e1e5dac2c70c6741e94cbcc37f Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Fri, 4 Mar 2022 02:32:01 -0500 Subject: [PATCH] Better colours --- src/motif.c | 2 +- src/x11.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/motif.c b/src/motif.c index 96d8e08..9ae4100 100644 --- a/src/motif.c +++ b/src/motif.c @@ -39,7 +39,7 @@ static char * const default_resources[] = { PROGNAME "*game.XmFrame.shadowThickness: 3", PROGNAME "*game.XmFrame.shadowType: shadow_in", PROGNAME "*goalArea.leftOffset: 1", - PROGNAME "*gameCanvas.background: #404040", + PROGNAME "*gameCanvas.background: #202020", NULL }; diff --git a/src/x11.c b/src/x11.c index 3b12bd3..9ded09e 100644 --- a/src/x11.c +++ b/src/x11.c @@ -25,12 +25,12 @@ /* TODO user-selectable colours */ static const char * const colours[][3] = { /*primary bottom top */ - "#fa2e2e", "#c02323", "#ff3939", /* red */ - "#ff8c00", "#c46c00", "#ffa400", /* orange */ - "#ffd700", "#c4a500", "#ffed00", /* yellow */ - "#228b22", "#186318", "#27a027", /* green */ - "#4682b4", "#325c80", "#4c8dc3", /* blue */ - "#faf0e6", "#b2aaa3", "#fff9ee", /* white */ + "#8d2e28", "#6a1b17", "#a14842", /* red */ + "#b46e28", "#924a16", "#c7904f", /* orange */ + "#d8b740", "#c59f39", "#e2c65d", /* yellow */ + "#286428", "#194719", "#4e874e", /* green */ + "#003471", "#001f4f", "#00528b", /* blue */ + "#dcdcdc", "#c0c0c0", "#eaeaea", /* white */ }; static void init_colours(struct app_state *state, Screen *screen) -- 2.43.2