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_low'
@@ -411,6 +411,10 @@ if &background == 'dark'
hi SpecialKey guifg=#073642 guibg=NONE guisp=NONE gui=reverse cterm=reverse
hi Title guifg=#586e75 guibg=NONE guisp=NONE gui=bold cterm=bold
endif
if empty(&t_Co)
finish
endif
endif
if str2nr(&t_Co) >= 256
@@ -1510,6 +1514,10 @@ if &background == 'light'
hi SpellRare guifg=#2aa198 guibg=NONE guisp=#2aa198 gui=undercurl cterm=undercurl
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