all repos — dotfiles @ a23a4945b23420b1b0800e9e3dfe9bfc083f1968

my *nix dotfiles

Update colors

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Fri, 07 Feb 2020 21:28:38 +0530
commit

a23a4945b23420b1b0800e9e3dfe9bfc083f1968

parent

a9d88fbd77f9981feebf5d0e6b84f588d239c028

3 files changed, 26 insertions(+), 27 deletions(-)

jump to
M dmenu/config.hdmenu/config.h

@@ -4,16 +4,16 @@ static const char *fonts[] = {

"Roboto Mono:style=Medium:size=14" }; static int centered = 1; -static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static unsigned int lineheight = 35; static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#121212", "#cbd6e2" }, - [SchemeSel] = { "#cbd6e2", "#121212" }, + [SchemeNorm] = { "#5e646f", "#fafafa" }, + [SchemeSel] = { "#fafafa", "#5e646f" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ -static unsigned int lines = 5; +static unsigned int lines = 6; /* * Characters not considered part of a word while deleting words
M st/config.hst/config.h

@@ -82,32 +82,31 @@ * stty tabs

*/ unsigned int tabspaces = 8; -/* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* Normal colors */ - "#000000", /* 0: Base 00 - Black */ - "#bf8b56", /* 1: Base 08 - Red */ - "#56bf8b", /* 2: Base 0B - Green */ - "#8bbf56", /* 3: Base 0A - Yellow */ - "#8b56bf", /* 4: Base 0D - Blue */ - "#bf568b", /* 5: Base 0E - Magenta */ - "#568bbf", /* 6: Base 0C - Cyan */ - "#cbd6e2", /* 7: Base 05 - White */ + "#fafafa", /* 0: Base 00 - Black */ + "#db7070", /* 1: Base 08 - Red */ + "#7c9f4b", /* 2: Base 0B - Green */ + "#d69822", /* 3: Base 0A - Yellow */ + "#6587bf", /* 4: Base 0D - Blue */ + "#b870ce", /* 5: Base 0E - Magenta */ + "#509c93", /* 6: Base 0C - Cyan */ + "#5e646f", /* 7: Base 05 - White */ /* Bright colors */ - "#627e99", /* 8: Base 03 - Bright Black */ - "#bfbf56", /* 16: Base 09 */ - "#223b54", /* 18: Base 01 */ - "#405c79", /* 19: Base 02 */ - "#aabcce", /* 20: Base 04 */ - "#e5ebf1", /* 21: Base 06 */ - "#bf5656", /* 17: Base 0F */ - "#f7f9fb", /* 15: Base 05 - Bright White */ + "#5e646f", /* 8: Base 03 - Bright Black */ + "#db7070", /* 16: Base 09 */ + "#7c9f4b", /* 18: Base 01 */ + "#d69822", /* 19: Base 02 */ + "#6587bf", /* 20: Base 04 */ + "#b870ce", /* 21: Base 06 */ + "#509c93", /* 17: Base 0F */ + "#5e646f", /* 15: Base 05 - Bright White */ [255] = 0, - [256] = "#cbd6e2", /* default fg: Base 05 */ - [257] = "#000000", /* default bg: Base 00 */ + [256] = "#5e646f", /* default fg: Base 05 */ + [257] = "#fafafa", /* default bg: Base 00 */ }; // Foreground, background, cursor, and reversed cursor colors
M tabbed/config.htabbed/config.h

@@ -2,10 +2,10 @@ /* See LICENSE file for copyright and license details. */

/* appearance */ static const char font[] = "Roboto Mono:style=Medium:size=14"; -static const char* normbgcolor = "#121212"; -static const char* normfgcolor = "#cbd6e2"; -static const char* selbgcolor = "#cbd6e2"; -static const char* selfgcolor = "#121212"; +static const char* normbgcolor = "#5e646f"; +static const char* normfgcolor = "#fafafa"; +static const char* selbgcolor = "#fafafa"; +static const char* selfgcolor = "#5e646f"; static const char* urgbgcolor = "#111111"; static const char* urgfgcolor = "#cc0000"; static const char before[] = "<";