Fix regression causing some wrong highlight groups in GVim.

This commit is contained in:
Lifepillar
2025-05-28 00:14:21 +02:00
parent 00e8e8de7d
commit 3773112054
5 changed files with 41 additions and 9 deletions

View File

@@ -4,9 +4,9 @@
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
" URL: https://github.com/lifepillar/vim-solarized8
" License: OSI approved MIT license
" Last Change: 2025 May 26
" Last Change: 2025 May 28
" Generated by Colortemplate v3.0.0-beta2
" Generated by Colortemplate v3.0.0-beta3
hi clear
let g:colors_name = 'solarized8_high'
@@ -416,6 +416,10 @@ if &background == 'dark'
hi SpellRare guifg=#2aa198 guibg=NONE guisp=#2aa198 gui=undercurl cterm=undercurl
hi Title guifg=#657b83 guibg=NONE guisp=NONE gui=bold cterm=bold
endif
if empty(&t_Co)
finish
endif
endif
if str2nr(&t_Co) >= 256
@@ -1518,6 +1522,10 @@ if &background == 'light'
hi SpecialKey guifg=#eee8d5 guibg=NONE guisp=NONE gui=bold cterm=bold
hi Title guifg=#93a1a1 guibg=NONE guisp=NONE gui=bold cterm=bold
endif
if empty(&t_Co)
finish
endif
endif
if str2nr(&t_Co) >= 256