mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
fix galaxyline palette
This commit is contained in:
parent
d0664111ac
commit
cf5f7d88f4
1 changed files with 11 additions and 12 deletions
|
|
@ -3,18 +3,17 @@ if not present then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local palette = require('rose-pine.palette')
|
local p = require('rose-pine.palette')
|
||||||
local colors = palette[vim.g.rose_pine_variant or 'main']
|
|
||||||
|
|
||||||
galaxyline_colors['rose-pine'] = {
|
galaxyline_colors['rose-pine'] = {
|
||||||
bg = colors.overlay,
|
bg = p.overlay,
|
||||||
fg = colors.text,
|
fg = p.text,
|
||||||
fg_alt = colors.subtle,
|
fg_alt = p.subtle,
|
||||||
blue = colors.foam,
|
blue = p.foam,
|
||||||
cyan = colors.foam,
|
cyan = p.foam,
|
||||||
green = colors.muted,
|
green = p.muted,
|
||||||
magenta = colors.iris,
|
magenta = p.iris,
|
||||||
orange = colors.rose,
|
orange = p.rose,
|
||||||
red = colors.love,
|
red = p.love,
|
||||||
yellow = colors.gold,
|
yellow = p.gold,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue