Adjust color scheme
parent
b451d165ac
commit
fe0a4a4f2f
|
@ -1,17 +1,17 @@
|
|||
[theme]
|
||||
background = "#1C1C1C"
|
||||
background = "#111111"
|
||||
primary = "#CCCCCC"
|
||||
secondary = "#AAAAAA"
|
||||
title = "#CCCCCC"
|
||||
playing = "#FFFFFF"
|
||||
playing_selected = "#FFFFFF"
|
||||
playing_bg = "#1C1C1C"
|
||||
playing_bg = "#111111"
|
||||
highlight = "#CCCCCC"
|
||||
highlight_bg = "#333333"
|
||||
error = "#FFFFFF"
|
||||
error_bg = "#1C1C1C"
|
||||
error_bg = "#111111"
|
||||
statusbar = "#CCCCCC"
|
||||
statusbar_progress = "#CCCCCC"
|
||||
statusbar_bg = "#1C1C1C"
|
||||
statusbar_bg = "#111111"
|
||||
cmdline = "#CCCCCC"
|
||||
cmdline_bg = "#1C1C1C"
|
||||
cmdline_bg = "#111111"
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
/* Default settings; can be overriden by command line. */
|
||||
|
||||
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||
static int centered = 1; /* -c option; centers dmenu on screen */
|
||||
static int centered = 0; /* -c option; centers dmenu on screen */
|
||||
static int min_width = 500; /* minimum width when centered */
|
||||
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||
static const char *fonts[] = {
|
||||
"Iosevka:size=12"
|
||||
"Iosevka:size=14"
|
||||
};
|
||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||
static const char *colors[SchemeLast][2] = {
|
||||
/* fg bg */
|
||||
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
||||
[SchemeSel] = { "#eeeeee", "#005577" },
|
||||
[SchemeOut] = { "#000000", "#00ffff" },
|
||||
[SchemeNorm] = { "#555555", "#111111" },
|
||||
[SchemeSel] = { "#eeeeee", "#111111" },
|
||||
[SchemeOut] = { "#eeeeee", "#eeeeee" },
|
||||
};
|
||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||
static unsigned int lines = 10;
|
||||
|
|
|
@ -7,15 +7,16 @@ static const unsigned int snap = 32; /* snap pixel */
|
|||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "Iosevka:size=12" };
|
||||
static const char dmenufont[] = "Iosevka:size=12";
|
||||
static const char col_gray1[] = "#0c0c0c";
|
||||
static const char col_gray2[] = "#1c1c1c";
|
||||
static const char dmenufont[] = "Iosevka:size=14";
|
||||
static const char col_gray0[] = "#000000";
|
||||
static const char col_gray1[] = "#111111";
|
||||
static const char col_gray2[] = "#333333";
|
||||
static const char col_gray3[] = "#555555";
|
||||
static const char col_gray4[] = "#eeeeee";
|
||||
static const char col_gray4[] = "#cccccc";
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||
[SchemeSel] = { col_gray4, col_gray2, col_gray3 },
|
||||
[SchemeNorm] = { col_gray3, col_gray0, col_gray1 },
|
||||
[SchemeSel] = { col_gray4, col_gray0, col_gray2 },
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
|
@ -58,7 +59,7 @@ static const Layout layouts[] = {
|
|||
|
||||
/* commands */
|
||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray2, "-nf", col_gray3, "-sb", col_gray3, "-sf", col_gray2, NULL };
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_gray1, "-sf", col_gray4, NULL };
|
||||
static const char *termcmd[] = { "st", NULL };
|
||||
|
||||
static Key keys[] = {
|
||||
|
|
|
@ -83,7 +83,7 @@ unsigned int tabspaces = 8;
|
|||
/* Terminal colors (16 first used in escape sequence) */
|
||||
static const char *colorname[] = {
|
||||
|
||||
"#1c1c1c", /*black*/
|
||||
"#111111", /*black*/
|
||||
"#ac4142", /*r*/
|
||||
"#90a959", /*g*/
|
||||
"#f4bf75", /*y*/
|
||||
|
@ -92,7 +92,7 @@ static const char *colorname[] = {
|
|||
"#75b5aa", /*c*/
|
||||
"#ccc", /*white*/
|
||||
|
||||
"#1c1c1c", /*black*/
|
||||
"#111111", /*black*/
|
||||
"#ac4142", /*r*/
|
||||
"#90a959", /*g*/
|
||||
"#f4bf75", /*y*/
|
||||
|
@ -102,7 +102,7 @@ static const char *colorname[] = {
|
|||
"#ccc", /*white*/
|
||||
|
||||
[255] = 0,
|
||||
[256] = "#1c1c1c", /* background */
|
||||
[256] = "#111111", /* background */
|
||||
[257] = "#d0d0d0", /* foreground */
|
||||
};
|
||||
|
||||
|
|
|
@ -10,33 +10,33 @@ endif
|
|||
let g:colors_name = "simple-dark"
|
||||
|
||||
if has("gui_running") || &t_Co == 256
|
||||
hi NonText cterm=NONE ctermfg=black ctermbg=NONE gui=NONE guifg=bg guibg=#0c0c0c
|
||||
hi Normal cterm=NONE ctermfg=247 ctermbg=NONE gui=NONE guifg=#cccccc guibg=#0c0c0c
|
||||
hi Keyword cterm=NONE ctermfg=255 ctermbg=NONE gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi Constant cterm=NONE ctermfg=252 ctermbg=NONE gui=NONE guifg=#d0d0d0 guibg=#0c0c0c
|
||||
hi String cterm=NONE ctermfg=245 ctermbg=NONE gui=NONE guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi Comment cterm=NONE ctermfg=240 ctermbg=NONE gui=NONE guifg=#585858 guibg=#0c0c0c
|
||||
hi Number cterm=NONE ctermfg=255 ctermbg=NONE gui=NONE guifg=#ff0000 guibg=#0c0c0c
|
||||
hi Error cterm=NONE ctermfg=255 ctermbg=DarkGray gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi ErrorMsg cterm=NONE ctermfg=255 ctermbg=DarkGray gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi Search cterm=NONE ctermfg=245 ctermbg=Gray gui=NONE guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi IncSearch cterm=reverse ctermfg=255 ctermbg=245 gui=reverse guifg=#eeeeee guibg=#0c0c0c
|
||||
hi DiffChange cterm=NONE ctermfg=240 ctermbg=255 gui=NONE guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi DiffText cterm=bold ctermfg=255 ctermbg=DarkGray gui=bold guifg=#bcbcbc guibg=#0c0c0c
|
||||
hi SignColumn cterm=NONE ctermfg=240 ctermbg=NONE gui=NONE guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi SpellBad cterm=undercurl ctermfg=255 ctermbg=245 gui=undercurl guifg=#eeeeee guibg=#0c0c0c
|
||||
hi SpellCap cterm=NONE ctermfg=255 ctermbg=124 gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi SpellRare cterm=NONE ctermfg=240 ctermbg=black gui=NONE guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi WildMenu cterm=NONE ctermfg=240 ctermbg=255 gui=NONE guifg=#585858 guibg=#0c0c0c
|
||||
hi NonText cterm=NONE ctermfg=black ctermbg=NONE gui=NONE guifg=bg guibg=#111111
|
||||
hi Normal cterm=NONE ctermfg=247 ctermbg=NONE gui=NONE guifg=#cccccc guibg=#111111
|
||||
hi Keyword cterm=NONE ctermfg=255 ctermbg=NONE gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi Constant cterm=NONE ctermfg=252 ctermbg=NONE gui=NONE guifg=#d0d0d0 guibg=#111111
|
||||
hi String cterm=NONE ctermfg=245 ctermbg=NONE gui=NONE guifg=#8a8a8a guibg=#111111
|
||||
hi Comment cterm=NONE ctermfg=240 ctermbg=NONE gui=NONE guifg=#585858 guibg=#111111
|
||||
hi Number cterm=NONE ctermfg=255 ctermbg=NONE gui=NONE guifg=#ff0000 guibg=#111111
|
||||
hi Error cterm=NONE ctermfg=255 ctermbg=DarkGray gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi ErrorMsg cterm=NONE ctermfg=255 ctermbg=DarkGray gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi Search cterm=NONE ctermfg=245 ctermbg=Gray gui=NONE guifg=#8a8a8a guibg=#111111
|
||||
hi IncSearch cterm=reverse ctermfg=255 ctermbg=245 gui=reverse guifg=#eeeeee guibg=#111111
|
||||
hi DiffChange cterm=NONE ctermfg=240 ctermbg=255 gui=NONE guifg=#8a8a8a guibg=#111111
|
||||
hi DiffText cterm=bold ctermfg=255 ctermbg=DarkGray gui=bold guifg=#bcbcbc guibg=#111111
|
||||
hi SignColumn cterm=NONE ctermfg=240 ctermbg=NONE gui=NONE guifg=#8a8a8a guibg=#111111
|
||||
hi SpellBad cterm=undercurl ctermfg=255 ctermbg=245 gui=undercurl guifg=#eeeeee guibg=#111111
|
||||
hi SpellCap cterm=NONE ctermfg=255 ctermbg=124 gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi SpellRare cterm=NONE ctermfg=240 ctermbg=black gui=NONE guifg=#8a8a8a guibg=#111111
|
||||
hi WildMenu cterm=NONE ctermfg=240 ctermbg=255 gui=NONE guifg=#585858 guibg=#111111
|
||||
hi Pmenu ctermfg=NONE ctermbg=235 cterm=NONE guifg=NONE guibg=#64666d gui=NONE
|
||||
hi PmenuSel ctermfg=NONE ctermbg=24 cterm=NONE guifg=NONE guibg=#204a87 gui=NONE
|
||||
hi SpecialKey cterm=NONE ctermfg=black ctermbg=255 gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi MatchParen cterm=NONE ctermfg=white ctermbg=NONE gui=NONE guifg=#eeeeee guibg=#0c0c0c
|
||||
hi CursorLine cterm=NONE ctermfg=NONE ctermbg=233 gui=NONE guifg=NONE guibg=#0c0c0c
|
||||
hi StatusLine cterm=bold,reverse ctermfg=240 ctermbg=NONE gui=bold,reverse guifg=#8a8a8a guibg=#0c0c0c
|
||||
hi StatusLineNC cterm=reverse ctermfg=240 ctermbg=NONE gui=reverse guifg=#303030 guibg=#0c0c0c
|
||||
hi Visual cterm=reverse ctermfg=250 ctermbg=NONE gui=reverse guifg=#bcbcbc guibg=#0c0c0c
|
||||
hi VertSplit cterm=NONE ctermfg=Gray ctermbg=NONE gui=NONE guifg=#0c0c0c guibg=#0c0c0c
|
||||
hi SpecialKey cterm=NONE ctermfg=black ctermbg=255 gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi MatchParen cterm=NONE ctermfg=white ctermbg=NONE gui=NONE guifg=#eeeeee guibg=#111111
|
||||
hi CursorLine cterm=NONE ctermfg=NONE ctermbg=233 gui=NONE guifg=NONE guibg=#111111
|
||||
hi StatusLine cterm=bold,reverse ctermfg=240 ctermbg=NONE gui=bold,reverse guifg=#8a8a8a guibg=#111111
|
||||
hi StatusLineNC cterm=reverse ctermfg=240 ctermbg=NONE gui=reverse guifg=#303030 guibg=#111111
|
||||
hi Visual cterm=reverse ctermfg=250 ctermbg=NONE gui=reverse guifg=#bcbcbc guibg=#111111
|
||||
hi VertSplit cterm=NONE ctermfg=Gray ctermbg=NONE gui=NONE guifg=#111111 guibg=#111111
|
||||
hi TermCursor cterm=reverse ctermfg=NONE ctermbg=NONE gui=reverse guifg=NONE guibg=NONE
|
||||
hi ColorColumn cterm=reverse ctermfg=NONE ctermbg=NONE gui=reverse guifg=NONE guibg=NONE
|
||||
hi ModeMsg cterm=NONE ctermfg=DarkGray ctermbg=NONE
|
||||
|
|
Loading…
Reference in New Issue