From e300373fe5fa60c518a0dd3b5d946e31728c31aa Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Tue, 14 Sep 2021 06:38:07 +0800 Subject: [PATCH] background=dark for zenflesh --- colors/zenflesh-lush.lua | 2 +- colors/zenflesh.vim | 4 ++-- lua/zenbones/build/vim.lua | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/colors/zenflesh-lush.lua b/colors/zenflesh-lush.lua index d028b31..fc45182 100644 --- a/colors/zenflesh-lush.lua +++ b/colors/zenflesh-lush.lua @@ -1,4 +1,4 @@ -vim.opt.background = "light" +vim.opt.background = "dark" vim.g.colors_name = "zenflesh-lush" require("zenflesh.terminal").setup() diff --git a/colors/zenflesh.vim b/colors/zenflesh.vim index 5cce9d2..d9434a2 100644 --- a/colors/zenflesh.vim +++ b/colors/zenflesh.vim @@ -4,7 +4,7 @@ if exists('g:colors_name') set t_Co=256 endif -set background=light +set background=dark let g:colors_name = 'zenflesh' let g:terminal_color_0 = '#B6BCC1' @@ -124,7 +124,7 @@ highlight TelescopeMatching guifg=#AC75A1 guibg=NONE guisp=NONE gui=bold highlight TelescopeSelectionCaret guifg=#BB6572 guibg=#231F1D guisp=NONE gui=NONE highlight Title guifg=NONE guibg=NONE guisp=NONE gui=bold highlight Todo guifg=NONE guibg=NONE guisp=NONE gui=bold,underline -highlight Type guifg=#9C918C guibg=NONE guisp=NONE gui=NONE +highlight Type guifg=#9B918D guibg=NONE guisp=NONE gui=NONE highlight Underlined guifg=NONE guibg=NONE guisp=NONE gui=underline highlight Visual guifg=NONE guibg=#303B41 guisp=NONE gui=NONE highlight WarningMsg guifg=#B86E54 guibg=NONE guisp=NONE gui=NONE diff --git a/lua/zenbones/build/vim.lua b/lua/zenbones/build/vim.lua index fb5ab7b..86c4007 100644 --- a/lua/zenbones/build/vim.lua +++ b/lua/zenbones/build/vim.lua @@ -6,7 +6,7 @@ local template = [[if exists('g:colors_name') set t_Co=256 endif -set background=light +set background=${background} let g:colors_name = '${name}' ${termcolors} @@ -49,6 +49,7 @@ return function(name) string.format("colors/%s.vim", name), template, { + background = name == "zenbones" and "light" or "dark", name = name, termcolors = termcolors, vimcolors = vimcolors,