From 45fc412c432c752c58e6070ecf37eab44380ab90 Mon Sep 17 00:00:00 2001 From: speedie Date: Tue, 16 May 2023 21:36:45 +0200 Subject: [PATCH] fix horrible default colors --- docs/spmenu.conf | 2 +- options.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spmenu.conf b/docs/spmenu.conf index 59938ac..85d66a1 100644 --- a/docs/spmenu.conf +++ b/docs/spmenu.conf @@ -47,7 +47,7 @@ spmenu = { color = ( { itemnormfg = "#bbbbbb"; // Normal item foreground color (#RRGGBB) itemnormbg = "#222222"; // Normal item background color (#RRGGBB) itemnormfg2 = "#bbbbbb"; // Normal next item foreground color (#RRGGBB) - itemnormbg2 = "#bbbbbb"; // Normal next item background color (#RRGGBB) + itemnormbg2 = "#222222"; // Normal next item background color (#RRGGBB) itemselfg = "#eeeeee"; // Selected item foreground color (#RRGGBB) itemselbg = "#35638A"; // Selected item background color (#RRGGBB) itemnormprifg = "#bbbbbb"; // Normal priority item foreground color (#RRGGBB) diff --git a/options.h b/options.h index ed840a1..03e03ae 100644 --- a/options.h +++ b/options.h @@ -114,7 +114,7 @@ static int hideimage = 0; /* Hide image (0/1) */ static char col_itemnormfg[] = "#bbbbbb"; /* Normal foreground item color */ static char col_itemnormbg[] = "#222222"; /* Normal background item color */ static char col_itemnormfg2[] = "#bbbbbb"; /* Normal foreground item colors for the next item */ -static char col_itemnormbg2[] = "#bbbbbb"; /* Normal background item colors for the next item */ +static char col_itemnormbg2[] = "#222222"; /* Normal background item colors for the next item */ static char col_itemselfg[] = "#eeeeee"; /* Selected foreground item color */ static char col_itemselbg[] = "#35638A"; /* Selected background item color */ static char col_itemnormprifg[] = "#bbbbbb"; /* Normal foreground item (high priority) color */