fix horrible default colors

This commit is contained in:
speedie 2023-05-16 21:36:45 +02:00
parent 2a9ae1480c
commit 45fc412c43
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ spmenu = {
color = ( { itemnormfg = "#bbbbbb"; // Normal item foreground color (#RRGGBB) color = ( { itemnormfg = "#bbbbbb"; // Normal item foreground color (#RRGGBB)
itemnormbg = "#222222"; // Normal item background color (#RRGGBB) itemnormbg = "#222222"; // Normal item background color (#RRGGBB)
itemnormfg2 = "#bbbbbb"; // Normal next item foreground 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) itemselfg = "#eeeeee"; // Selected item foreground color (#RRGGBB)
itemselbg = "#35638A"; // Selected item background color (#RRGGBB) itemselbg = "#35638A"; // Selected item background color (#RRGGBB)
itemnormprifg = "#bbbbbb"; // Normal priority item foreground color (#RRGGBB) itemnormprifg = "#bbbbbb"; // Normal priority item foreground color (#RRGGBB)

View file

@ -114,7 +114,7 @@ static int hideimage = 0; /* Hide image (0/1) */
static char col_itemnormfg[] = "#bbbbbb"; /* Normal foreground item color */ static char col_itemnormfg[] = "#bbbbbb"; /* Normal foreground item color */
static char col_itemnormbg[] = "#222222"; /* Normal background 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_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_itemselfg[] = "#eeeeee"; /* Selected foreground item color */
static char col_itemselbg[] = "#35638A"; /* Selected background item color */ static char col_itemselbg[] = "#35638A"; /* Selected background item color */
static char col_itemnormprifg[] = "#bbbbbb"; /* Normal foreground item (high priority) color */ static char col_itemnormprifg[] = "#bbbbbb"; /* Normal foreground item (high priority) color */