Revert "tempfix: galaxyline breaks in LunarVim"

This reverts commit 4bd3cf12fa.
This commit is contained in:
mvllow 2021-07-13 20:35:46 -05:00
commit ebd10a0273

View file

@ -17,37 +17,6 @@ local palette = {
none = 'NONE',
}
local colors = {
base = '#191724',
surface = '#1f1d2e',
overlay = '#26233a',
inactive = '#555169',
subtle = '#6e6a86',
text = '#e0def4',
love = '#eb6f92',
gold = '#f6c177',
rose = '#ebbcba',
pine = '#31748f',
foam = '#9ccfd8',
iris = '#c4a7e7',
highlight = '#2a2837',
highlight_inactive = '#211f2d',
highlight_overlay = '#3a384a',
none = 'NONE',
alt_bg = palette.surface,
black = palette.overlay,
red = palette.love,
green = palette.pine,
orange = palette.gold,
yellow = palette.gold,
blue = palette.foam,
purple = palette.iris,
magenta = palette.iris,
cyan = palette.rose,
white = palette.text,
}
if vim.g.rose_pine_variant == 'dawn' then
palette = {
base = '#faf4ed',
@ -66,36 +35,6 @@ if vim.g.rose_pine_variant == 'dawn' then
highlight_inactive = '#f2ede9',
highlight_overlay = '#e4dfde',
}
colors = {
base = '#faf4ed',
surface = '#fffaf3',
overlay = '#f2e9de',
inactive = '#9893a5',
subtle = '#6e6a86',
text = '#575279',
love = '#b4637a',
gold = '#ea9d34',
rose = '#d7827e',
pine = '#286983',
foam = '#56949f',
iris = '#907aa9',
highlight = '#eee9e6',
highlight_inactive = '#f2ede9',
highlight_overlay = '#e4dfde',
alt_bg = palette.surface,
black = palette.overlay,
red = palette.love,
green = palette.pine,
orange = palette.gold,
yellow = palette.gold,
blue = palette.foam,
purple = palette.iris,
magenta = palette.iris,
cyan = palette.rose,
white = palette.text,
}
elseif vim.g.rose_pine_variant == 'moon' then
palette = {
base = '#232136',
@ -114,36 +53,6 @@ elseif vim.g.rose_pine_variant == 'moon' then
highlight_inactive = '#2a283d',
highlight_overlay = '#3f3c53',
}
colors = {
base = '#232136',
surface = '#2a273f',
overlay = '#393552',
inactive = '#59546d',
subtle = '#817c9c',
text = '#e0def4',
love = '#eb6f92',
gold = '#f6c177',
rose = '#ea9a97',
pine = '#3e8fb0',
foam = '#9ccfd8',
iris = '#c4a7e7',
highlight = '#312f44',
highlight_inactive = '#2a283d',
highlight_overlay = '#3f3c53',
alt_bg = palette.surface,
black = palette.overlay,
red = palette.love,
green = palette.pine,
orange = palette.gold,
yellow = palette.gold,
blue = palette.foam,
purple = palette.iris,
magenta = palette.iris,
cyan = palette.rose,
white = palette.text,
}
end
return colors
return palette