nvim/lua/cosmic/core/theme/integrated/rosepine.lua
2021-11-12 13:07:40 -08:00

23 lines
547 B
Lua

local theme = require('rose-pine.palette')
local colors = {
white = theme.text,
bg = theme.surface,
bg_highlight = theme.surface,
statusline_bg = theme.base,
normal = theme.pine,
insert = theme.foam,
command = theme.gold,
visual = theme.iris,
replace = theme.rose,
diffAdd = theme.foam,
diffModified = theme.pine,
diffDeleted = theme.rose,
trace = theme.rose,
hint = theme.pine,
info = theme.foam,
error = theme.love,
warn = theme.rose,
floatBorder = theme.rose,
selection_caret = theme.iris,
}
return colors