X-Git-Url: https://git.armaanb.net/?p=dmenu.git;a=blobdiff_plain;f=config.h;h=0cd6ea022dd70519d164d4be20fee7322f04c897;hp=cf0fe3b20c87bb6f903d08f367383dbfb783ecd0;hb=HEAD;hpb=7189bae116dd9320412dbc24c2260f18a6e6498a diff --git a/config.h b/config.h index cf0fe3b..0cd6ea0 100644 --- a/config.h +++ b/config.h @@ -9,12 +9,10 @@ static const char *fonts[] = { }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { - /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#005577" }, - [SchemeSelHighlight] = { "#ffc978", "#005577" }, - [SchemeNormHighlight] = { "#ffc978", "#222222" }, - [SchemeOut] = { "#000000", "#00ffff" }, + // fg bg + [SchemeNorm] = { "#ffffff", "#000000" }, + [SchemeSel] = { "#000000", "#ffffff" }, + [SchemeOut] = { "#00ffff", "#ffffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0;