nvim/lua/cosmic/core/theme/integrated/catppuccin.lua
2021-11-12 09:27:03 -08:00

24 lines
686 B
Lua

local theme = require('catppuccin.core.color_palette')
local colors = {
white = theme.catppuccin0,
bg = theme.catppuccin12,
bg_highlight = theme.catppuccin15,
bg_dark = theme.catppuccin14,
normal = theme.catppuccin3,
insert = theme.catppuccin4,
command = theme.catppuccin5,
visual = theme.catppuccin8,
replace = theme.catppuccin2,
diffAdd = theme.catppuccin9,
diffModified = theme.catppuccin7,
diffDeleted = theme.catppuccin5,
trace = theme.catppuccin5,
hint = theme.catppuccin10,
info = theme.catppuccin7,
error = theme.catppuccin2,
warn = theme.catppuccin5,
floatBorder = theme.catppuccin12,
selection_caret = theme.catppuccin3,
}
return colors