vim-airline / vim-airline-themes

A collection of themes for vim-airline
MIT License
2.05k stars 350 forks source link

How to change text colors? #95

Closed iamsubhranil closed 7 years ago

iamsubhranil commented 7 years ago

Hey, how do I change the color of NORMAL and line count texts(foreground color)? Also, how to convert 16 colors to 256 colorspace? i.e. I'm currently doing let s:cterm01 = "00" how to change it do let s:cterm01 = 234(or whatever equivalent number is)?

chrisbra commented 7 years ago

I don't understand. You can change the normal highlighting via :hi Normal ... The colors of the statusline are pretty much defined by the airline-theme you are using. I don't understand what you mean with :let s:cterm01...

iamsubhranil commented 7 years ago

I'm talking about the themes, where I'm defining colors. I'm trying to port base16 darktooth, but enable to set the NORMAL and line count text colors from inside the base16_darktooth.vim file. How to do that?

chrisbra commented 7 years ago

the NORMAL should be highlighting group airline_a (bold) and the wordcount is airline_z highlighting group.

iamsubhranil commented 7 years ago

Can you link a theme as an example?