Tsuzat / NeoSolarized.nvim

NeoSolarized colorscheme for NeoVim with full transparency
Apache License 2.0
174 stars 16 forks source link

switching style dynamically #15

Closed eprst closed 11 months ago

eprst commented 11 months ago

Hi Is there any way to dynamically change the style (dark/light)? :set background=dark/light doesn't work. Thanks

Tsuzat commented 11 months ago

Hi @eprst , You can change the theme using :set background=light

https://github.com/Tsuzat/NeoSolarized.nvim/assets/70003855/bbb48627-3d0a-4110-9660-753828c6ecd7

I'll suggest to have transparency disabled. otherwise you'll feel that it's not woking, although, it still is working.

required("NeoSolarized").setup {
  transparent = false,
}
eprst commented 11 months ago

Yes, transparent=false was the key. Thank you!