robertmeta / nofrils

An extremely minimalist colorscheme, even opting out of the second L in frills
MIT License
324 stars 44 forks source link

GUI comment colours are not faded #10

Closed aktau closed 7 years ago

aktau commented 8 years ago

Hi!

I'm a Neovim user who sets:

if has('nvim')
  set termguicolors
endif

See https://github.com/neovim/neovim/pull/4690. It basically makes Neovim output 24-bit colours to terminals that support it. Since Vim has always allowed specifying full 24-bit hex codes for guifg and guibg, those are co-opted by Neovim in termguicolors=true mode. However, in (fake) GUI mode, nofrils doesn't differentiate comments and non-comments. And that's a little bit too nofrils for me ;).

" nofrils-dark
    hi Comment term=NONE cterm=NONE ctermfg=242 ctermbg=235 gui=NONE guifg=#eeeeee guibg=#262626
    hi Normal term=NONE cterm=NONE ctermfg=255 ctermbg=235 gui=NONE guifg=#eeeeee guibg=#262626

Notice how guibg and guifg are the same for both lines, but not ctermfg and ctermbg.

I'm not sure which color you meant for these exactly, so I'll leave it up to you :). Thanks for the colourscheme!