You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This way, the 'rose' name takes the correct color when switching the background.
Is there a way to get the colors, which respect the current background setting?
And if not, how can I make a custom lualine theme using the rose-pine colors?
Thanks!
Repro
vim.o.packpath="/tmp/nvim/site"localplugins= {
rose_pine="https://github.com/rose-pine/neovim",
-- ADD OTHER PLUGINS _NECESSARY_ TO REPRODUCE THE ISSUE
}
forname, urlinpairs(plugins) dolocalinstall_path="/tmp/nvim/site/pack/test/start/" ..nameifvim.fn.isdirectory(install_path) ==0thenvim.fn.system({ "git", "clone", "--depth=1", url, install_path })
endendrequire("rose-pine").setup({
-- ADD ROSÉ PINE CONFIG THAT IS _NECESSARY_ TO REPRODUCE THE ISSUE
})
vim.cmd("colorscheme rose-pine")
The text was updated successfully, but these errors were encountered:
Neovim version (nvim -v)
NVIM v0.10.0
Terminal / multiplexer
Kitty
Describe the bug
I've done a custom theme for lualine similar to the original rose-pine them:
and then later, i set the them to lualine like
It works as expected, by whenever i change the background (light/dark), the colors don't update to the corresponding dark/light colors.
I did the same for tabby, but I don't use the colors directly, instead, I use the hl names. like:
and change the hl colors on the rose-pine setup:
This way, the 'rose' name takes the correct color when switching the background.
Is there a way to get the colors, which respect the current background setting?
And if not, how can I make a custom lualine theme using the rose-pine colors?
Thanks!
Repro
The text was updated successfully, but these errors were encountered: