overcache / NeoSolarized

NeoSolarized: A fixed solarized colorscheme for better truecolor support.
MIT License
518 stars 100 forks source link

Some colors are wrong on neovim 0.10 #34

Open lucc opened 2 months ago

lucc commented 2 months ago

With the release of neovim 0.10 the default colorscheme in neovim was changed. It seems that NeoSolarized picks up some of the default colors as some colors do not match the solarized theme when using neovim v0.10.

with neovim 0.10:

2024-05-21-121920_508x296_scrot

with neovim 0.9.5:

2024-05-21-122037_508x296_scrot

xanderdunn commented 2 months ago

Same problem here

hasufell commented 1 month ago

I switched to https://github.com/maxmx03/solarized.nvim

Then I had to adjust some settings to make it look the same:

vim.o.background = 'dark'

require('solarized').setup({
    transparent = false,
    palette = 'solarized',
    styles = {
      keywords = { bold = false },
    },
    highlights = {
      KeyWord = { fg = '#859900' },
      Delimiter = { fg = '#dc322f' },
      Number = { fg = '#2aa198' }
    },
})

vim.cmd.colorscheme 'solarized'