From 12c61a33546358928777b584883c1e990ab09a21 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 11 Apr 2021 13:29:48 +0530 Subject: configured a real sexy colorscheme hell yea --- config.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index c979baf..71594bf 100644 --- a/config.h +++ b/config.h @@ -1,19 +1,21 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static int topbar = 0; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=10" + "Hack:size=11" }; -static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *prompt = "Run: ";//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" }, + [SchemeNorm] = { "#FFFFFF", "#171520" }, + [SchemeSel] = { "#FFFFFF", "#D33682" }, + [SchemeSelHighlight] = { "#FFFFFF", "#5B76B7" }, + [SchemeNormHighlight] = { "#FFFFFF", "#130F23" }, + [SchemeMid] = { "#FFFFFF", "#8915e5" }, + /*[SchemeNormHighlight] = { "#FFFFFF", "#222222" },*/ + [SchemeOut] = { "#FFFFFF", "#5b76b7" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; -- cgit v1.2.3