1
0
Fork 0

Configuring default colours

This commit is contained in:
Jarkko Toivanen 2024-07-16 03:17:16 +03:00
parent 64ffc39ed1
commit c72737a4b8
Signed by: jt
GPG key ID: 9151B109B73ECAD5

View file

@ -9,8 +9,8 @@ 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" },
[SchemeNorm] = { "#ffc000", "#000000" },
[SchemeSel] = { "#000000", "#ffc000" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */