fix galaxyline palette

This commit is contained in:
mvllow 2022-02-10 10:17:27 -06:00
commit cf5f7d88f4

View file

@ -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,
} }