I'm using coc.nvim plugin for C++ in my vim editor, here it's showing error but its colors hurt my eyes, I've been searching for solution but still don't know how to customize the colors
How to change coc.nvim floating window colors?
11.1k views Asked by Hoang Minh At
2
To choose another background color you can use
And to change the foreground (text) color of the error message use
where
color
is either a color name or a color number (generally from 0 to 15).To read more on color values
GUI
If you want to use a GUI for vim, you should consider using
guibg
andguifg
arguments in addition toctermbg
andctermfg
.guifg
andguibg
value is either a color name or a hex-encoded RGB value (ex.#ff0000
for red).GUI color values can be found here