Skip to content

Commit 501fe65

Browse files
committed
config.def.h: use gruvbox theme by default
1 parent b9355e2 commit 501fe65

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

config.def.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ static const char *prompt = NULL; /* -p option; prompt to the left of
1414
#if __has_include(pywal)
1515
#include pywal
1616
#else
17-
static const char *colors[SchemeLast][2]
18-
/* fg bg */
19-
[SchemeNorm] = { "#bbbbbb", "#222222" },
20-
[SchemeSel] = { "#eeeeee", "#005577" },
21-
[SchemeSelHighlight] = { "#ffc978", "#005577" },
22-
[SchemeNormHighlight] = { "#ffc978", "#222222" },
23-
[SchemeOut] = { "#000000", "#00ffff" },
24-
};
17+
static const char *colors[SchemeLast][2] = {
18+
/* fg bg */
19+
[SchemeNorm] = { "#fbf1c7", "#32302f" },
20+
[SchemeSel] = { "#fbf1c7", "#fb4934" },
21+
[SchemeSelHighlight] = { "#8ec07c", "#fb4934" },
22+
[SchemeNormHighlight] = { "#8ec07c", "#32302f" },
23+
[SchemeOut] = { "#fbf1c7", "#8ec07c" },
24+
};
2525
#endif
2626
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
2727
static unsigned int lines = 0;

0 commit comments

Comments
 (0)