diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ #include <endian.h> static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ -static const unsigned int alpha = 0x99; +static const unsigned int alpha = 0xcc; /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { "SauceCodePro Nerd Font:style=Regular:pixelsize=14" @@ -11,8 +11,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] = { "#888888", "#191919" }, - [SchemeSel] = { "#ffffff", "#547f62" }, + [SchemeNorm] = { "#ebdbb2", "#282828" }, + [SchemeSel] = { "#282828", "#b16286" }, [SchemeOut] = { "#888888", "#191919" }, }; @@ -28,7 +28,7 @@ static unsigned int gapxx = 10; static unsigned int border = 10; static unsigned int borderline = 0; static unsigned int border_width = 2; -static unsigned int border_color = 0x547f62; +static unsigned int border_color = 0xb16286; /* * Characters not considered part of a word while deleting words |