|
| 1 | +local function callback() |
| 2 | + return { |
| 3 | + LazyH1 = { fg = C.ui.base, bg = C.ui.accent, bold = true, italic = true }, -- home button |
| 4 | + LazyH2 = { fg = C.ui.accent, bold = true }, -- titles |
| 5 | + LazyComment = { link = "Comment" }, |
| 6 | + LazyNormal = { link = "NormalFloat" }, |
| 7 | + LazyCommit = { fg = C.ui.text_inactive, bold = true }, -- commit ref |
| 8 | + LazyCommitIssue = { fg = C.ui.yellow }, |
| 9 | + LazyCommitType = { fg = C.ui.accent, bold = true }, -- conventional commit type |
| 10 | + LazyCommitScope = { italic = true }, -- conventional commit scope |
| 11 | + LazyDimmed = { link = "Conceal" }, -- property |
| 12 | + LazyProp = { link = "Conceal" }, -- property |
| 13 | + LazyValue = { fg = C.ui.green }, -- value of a property |
| 14 | + LazyNoCond = { link = "DiagnosticWarn" }, -- unloaded icon for a plugin where `cond()` was false |
| 15 | + LazyLocal = { fg = C.ui.yellow }, |
| 16 | + LazyProgressDone = { fg = C.ui.green }, -- progress bar done |
| 17 | + LazyProgressTodo = { link = "LineNr" }, -- progress bar todo |
| 18 | + LazySpecial = { fg = C.ui.blue }, |
| 19 | + LazyReasonRuntime = { fg = C.ui.yellow }, |
| 20 | + LazyReasonPlugin = { fg = C.ui.blue }, |
| 21 | + LazyReasonEvent = { fg = C.ui.yellow }, |
| 22 | + LazyReasonKeys = { fg = C.ui.purple }, |
| 23 | + LazyReasonStart = { fg = C.ui.red }, |
| 24 | + LazyReasonSource = { fg = C.ui.green }, |
| 25 | + LazyReasonFt = { fg = C.ui.cyan }, |
| 26 | + LazyReasonCmd = { fg = C.ui.orange }, |
| 27 | + LazyReasonImport = { fg = C.ui.text }, |
| 28 | + LazyButton = { link = "CursorLine" }, |
| 29 | + LazyButtonActive = { link = "Visual" }, |
| 30 | + LazyTaskOutput = { fg = C.ui.text }, -- task output |
| 31 | + LazyTaskError = { fg = C.ui.red }, -- task errors |
| 32 | + LazyDir = { fg = C.ui.orange }, -- directory |
| 33 | + LazyUrl = { fg = C.ui.blue, underline = true }, -- url |
| 34 | + } |
| 35 | +end |
| 36 | + |
| 37 | +return callback |
0 commit comments