about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
blob: b231e4e807fae6974a96891b23e78981fd770c0e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
(local colors {:bg "#202020"
               :nvimbg "#151515"
               :fg "#cbc0ab"
               :white "#e8e8d3"
               :black "#181818"
               :black2 "#101010"
               :bblack "#252525"
               :dgrey "#333333"
               :mgrey "#444444"
               :grey2 "#666666"
               :grey "#888888"
               :bgrey "#999999"
               :red "#cf6a4c"
               :orange "#fabb6e"
               :yellow "#fad07a"
               :lyellow "#ffe2a9"
               :green "#99ad6a"
               :skyblue "#8fbfdc"
               :blue "#8197bf"
               :violet "#c6b6ee"
               :magenta "#f0a0c0"})


(lambda colors.apply [colorscheme]
  (local {: highlight} (require :nvrc.macro.color))
  (vim.cmd (.. "colorscheme " colorscheme))

  ; Buffer
  (highlight :EndOfBuffer {:fg (. colors :bg)})
  (highlight :FloatBorder {:fg (. colors :blue)})
  (highlight :NormalFloat {:bg (. colors :bblack)})

  ; Pmenu
  (highlight :Pmenu {:bg (. colors :bblack)})
  (highlight :PmenuSbar {:bg (. colors :bblack)})
  (highlight :PmenuSel {:fg (. colors :orange) :bg (. colors :dgrey)})
  (highlight :PmenuThumb {:bg (. colors :skyblue)})
  (highlight :CmpItemAbbr {:fg (. colors :fg)})
  (highlight :CmpItemAbbrMatch {:fg (. colors :fg)})
  (highlight :CmpItemKind {:fg (. colors :fg)})
  (highlight :CmpItemMenu {:fg (. colors :fg)})

  ; Misc
  (highlight :StatusLine {:bg (. colors :bg)})
  (highlight :StatusLineNC {:fg (. colors :grey) :bg (. colors :black) :underline true})
  (highlight :TabLine {:fg (. colors :fg) :bg (. colors :mgrey)})
  (highlight :TabLineFill {:fg (. colors :fg) :bg (. colors :bg)})
  (highlight :TabLineSel {:fg (. colors :fg) :bg (. colors :grey2)})
  (highlight :LineNr {:fg (. colors :grey)})
  (highlight :NvimInternalError {:fg (. colors :red)})
  (highlight :VertSplit {:fg (. colors :grey2)})

  ; LSP
  (highlight :DiagnosticError {:fg (. colors :red)})
  (highlight :DiagnosticWarn {:fg (. colors :yellow)})
  (highlight :DiagnosticInformation {:fg (. colors :green)})
  (highlight :DiagnosticHint {:fg (. colors :grey)})
  (highlight :LspReferenceRead {:underline true})
  (highlight :LspReferenceText {:underline true})
  (highlight :LspReferenceWrite {:underline true})
  (highlight :LspSemantic_type {:link :Include})
  (highlight :LspSemantic_function {:link :Identifier})
  (highlight :LspSemantic_struct {:link :Number})
  (highlight :LspSemantic_variable {:bg :gray})
  (highlight :LspSemantic_keyword {:link :Structure})

  ; Lir
  (highlight :LirFloatNormal {:bg (. colors :black)})
  (highlight :LirDir {:fg (. colors :skyblue)})
  (highlight :LirSymLink {:fg (. colors :grey)})
  (highlight :LirEmptyDirText {:fg (. colors :blue)})
  (highlight :LirFloatCurdirWindowNormal {:bg (. colors :black)})
  (highlight :LirFloatCurdirWindowDirName {:fg (. colors :skyblue)}))

colors