sonph / onehalf

Clean, vibrant and pleasing color schemes for Vim, Sublime Text, iTerm, gnome-terminal and more.
MIT License
1.78k stars 236 forks source link

(Vim) Wrong colors for `ctermfg` and `guifg` for `highlight SpecialKey` but not `highlight LineNr` #138

Open 0804d23d opened 2 years ago

0804d23d commented 2 years ago

Here are my minimum .vimrc:

call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')

Plug 'sonph/onehalf', { 'rtp': 'vim' }    " https://www.dunebook.com/best-vim-themes/
    let g:airline_theme='onehalflight'

call plug#end()

set number
highlight LineNr ctermfg=Gray

set list
highlight SpecialKey ctermfg=Gray guifg=#bcbcbc
set listchars=multispace:•

let macvim_skip_colorscheme=1

colorscheme onehalflight

But why is the color of listchars=multispace:• not the gray color like highlight LIneNr (in both terminal and MacVim)?