31 lines
966 B
Lua
31 lines
966 B
Lua
local M = {}
|
|
|
|
--- Get extension configuration
|
|
--- @param opts Config
|
|
--- @param t CyberdreamPalette
|
|
function M.get(opts, t)
|
|
opts = opts or {}
|
|
local highlights = {
|
|
LazyH1 = { fg = t.blue, bold = true },
|
|
LazyH2 = { fg = t.fg, bold = true },
|
|
LazyButton = { fg = t.fg, bg = t.bg_highlight },
|
|
LazyButtonActive = { fg = t.fg, bg = t.bg_highlight, bold = true },
|
|
|
|
LazyProgressDone = { bold = true, fg = t.magenta },
|
|
LazyProgressTodo = { bold = true, fg = t.grey },
|
|
|
|
LazyReasonCmd = { fg = t.yellow },
|
|
LazyReasonEvent = { fg = t.magenta },
|
|
LazyReasonKeys = { fg = t.cyan },
|
|
LazyReasonPlugin = { fg = t.green },
|
|
LazyReasonRequire = { fg = t.orange },
|
|
LazyReasonRuntime = { fg = t.red },
|
|
LazyReasonStart = { fg = t.blue },
|
|
LazySpecial = { fg = t.cyan },
|
|
|
|
Bold = { fg = t.grey, bold = true, italic = true },
|
|
}
|
|
return highlights
|
|
end
|
|
return M
|