background=dark for zenflesh

This commit is contained in:
Michael Chris Lopez
2021-09-14 06:38:07 +08:00
parent c728d71fa0
commit e300373fe5
3 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
vim.opt.background = "light" vim.opt.background = "dark"
vim.g.colors_name = "zenflesh-lush" vim.g.colors_name = "zenflesh-lush"
require("zenflesh.terminal").setup() require("zenflesh.terminal").setup()

View File

@@ -4,7 +4,7 @@ if exists('g:colors_name')
set t_Co=256 set t_Co=256
endif endif
set background=light set background=dark
let g:colors_name = 'zenflesh' let g:colors_name = 'zenflesh'
let g:terminal_color_0 = '#B6BCC1' 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 TelescopeSelectionCaret guifg=#BB6572 guibg=#231F1D guisp=NONE gui=NONE
highlight Title guifg=NONE guibg=NONE guisp=NONE gui=bold highlight Title guifg=NONE guibg=NONE guisp=NONE gui=bold
highlight Todo guifg=NONE guibg=NONE guisp=NONE gui=bold,underline 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 Underlined guifg=NONE guibg=NONE guisp=NONE gui=underline
highlight Visual guifg=NONE guibg=#303B41 guisp=NONE gui=NONE highlight Visual guifg=NONE guibg=#303B41 guisp=NONE gui=NONE
highlight WarningMsg guifg=#B86E54 guibg=NONE guisp=NONE gui=NONE highlight WarningMsg guifg=#B86E54 guibg=NONE guisp=NONE gui=NONE

View File

@@ -6,7 +6,7 @@ local template = [[if exists('g:colors_name')
set t_Co=256 set t_Co=256
endif endif
set background=light set background=${background}
let g:colors_name = '${name}' let g:colors_name = '${name}'
${termcolors} ${termcolors}
@@ -49,6 +49,7 @@ return function(name)
string.format("colors/%s.vim", name), string.format("colors/%s.vim", name),
template, template,
{ {
background = name == "zenbones" and "light" or "dark",
name = name, name = name,
termcolors = termcolors, termcolors = termcolors,
vimcolors = vimcolors, vimcolors = vimcolors,