diff options
-rw-r--r-- | config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 04c19e2..0d66b48 100644 --- a/config.def.h +++ b/config.def.h @@ -5,8 +5,8 @@ static int topbar = 1; /* -b option; if 0, dmenu appears a static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "IBM Plex Mono:size=16", - "FontAwesome:size=12" + "FantasqueSansMono Nerd Font:size=13", + "FontAwesome:size=7" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { @@ -16,8 +16,8 @@ static const char *colors[SchemeLast][2] = { [SchemeSel] = { "#ee6a70", "#ffffff" }, [SchemeOut] = { "#0b0f10", "#00ffff" }, #else - [SchemeNorm] = { "#ffffff", "#000000" }, - [SchemeSel] = { "#ee6a70", "#000000" }, + [SchemeNorm] = { "#ffffff", "#2e3440" }, + [SchemeSel] = { "#7ba5dd", "#2e3440" }, [SchemeOut] = { "#ffffff", "#00ffff" }, #endif /* LIGHT */ }; |