nvim/lua/cosmic/theme/integrated/catppuccin.lua
2022-01-17 15:06:08 -08:00

24 lines
542 B
Lua

local theme = require('catppuccin.core.color_palette')
local colors = {
white = theme.white,
bg = theme.gray2,
bg_highlight = theme.black4,
normal = theme.maroon,
insert = theme.pink,
command = theme.red,
visual = theme.yellow,
replace = theme.flamingo,
diffAdd = theme.blue,
diffModified = theme.teal,
diffDeleted = theme.red,
trace = theme.red,
hint = theme.white,
info = theme.teal,
error = theme.flamingo,
warn = theme.red,
floatBorder = theme.black4,
selection_caret = theme.maroon,
}
return colors