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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
|
" Name: plain.vim
" Version: 0.1
" Maintainer: github.com/andreypopp
" License: The MIT License (MIT)
"
" Based on
"
" https://github.com/pbrisbin/vim-colors-off (MIT License)
"
" which in turn based on
"
" https://github.com/reedes/vim-colors-pencil (MIT License)
"
"""
hi clear
if exists('syntax on')
syntax reset
endif
let g:colors_name='plain'
let s:black = { "gui": "#222222", "cterm": "0" }
let s:medium_gray = { "gui": "#767676", "cterm": "8" }
let s:white = { "gui": "#F1F1F1", "cterm": "7" }
let s:actual_white = { "gui": "#FFFFFF", "cterm": "15" }
let s:light_black = { "gui": "#424242", "cterm": "8" }
let s:lighter_black = { "gui": "#545454", "cterm": "8" }
let s:subtle_black = { "gui": "#303030", "cterm": "11" }
let s:light_gray = { "gui": "#999999", "cterm": "12" }
let s:lighter_gray = { "gui": "#CCCCCC", "cterm": "7" }
let s:lightest_gray = { "gui": "#E5E5E5", "cterm": "13" }
let s:pink = { "gui": "#FB007A", "cterm": "5" }
let s:dark_red = { "gui": "#C30771", "cterm": "1" }
let s:light_red = { "gui": "#E32791", "cterm": "1" }
let s:orange = { "gui": "#D75F5F", "cterm": "9" }
let s:darker_blue = { "gui": "#005F87", "cterm": "4" }
let s:dark_blue = { "gui": "#008EC4", "cterm": "4" }
let s:blue = { "gui": "#20BBFC", "cterm": "4" }
let s:light_blue = { "gui": "#B6D6FD", "cterm": "4" }
let s:dark_cyan = { "gui": "#20A5BA", "cterm": "6" }
let s:light_cyan = { "gui": "#4FB8CC", "cterm": "6" }
let s:dark_green = { "gui": "#10A778", "cterm": "6" }
let s:light_green = { "gui": "#5FD7A7", "cterm": "6" }
let s:dark_purple = { "gui": "#523C79", "cterm": "5" }
let s:light_purple = { "gui": "#6855DE", "cterm": "5" }
let s:light_yellow = { "gui": "#F3E430", "cterm": "3" }
let s:dark_yellow = { "gui": "#A89C14", "cterm": "3" }
if &background == "dark"
let s:bg = s:black
let s:bg_subtle = s:light_black
let s:bg_very_subtle = s:subtle_black
let s:norm = s:lighter_gray
let s:norm_subtle = s:light_gray
let s:purple = s:light_purple
let s:cyan = s:light_cyan
let s:green = s:light_green
let s:red = s:light_red
let s:yellow = s:light_yellow
let s:visual = s:subtle_black
let s:cursor_line = s:subtle_black
let s:status_line = s:lighter_black
let s:status_line_nc = s:subtle_black
let s:constant = s:light_green
let s:comment = s:lighter_black
let s:selection = s:light_purple
let s:warning = s:yellow
else
let s:bg = s:white
let s:bg_subtle = s:lighter_gray
let s:bg_very_subtle = s:light_gray
let s:norm = s:light_black
let s:norm_subtle = s:lighter_black
let s:purple = s:dark_purple
let s:cyan = s:dark_cyan
let s:green = s:dark_green
let s:red = s:dark_red
let s:yellow = s:dark_yellow
let s:visual = s:light_blue
let s:cursor_line = s:medium_gray
let s:status_line = s:lighter_gray
let s:status_line_nc = s:lighter_black
let s:constant = s:dark_blue
let s:comment = s:light_gray
let s:selection = s:light_yellow
let s:warning = s:yellow
endif
" https://github.com/noahfrederick/vim-hemisu/
function! s:h(group, style)
execute "highlight" a:group
\ "guifg=" (has_key(a:style, "fg") ? a:style.fg.gui : "NONE")
\ "guibg=" (has_key(a:style, "bg") ? a:style.bg.gui : "NONE")
\ "guisp=" (has_key(a:style, "sp") ? a:style.sp.gui : "NONE")
\ "gui=" (has_key(a:style, "gui") ? a:style.gui : "NONE")
\ "ctermfg=" (has_key(a:style, "fg") ? a:style.fg.cterm : "NONE")
\ "ctermbg=" (has_key(a:style, "bg") ? a:style.bg.cterm : "NONE")
\ "cterm=" (has_key(a:style, "cterm") ? a:style.cterm : "NONE")
endfunction
call s:h("firstAccent", {"fg": s:cyan})
call s:h("secondAccent", {"fg": s:purple})
call s:h("Normal", {"fg": s:norm,})
call s:h("Noise", {"fg": s:norm_subtle})
call s:h("Cursor", {"bg": s:green, "fg": s:norm})
call s:h("Comment", {"fg": s:comment, "cterm": "italic"})
call s:h("Function", {"fg": s:norm, "cterm": "bold"})
hi! link Constant firstAccent
hi! link Character Constant
hi! link Number Constant
hi! link Boolean Constant
hi! link Float Constant
hi! link String Constant
"call s:h("Identifier", {"fg": s:dark_blue})
hi! link Identifier Normal
"hi! link Statement Normal
call s:h("Statement", {"fg": s:norm, "cterm": "bold"})
hi! link Conditonal Statement
hi! link Repeat Statement
hi! link Label Statement
hi! link Operator Noise
hi! link Keyword Statement
hi! link Exception Statement
"call s:h("PreProc", {"fg": s:red})
hi! link PreProc Normal
hi! link Include Statement
hi! link Define PreProc
hi! link Macro PreProc
hi! link PreCondit PreProc
"call s:h("Type", {"fg": s:purple})
hi! link Type secondAccent
hi! link StorageClass Type
hi! link Structure Noise
hi! link Typedef Noise
"call s:h("Special", {"fg": s:pink})
hi! link Special StatusLine
hi! link SpecialChar Special
hi! link Tag Special
hi! link Delimiter Special
hi! link SpecialComment Special
hi! link Debug Special
hi! link Conceal NonText
call s:h("Underlined", {"fg": s:norm, "gui": "underline", "cterm": "underline"})
call s:h("Ignore", {"fg": s:bg})
call s:h("Error", {"fg": s:red, "cterm": "bold"})
call s:h("Todo", {"fg": s:actual_white, "bg": s:black, "gui": "bold", "cterm": "bold"})
call s:h("SpecialKey", {"fg": s:subtle_black})
call s:h("NonText", {"fg": s:bg_very_subtle})
call s:h("Directory", {"fg": s:dark_green})
call s:h("ErrorMsg", {"fg": s:pink})
call s:h("IncSearch", {"bg": s:selection, "fg": s:black})
call s:h("Search", {"bg": s:selection, "fg": s:black})
call s:h("CurSearch", {"bg": s:selection, "fg": s:black})
call s:h("MoreMsg", {"fg": s:medium_gray, "cterm": "bold", "gui": "bold"})
hi! link ModeMsg MoreMsg
call s:h("LineNr", {"fg": s:medium_gray})
call s:h("CursorLineNr", {"fg": s:green, "bg": s:bg_very_subtle})
call s:h("Question", {"fg": s:red})
call s:h("VertSplit", {"bg": s:bg, "fg": s:bg_very_subtle})
call s:h("Title", {"fg": s:dark_green})
call s:h("Visual", {"bg": s:visual})
call s:h("VisualNOS", {"bg": s:bg_subtle})
call s:h("WarningMsg", {"fg": s:warning})
call s:h("WildMenu", {"fg": s:white, "bg": s:bg})
call s:h("Folded", {"fg": s:medium_gray})
call s:h("FoldColumn", {"fg": s:bg_subtle})
call s:h("DiffAdd", {"fg": s:green})
call s:h("DiffDelete", {"fg": s:red})
call s:h("DiffChange", {"fg": s:dark_yellow})
call s:h("DiffText", {"fg": s:dark_green})
call s:h("SignColumn", {"fg": s:medium_gray})
if has("gui_running")
call s:h("SpellBad", {"gui": "underline", "sp": s:red})
call s:h("SpellCap", {"gui": "underline", "sp": s:light_green})
call s:h("SpellRare", {"gui": "underline", "sp": s:pink})
call s:h("SpellLocal", {"gui": "underline", "sp": s:dark_green})
else
call s:h("SpellBad", {"cterm": "underline", "fg": s:red})
call s:h("SpellCap", {"cterm": "underline", "fg": s:light_green})
call s:h("SpellRare", {"cterm": "underline", "fg": s:pink})
call s:h("SpellLocal", {"cterm": "underline", "fg": s:dark_green})
endif
""" Help
hi link helpHyperTextEntry Title
hi link helpHyperTextJump String
""" StatusLine
call s:h("StatusLine", {"fg": s:status_line})
call s:h("StatusLineNC", {"fg": s:status_line_nc})
" Those are not standard but are useful to emphasis different parts of the
" status line.
call s:h("StatusLineOk", {"gui": "underline", "bg": s:bg, "fg": s:green})
call s:h("StatusLineError", {"gui": "underline", "bg": s:bg, "fg": s:pink})
call s:h("StatusLineWarning", {"gui": "underline", "bg": s:bg, "fg": s:warning})
call s:h("Pmenu", {"fg": s:norm, "bg": s:bg_very_subtle})
call s:h("PmenuSel", {"fg": s:green, "bg": s:bg_very_subtle, "gui": "bold"})
call s:h("PmenuSbar", {"fg": s:norm, "bg": s:bg_subtle})
call s:h("PmenuThumb", {"fg": s:norm, "bg": s:bg_subtle})
call s:h("TabLine", {"fg": s:norm_subtle, "bg": s:bg})
call s:h("TabLineSel", {"fg": s:norm, "bg": s:bg, "gui": "bold", "cterm": "bold"})
call s:h("TabLineFill", {"fg": s:norm_subtle, "bg": s:bg})
call s:h("CursorColumn", {"bg": s:bg_very_subtle})
call s:h("CursorLine", {"bg": s:cursor_line})
call s:h("ColorColumn", {"bg": s:bg_subtle})
call s:h("MatchParen", {"bg": s:bg_very_subtle, "fg": s:norm})
hi link qfLineNr secondAccent
hi link qfFileName firstAccent
call s:h("htmlH1", {"fg": s:norm})
call s:h("htmlH2", {"fg": s:norm})
call s:h("htmlH3", {"fg": s:norm})
call s:h("htmlH4", {"fg": s:norm})
call s:h("htmlH5", {"fg": s:norm})
call s:h("htmlH6", {"fg": s:norm})
call s:h("htmlBold", {"fg": s:norm})
call s:h("htmlItalic", {"fg": s:norm})
call s:h("htmlEndTag", {"fg": s:norm})
call s:h("htmlTag", {"fg": s:norm})
call s:h("htmlTagName", {"fg": s:norm})
call s:h("htmlArg", {"fg": s:norm})
call s:h("htmlError", {"fg": s:red})
" JavaScript highlighting
"
call s:h("javaScript", {"bg": s:bg, "fg": s:norm})
call s:h("javaScriptBraces", {"bg": s:bg, "fg": s:norm})
call s:h("javaScriptNumber", {"bg": s:bg, "fg": s:green})
hi link diffRemoved DiffDelete
hi link diffAdded DiffAdd
hi link TSAnnotation secondAccent
" unstable for now:
hi link TSAttribute secondAccent
hi link TSBoolean Constant
hi link TSCharacter Constant
hi link TSComment Comment
hi link TSConstructor Normal
hi link TSConditional Normal
hi link TSConstant Constant
hi link TSConstBuiltin secondAccent
hi link TSConstMacro secondAccent
hi link TSError Error
hi link TSException Error
hi link TSField Normal
hi link TSFloat Constant
hi link TSFunction Normal
hi link TSFuncBuiltin Noise
hi link TSFuncMacro secondAccent
hi link TSInclude Noise
hi link TSKeyword Noise
hi link TSKeywordFunction Noise
hi link TSLabel Noise
hi link TSMethod Normal
hi link TSNamespace Noise
hi link TSNone Noise
hi link TSNumber Constant
hi link TSOperator Normal
hi link TSParameter Statement
hi link TSParameterReference Statement
hi link TSProperty TSField
hi link TSPunctDelimiter Noise
hi link TSPunctBracket Noise
hi link TSPunctSpecial Noise
hi link TSRepeat Normal
hi link TSString Constant
hi link TSStringRegex secondAccent
hi link TSStringEscape secondAccent
hi link TSStringSpecial secondAccent
hi link TSTag Statement
hi link TSTagDelimiter Noise
hi link TSText Normal
hi link TSEmphasis Statement
hi link TSUnderline Underlined
hi link TSStrike Underlined
hi link TSTitle Statement
hi link TSLiteral Noise
hi link TSURI Constant
hi link TSType secondAccent
hi link TSTypeBuiltin secondAccent
hi link TSVariable Normal
hi link TSVariableBuiltin Normal
" nvim-lsp diagnostics
hi link LspDiagnosticsDefaultError Error
hi link LspDiagnosticsDefaultWarning WarningMsg
hi link LspDiagnosticsDefaultInformation Noise
hi link LspDiagnosticsDefaultHint Constant
" Signify, git-gutter
hi link SignifySignAdd LineNr
hi link SignifySignDelete LineNr
hi link SignifySignChange LineNr
hi link GitGutterAdd LineNr
hi link GitGutterDelete LineNr
hi link GitGutterChange LineNr
hi link GitGutterChangeDelete LineNr
hi link jsFlowTypeKeyword Statement
hi link jsFlowImportType Statement
hi link jsFunction Function
hi link jsGlobalObjects Noise
hi link jsGlobalNodeObjects Normal
hi link jsSwitchCase Constant
call s:h("jsSpreadOperator ", {"bg": s:bg, "fg": s:selection})
hi link jsReturn jsSpreadOperator
hi link jsExport jsSpreadOperator
call s:h("rustModPath ", {"fg": s:lightest_gray})
hi link rustMacro secondAccent
hi link rustKeyword Noise
hi link rustDerive secondAccent
hi link rustDeriveTrait secondAccent
hi link rustAttribute secondAccent
hi link rustLifetime secondAccent
hi link schemeSyntax Normal
hi link schemeParentheses Noise
hi link schemeIdentifier Noise
hi link lispParen Noise
hi link lispSymbol Noise
hi link shCommandSub secondAccent
hi link cFormat secondAccent
hi link nixBuiltin secondAccent
hi link nixNamespacedBuiltin secondAccent
hi link awkPatterns secondAccent
hi link awkVariables Normal
hi link awkOperator Normal
hi link awkExpression Noise
hi link awkArrayElement Noise
hi link awkFieldVars firstAccent
hi link awkSpecialPrintf secondAccent
hi link awkSpecialCharacter Noise
hi link sqlSpecial firstAccent
hi link sqlKeyword secondAccent
hi link helpExample Noise
hi link helpCommand secondAccent
hi link helpBacktick secondAccent
hi link helpSpecial Noise
hi link StorageClass Statement
hi link elmType Type
hi link xmlTag Constant
hi link xmlTagName xmlTag
hi link xmlEndTag xmlTag
hi link xmlAttrib xmlTag
hi link markdownH1 Statement
hi link markdownH2 Statement
hi link markdownH3 Statement
hi link markdownH4 Statement
hi link markdownH5 Statement
hi link markdownH6 Statement
hi link markdownListMarker Constant
hi link markdownCode Constant
hi link markdownCodeBlock Constant
hi link markdownCodeDelimiter Constant
hi link markdownHeadingDelimiter Constant
call s:h("cssBraces", {"bg": s:bg, "fg": s:selection})
hi link cssTextProp Noise
hi link cssTagName Normal
" leap-nvim support
hi link LeapMatch Normal
hi link LeapLabelPrimary Normal
hi link LeapLabelSecondary Normal
hi link LeapBackdrop Noise
" lsp ui
hi link FloatBorder Noise
|