neovim-rose-pine/lua/rose-pine/galaxyline/theme.lua
not 317a7c8473 breaking: move to lua config (#64)
Co-authored-by: fvrests <fvrests@icloud.com>
2022-02-13 16:18:23 -06:00

19 lines
359 B
Lua

local present, galaxyline_colors = pcall(require, 'galaxyline.themes.colors')
if not present then
return
end
local p = require('rose-pine.palette')
galaxyline_colors['rose-pine'] = {
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,
}