Dotfiles/vim/theme/cyberqueer.nvim/lua/cyberdream/extensions/alpha.lua

19 lines
422 B
Lua

local M = {}
--- Get extension configuration
--- @param opts Config
--- @param t CyberdreamPalette
function M.get(opts, t)
opts = opts or {}
local highlights = {
AlphaShortcut = { fg = t.orange },
AlphaHeader = { fg = t.purple },
AlphaHeaderLabel = { fg = t.orange },
AlphaFooter = { fg = t.cyan },
AlphaButtons = { fg = t.blue },
}
return highlights
end
return M