I am using the desert colorscheme, which uses white text on orange background for highlighting search hits. The same pattern is used for the selected entry in the quickfix window.
White on orange is not very readable. How do I change that in .vimrc?
Edit: Thanks for the fast reply, for the desert scheme I am now using the following search highlight modification:
highlight Search guibg='Purple' guifg='NONE'
Purple is quite easy to detect visually and it is IMHO not used for syntax coloring in the desert scheme.
Look at
$VIMRUNTIME/colors/desert.vim. Color mappings are defined there with thehi[ghlight]command. The search highlighting is defined asfor the GUI and
for terminals.
You can override this setting in your
.vimrcusing the same command after you select yourcolorscheme. Type:h hifor help.