Ralf Schmitt wrote:
Hello all,
I'm on vim7 with 'syntax on' and 'colorscheme morning'.
The colors used by syntax highlighting for c / c++ and
java are great but on php or perl I've got a lot of Cyan
in it. I don't know why but reading Cyan Text is horror for me
and vim highlights a lot in php and perl with that color.
I've turned all Cyan to Black in colors/morning.vim but that
didn't help.
please let me know how I can get rid of that cyan in this
colorscheme.
regards
Ralf
If they stay cyan after replacing cyan by black in the colorscheme and
reloading the syntax colors, then I can imagine two possibilities:
- Either the cyan colour is mentioned by another name like, e.g., "aqua"
or "#99FFFF"
- Or the highlight group in question is not mentioned in the colorscheme
at all, and the default colour (compiled in Vim) for that group is cyan.
Try to find out the name of the highlight group in question, and whether
it is "linked" to a group of another name.
See
:help :highlight
:help synID()
:help synIDattr()
:help synIDtrans()
Best regards,
Tony.