Following is my configuration for solarized colorscheme.
let g:solarized_termcolors=256
set t_Co=256
set background=dark
colorscheme solarized
But the background color is not dark blue, but dark or grey, similar like that.
I have tried remove let g:solarized_termcolors=256
, remove set t_Co=256
, add let g:solarized_termcolors=16
or add set t_Co=16
. But still display the wrong background color.
How can I do any config to change that incorrect background color to darkblue ?
Again, I recommend just changing your terminal colors to Solarized values either manually or via one of the many terminal schemes available for import.
– Endoenzyme234
and235
of 256 colors mode in my terminal emulator displayed grey. I changed the color ofbase03
from234
andbase02
from235
toNONE
in the scriptsolarized.vim
and changed the background color of my terminal emulator to darkblue. Then, bingo, I got what I want. – Wandy