Fix the visual highlighted search text color so it's visible, underline matched parenthesis instead of changing the color, and improve the css/sass highlight colors

This commit is contained in:
Kevin MacMartin 2024-03-11 18:10:57 -04:00
parent facbd15523
commit abd1ba7992

View file

@ -76,13 +76,13 @@ endfun
call s:C("LineNr",g:cGray4,"","bold")
"selected text
call s:C("Visual","",g:cDarkBg,"standout")
call s:C("Visual","","","standout")
"vertical split divider
call s:C("VertSplit",g:cGray1,"","")
"matched parenthesis
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold")
call s:C("MatchParen","","","underline,bold")
"whitespace
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
@ -166,6 +166,11 @@ endfun
"coffeeScript
hi! link coffeeRegExp javaScriptRegexpString
"css/sass
call s:C("cssBraces",g:cBlue,"","")
call s:C("sassDefinition",g:cRed,"","bold")
call s:C("sassClassChar",g:cYellow,"","bold")
"dosini
hi! link dosiniLabel Function