nvim/lua/cosmic/core/theme/integrated/rosepine.lua
2021-11-12 11:30:26 -08:00

23 lines
541 B
Lua

local theme = require('rose-pine.palette')
local colors = {
white = theme.text,
bg = theme.surface,
bg_highlight = theme.surface,
bg_dark = 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