Skip to content

Commit

Permalink
fix galaxyline palette
Browse files Browse the repository at this point in the history
  • Loading branch information
mvllow committed Feb 10, 2022
1 parent 2c9bd0d commit b64956b
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions lua/rose-pine/galaxyline/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@ if not present then
return
end

local palette = require('rose-pine.palette')
local colors = palette[vim.g.rose_pine_variant or 'main']
local p = require('rose-pine.palette')

galaxyline_colors['rose-pine'] = {
bg = colors.overlay,
fg = colors.text,
fg_alt = colors.subtle,
blue = colors.foam,
cyan = colors.foam,
green = colors.muted,
magenta = colors.iris,
orange = colors.rose,
red = colors.love,
yellow = colors.gold,
bg = p.overlay,
fg = p.text,
fg_alt = p.subtle,
blue = p.foam,
cyan = p.foam,
green = p.muted,
magenta = p.iris,
orange = p.rose,
red = p.love,
yellow = p.gold,
}

0 comments on commit b64956b

Please sign in to comment.