marleyvim/nvim/lua/colors.lua
2024-12-15 11:18:47 -08:00

24 lines
544 B
Lua

---@type {[string]:"azure" | "blue" | "cyan" | "green" | "grey" | "orange" | "purple" | "red" | "yellow"}
return {
around = 'purple',
buffers = 'cyan',
change = 'cyan',
delete = 'red',
diagnostics = 'green',
explorer = 'yellow',
fold = 'purple',
format = 'purple',
git = 'orange',
go_to = 'cyan',
inner = 'purple',
notifications = 'orange',
replace = 'blue',
search = 'green',
sessions = 'azure',
spell = 'red',
surround = 'purple',
ui = 'green',
visual = 'purple',
window = 'blue',
yank = 'yellow',
}