atelierbram / Base2Tone-vim

Base2Tone - duotone - Themes for Vim
MIT License
124 stars 5 forks source link

Matching paren/braces #7

Closed imjasonmiller closed 4 years ago

imjasonmiller commented 4 years ago

Hi Bram!

I just noticed that the colors for matching braces or parentheses make the cursor difficult to see in neovim as illustrated below, with my cursor being on the left side in both cases.

call <sid>hi("MatchParen",    s:gui00, s:gui03, s:cterm00, s:cterm03,  "")
Before After
image image

I'm not sure whether this is a problem on my end, but after changing MatchParen to the following it seems to be easier to see:

call <sid>hi("MatchParen",    s:gui0A, s:gui02, s:cterm0A, s:cterm02,  "")

Is a pull request welcome?

atelierbram commented 4 years ago

Thanks for this, I don't think this is solely a problem on your end, as far as I can see; it makes sense having a bit more contrast for these matching parens/bracens (, although it never bothered me to be honest). I just pushed your proposed edits, also for light themes. Please let me know if this doesn't work for you.

imjasonmiller commented 4 years ago

Thank you! :+1: More than happy to be of help.