summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups/lazy.lua
blob: 850f2f89808a10446011eabee3e3970c2382134b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
local M = {}

function M.highlight(palette, opts)
  return {
    LazyButton = { fg = palette.fg },
    LazyButtonActive = { fg = palette.orange, bg = palette.accent },
    LazyComment = { fg = palette.medium_gray },
    LazyCommit = { fg = palette.white },
    LazyCommitIssue = { fg = palette.red },
    LazyCommitScope = { fg = palette.cyan },
    LazyCommitType = { fg = palette.cyan },
    LazyDir = { fg = palette.gray_blue },
    LazyH1 = { fg = palette.orange },
    LazyH2 = { fg = palette.fg },
    LazyNoCond = { fg = palette.yellow },
    LazyNormal = { fg = palette.fg },
    LazyProgressDone = { fg = palette.cursor_fg },
    LazyProgressTodo = { fg = palette.gray },
    LazyProp = { fg = palette.fg },
    LazyReasonCmd = { fg = palette.fg },
    LazyReasonEvent = { fg = palette.fg },
    LazyReasonFt = { fg = palette.green },
    LazyReasonImport = { fg = palette.fg },
    LazyReasonKeys = { fg = palette.gray_blue },
    LazyReasonPlugin = { fg = palette.fg },
    LazyReasonRuntime = { fg = palette.fg },
    LazyReasonSource = { fg = palette.fg },
    LazyReasonStart = { fg = palette.fg },
    LazySpecial = { fg = palette.fg },
    LazyTaskError = { fg = palette.red },
    LazyTaskOutput = { fg = palette.gray },
    LazyUrl = { fg = palette.gray_blue },
    LazyValue = { fg = palette.medium_gray_blue },
  }
end

return M