21 lines
518 B
Lua
21 lines
518 B
Lua
local M = {}
|
|
|
|
--- Get extension configuration
|
|
--- @param opts Config
|
|
--- @param t CyberdreamPalette
|
|
function M.get(opts, t)
|
|
opts = opts or {}
|
|
local highlights = {
|
|
HeirlineInactive = { bg = t.grey },
|
|
HeirlineNormal = { bg = t.blue },
|
|
HeirlineVisual = { bg = t.magenta },
|
|
HeirlineReplace = { bg = t.red },
|
|
HeirlineCommand = { bg = t.yellow },
|
|
HeirlineInsert = { bg = t.green },
|
|
HeirlineTerminal = { bg = t.cyan },
|
|
}
|
|
|
|
return highlights
|
|
end
|
|
return M
|