24 lines
692 B
Lua
24 lines
692 B
Lua
local theme = require('catppuccin.core.color_palette')
|
|
|
|
local colors = {
|
|
white = theme.catppuccin0,
|
|
bg = theme.catppuccin12,
|
|
bg_highlight = theme.catppuccin15,
|
|
statusline_bg = 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
|