nvim/lua/cosmic/theme/integrated/rose-pine.lua

23 lines
518 B
Lua

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