tangled
alpha
login
or
join now
pdewey.com
/
darkearth-nvim
0
fork
atom
A dark and earthy colorscheme for Neovim. (mirror)
github.com/ptdewey/darkearth-nvim
neovim
neovim-colorscheme
fennel
0
fork
atom
overview
issues
pulls
pipelines
refactor: changed output file to lua
ptdewey
2 years ago
494df30e
d4445e57
+474
-476
4 changed files
expand all
collapse all
unified
split
build.sh
colors
darkearth.lua
darkearth.vim
shipwright_build.lua
+1
-18
build.sh
···
1
1
#!/usr/bin/env bash
2
2
3
3
-
# fix build issue when using nix
4
3
export LUA_PATH=./lush_theme/darkearth.lua
5
4
6
5
nvim --headless +Shipwright +qa
7
6
8
8
-
cat << x0 > ./colors/darkearth.vim
9
9
-
set background=dark
10
10
-
hi! clear
11
11
-
12
12
-
if exists("syntax_on")
13
13
-
syntax reset
14
14
-
endif
15
15
-
16
16
-
let colors_name="darkearth"
17
17
-
let g:colors_name="darkearth"
18
18
-
19
19
-
$(sed 's/^highlight/hi/' ./colors/darkearth.tmp | sort)
20
20
-
x0
21
21
-
22
22
-
rm ./colors/darkearth.tmp
23
23
-
24
24
-
echo "DarkEarth vim build complete"
7
7
+
echo "DarkEarth build complete"
+462
colors/darkearth.lua
···
1
1
+
-- colors/colorscheme.lua
2
2
+
3
3
+
local colors = {
4
4
+
-- content here will not be touched
5
5
+
-- PATCH_OPEN
6
6
+
Normal = {fg = "#D7C484", bg = "#24211E"},
7
7
+
CmpItemKindText = {link = "Normal"},
8
8
+
CmpItemKindVariable = {link = "Normal"},
9
9
+
FzfLuaBorder = {link = "Normal"},
10
10
+
FzfLuaNormal = {link = "Normal"},
11
11
+
NvimSpacing = {link = "Normal"},
12
12
+
javaScript = {link = "Normal"},
13
13
+
lessVariableValue = {link = "Normal"},
14
14
+
["@boolean"] = {link = "Boolean"},
15
15
+
ColorColumn = {bg = "#24211E"},
16
16
+
Comment = {fg = "#6E665E", italic = true},
17
17
+
CtrlPLinePre = {link = "Comment"},
18
18
+
LspCodeLens = {link = "Comment"},
19
19
+
NERDTreeHelp = {link = "Comment"},
20
20
+
helpSectionDelim = {link = "Comment"},
21
21
+
["@comment"] = {link = "Comment"},
22
22
+
["@html.comment"] = {link = "Comment"},
23
23
+
["@lsp.type.comment"] = {link = "Comment"},
24
24
+
["@text.literal"] = {link = "Comment"},
25
25
+
Constant = {fg = "#BB7844"},
26
26
+
Character = {link = "Constant"},
27
27
+
rubyConstant = {link = "Constant"},
28
28
+
vimHiAttrib = {link = "Constant"},
29
29
+
["@constant"] = {link = "Constant"},
30
30
+
["@lsp.type.enumMember"] = {link = "Constant"},
31
31
+
Cursor = {fg = "#212121", bg = "#675642"},
32
32
+
FzfLuaCursor = {link = "Cursor"},
33
33
+
CursorColumn = {bg = "#221F1C"},
34
34
+
CursorLine = {bg = "#221F1C"},
35
35
+
FzfLuaCursorLine = {link = "CursorLine"},
36
36
+
CursorLineNr = {fg = "#77824A", bg = "#221F1C", bold = true},
37
37
+
FzfLuaCursorLineNr = {link = "CursorLineNr"},
38
38
+
DefLineNr = {fg = "#736659", bg = "#221F1C"},
39
39
+
LineNrAbove = {link = "DefLineNr"},
40
40
+
LineNrBelow = {link = "DefLineNr"},
41
41
+
Delimiter = {fg = "#80744D"},
42
42
+
MyParentheses = {link = "Delimiter"},
43
43
+
NvimArrow = {link = "Delimiter"},
44
44
+
NvimColon = {link = "Delimiter"},
45
45
+
NvimComma = {link = "Delimiter"},
46
46
+
NvimParenthesis = {link = "Delimiter"},
47
47
+
javaScriptBraces = {link = "Delimiter"},
48
48
+
markdownLinkDelimiter = {link = "Delimiter"},
49
49
+
markdownURLDelimiter = {link = "Delimiter"},
50
50
+
vimContinue = {link = "Delimiter"},
51
51
+
vimSetSep = {link = "Delimiter"},
52
52
+
["@punctuation"] = {link = "Delimiter"},
53
53
+
DelimiterLight = {fg = "#D7C484"},
54
54
+
["@punctuation.bracket"] = {link = "DelimiterLight"},
55
55
+
DiagnosticDeprecated = {sp = "#675642", strikethrough = true},
56
56
+
DiagnosticError = {fg = "#B36B42"},
57
57
+
DiagnosticErrorFloating = {link = "DiagnosticError"},
58
58
+
DiagnosticFloatingError = {link = "DiagnosticError"},
59
59
+
DiagnosticHint = {fg = "#5F865F"},
60
60
+
DiagnosticFloatingHint = {link = "DiagnosticHint"},
61
61
+
DiagnosticHintFloating = {fg = "#77824A"},
62
62
+
DiagnosticInfo = {fg = "#5F865F"},
63
63
+
DiagnosticFloatingInfo = {link = "DiagnosticInfo"},
64
64
+
DiagnosticOk = {fg = "#77824A"},
65
65
+
DiagnosticFloatingOk = {link = "DiagnosticOk"},
66
66
+
DiagnosticSignOk = {link = "DiagnosticOk"},
67
67
+
DiagnosticVirtualTextOk = {link = "DiagnosticOk"},
68
68
+
DiagnosticSignError = {fg = "#B36B42", bg = "#221F1C"},
69
69
+
DiagnosticSignHint = {fg = "#5F865F", bg = "#221F1C"},
70
70
+
DiagnosticSignInfo = {fg = "#77824A", bg = "#221F1C"},
71
71
+
DiagnosticSignWarn = {fg = "#675642", bg = "#221F1C"},
72
72
+
DiagnosticUnderlineError = {underline = true},
73
73
+
DiagnosticUnderlineHint = {underline = true},
74
74
+
DiagnosticUnderlineInfo = {underline = true},
75
75
+
DiagnosticUnderlineOk = {underline = true},
76
76
+
DiagnosticUnderlineWarn = {underline = true},
77
77
+
DiagnosticUnnecessary = {fg = "#6B6461"},
78
78
+
DiagnosticVirtualTextError = {fg = "#B36B42"},
79
79
+
DiagnosticVirtualTextHint = {fg = "#77824A", bg = "#24211E"},
80
80
+
DiagnosticVirtualTextInfo = {fg = "#77824A", bg = "#24211E"},
81
81
+
DiagnosticVirtualTextWarn = {fg = "#675642", bg = "#24211E"},
82
82
+
DiagnosticVirtualTextWarning = {fg = "#D7C484"},
83
83
+
DiagnosticWarn = {fg = "#675642"},
84
84
+
CmpItemAbbrDeprecated = {link = "DiagnosticWarn"},
85
85
+
DiagnosticFloatingWarn = {link = "DiagnosticWarn"},
86
86
+
DiagnosticWarning = {fg = "#B36B42"},
87
87
+
DiagnosticFloatingWarning = {link = "DiagnosticWarning"},
88
88
+
DiagnosticWarningFloating = {fg = "#D7C484"},
89
89
+
DiffAdd = {fg = "#212121", bg = "#5F865F"},
90
90
+
["@text.diff.add"] = {link = "DiffAdd"},
91
91
+
DiffAdded = {fg = "#5F865F", bg = "#221F1C"},
92
92
+
DiffChange = {fg = "#212121", bg = "#675642"},
93
93
+
DiffDelete = {fg = "#212121", bg = "#B36B42", bold = true},
94
94
+
["@text.diff.delete"] = {link = "DiffDelete"},
95
95
+
DiffRemoved = {fg = "#B36B42", bg = "#221F1C"},
96
96
+
DiffText = {fg = "#212121", bg = "#C9A654", bold = true},
97
97
+
Directory = {fg = "#77824A", bg = "#221F1C"},
98
98
+
gitCommitFile = {link = "Directory"},
99
99
+
Error = {fg = "#C3C3B1", bg = "#BB7844"},
100
100
+
NvimInvalid = {link = "Error"},
101
101
+
ErrorMsg = {fg = "#B36B42", bg = "#24211E"},
102
102
+
NvimInvalidSpacing = {link = "ErrorMsg"},
103
103
+
Field = {fg = "#BB7844"},
104
104
+
CmpItemKindProperty = {link = "Field"},
105
105
+
["@field"] = {link = "Field"},
106
106
+
["@property"] = {link = "Field"},
107
107
+
FloatShadow = {bg = "#0F0F0F"},
108
108
+
FloatShadowThrough = {bg = "#141414"},
109
109
+
FoldColumn = {fg = "#666666", bg = "#221F1C"},
110
110
+
CursorLineFold = {link = "FoldColumn"},
111
111
+
Folded = {fg = "#B36B42", bg = "#221F1C"},
112
112
+
Function = {fg = "#77824A"},
113
113
+
CmpItemKindFunction = {link = "Function"},
114
114
+
CmpItemKindMethod = {link = "Function"},
115
115
+
["@function"] = {link = "Function"},
116
116
+
["@function.builtin"] = {link = "Function"},
117
117
+
["@lsp.type.decorator"] = {link = "Function"},
118
118
+
["@lsp.type.function"] = {link = "Function"},
119
119
+
["@lsp.type.method"] = {link = "Function"},
120
120
+
["@method"] = {link = "Function"},
121
121
+
GitSignsAdd = {fg = "#5F865F", bg = "#221F1C"},
122
122
+
GitSignsChange = {fg = "#675642", bg = "#221F1C"},
123
123
+
GitSignsDelete = {fg = "#B36B42", bg = "#221F1C"},
124
124
+
IblIndent = {fg = "#252F1E", nocombine = true},
125
125
+
IblScope = {fg = "#444A2B", nocombine = true},
126
126
+
IblWhitespace = {fg = "#252F1E", nocombine = true},
127
127
+
Identifier = {fg = "#D7C484"},
128
128
+
NvimIdentifier = {link = "Identifier"},
129
129
+
rubyLocalVariableOrMethod = {link = "Identifier"},
130
130
+
["@lsp.type.parameter"] = {link = "Identifier"},
131
131
+
["@lsp.type.property"] = {link = "Identifier"},
132
132
+
["@lsp.type.variable"] = {link = "Identifier"},
133
133
+
["@namespace"] = {link = "Identifier"},
134
134
+
["@parameter"] = {link = "Identifier"},
135
135
+
["@text.reference"] = {link = "Identifier"},
136
136
+
["@variable"] = {link = "Identifier"},
137
137
+
Ignore = {fg = "#484441"},
138
138
+
Conceal = {link = "Ignore"},
139
139
+
IncSearch = {fg = "#212121", bg = "#BB7844"},
140
140
+
FzfLuaSearch = {link = "IncSearch"},
141
141
+
Keyword = {fg = "#5F865F"},
142
142
+
CmpItemKindKeyword = {link = "Keyword"},
143
143
+
CmpItemKindUnit = {link = "Keyword"},
144
144
+
PreProc = {link = "Keyword"},
145
145
+
["@keyword"] = {link = "Keyword"},
146
146
+
LazyButton = {bg = "#24211E"},
147
147
+
LazyButtonActive = {fg = "#212121", bg = "#77824A"},
148
148
+
MasonHeaderSecondary = {link = "LazyButtonActive"},
149
149
+
MasonHighlightBlock = {link = "LazyButtonActive"},
150
150
+
MasonHighlightBlockBold = {link = "LazyButtonActive"},
151
151
+
LazyComment = {},
152
152
+
LazyCommit = {},
153
153
+
LazyCommitIssue = {},
154
154
+
LazyCommitScope = {},
155
155
+
LazyCommitType = {},
156
156
+
LazyDimmed = {},
157
157
+
LazyDir = {},
158
158
+
LazyH1 = {fg = "#77824A", bg = "#24211E"},
159
159
+
LazyH2 = {fg = "#77824A", bg = "#24211E"},
160
160
+
LazyLocal = {},
161
161
+
LazyNoCond = {},
162
162
+
LazyNormal = {bg = "#221F1C"},
163
163
+
LazyProgressDone = {},
164
164
+
LazyProgressTodo = {},
165
165
+
LazyProp = {},
166
166
+
LazyReasonCmd = {},
167
167
+
LazyReasonEvent = {},
168
168
+
LazyReasonFt = {},
169
169
+
LazyReasonImport = {},
170
170
+
LazyReasonKeys = {},
171
171
+
LazyReasonPlugin = {},
172
172
+
LazyReasonRuntime = {},
173
173
+
LazyReasonSource = {},
174
174
+
LazyReasonStart = {},
175
175
+
LazySpecial = {fg = "#C9A654"},
176
176
+
LazyTaskError = {},
177
177
+
LazyTaskOutput = {},
178
178
+
LazyUrl = {},
179
179
+
LazyValue = {},
180
180
+
LineNr = {fg = "#77824A", bg = "#221F1C"},
181
181
+
LspBorderBG = {fg = "#675642", bg = "#24211E"},
182
182
+
LspFloatWinNormal = {fg = "#D7C484", bg = "#444A2B"},
183
183
+
LspReferenceRead = {fg = "#5F865F", sp = "#FD9621", bold = true, undercurl = true},
184
184
+
LspReferenceText = {fg = "#D7C484", bg = "#444A2B", sp = "#FD9621", bold = true, undercurl = true},
185
185
+
LspReferenceWrite = {fg = "#5F865F", sp = "#FD9621", bold = true, undercurl = true},
186
186
+
LspSignatureActiveParameter = {sp = "#FBEB9D", bold = true, italic = true, underline = true},
187
187
+
MasonError = {},
188
188
+
MasonHeader = {fg = "#D7C484", bg = "#221F1C"},
189
189
+
MasonHeading = {},
190
190
+
MasonHighlight = {fg = "#77824A", bg = "#24211E"},
191
191
+
MasonMutedBlockBold = {link = "MasonHighlight"},
192
192
+
MasonHighlightBlockBoldSecondary = {},
193
193
+
MasonHighlightBlockSecondary = {},
194
194
+
MasonHighlightSecondary = {},
195
195
+
MasonMuted = {fg = "#C9A654", bg = "#221F1C"},
196
196
+
MasonMutedBlock = {link = "MasonMuted"},
197
197
+
MasonWarning = {},
198
198
+
MatchParen = {fg = "#D7C484", bg = "#463939"},
199
199
+
ModeMsg = {bold = true},
200
200
+
MoreMsg = {fg = "#5F865F", bold = true},
201
201
+
NonText = {fg = "#7A6D52", bold = true},
202
202
+
EndOfBuffer = {link = "NonText"},
203
203
+
Whitespace = {link = "NonText"},
204
204
+
markdownCodeDelimiter = {link = "NonText"},
205
205
+
markdownHeadingRule = {link = "NonText"},
206
206
+
Number = {fg = "#B3664D"},
207
207
+
Boolean = {link = "Number"},
208
208
+
Float = {link = "Number"},
209
209
+
NvimNumber = {link = "Number"},
210
210
+
rubyInstanceVariable = {link = "Number"},
211
211
+
["@number"] = {link = "Number"},
212
212
+
NvimInternalError = {fg = "#221F1C", bg = "#B36B42"},
213
213
+
NvimFigureBrace = {link = "NvimInternalError"},
214
214
+
NvimInvalidSingleQuotedUnknownEscape = {link = "NvimInternalError"},
215
215
+
NvimSingleQuotedUnknownEscape = {link = "NvimInternalError"},
216
216
+
Operator = {fg = "#669977"},
217
217
+
["@markup.list"] = {link = "Operator"},
218
218
+
Pmenu = {fg = "#D7C484", bg = "#221F1C"},
219
219
+
NormalFloat = {link = "Pmenu"},
220
220
+
PmenuExtra = {link = "Pmenu"},
221
221
+
PmenuKind = {link = "Pmenu"},
222
222
+
PmenuSbar = {bg = "#6B6461"},
223
223
+
FzfLuaScrollFloatEmpty = {link = "PmenuSbar"},
224
224
+
PmenuSel = {fg = "#212121", bg = "#77824A"},
225
225
+
PmenuExtraSel = {link = "PmenuSel"},
226
226
+
PmenuKindSel = {link = "PmenuSel"},
227
227
+
PmenuThumb = {fg = "#D7C484", bg = "#D7C484"},
228
228
+
FzfLuaScrollFloatFull = {link = "PmenuThumb"},
229
229
+
Define = {link = "PreProc"},
230
230
+
Include = {link = "PreProc"},
231
231
+
Macro = {link = "PreProc"},
232
232
+
PreCondit = {link = "PreProc"},
233
233
+
["@preproc"] = {link = "PreProc"},
234
234
+
Question = {fg = "#5F865F", bold = true},
235
235
+
RedrawDebugClear = {fg = "#212121", bg = "#C9A654"},
236
236
+
RedrawDebugComposed = {fg = "#212121", bg = "#77824A"},
237
237
+
RedrawDebugNormal = {reverse = true},
238
238
+
RedrawDebugRecompose = {fg = "#212121", bg = "#BB7844"},
239
239
+
ScrollbarCursor = {fg = "#212121"},
240
240
+
ScrollbarCursorHandle = {fg = "#212121", bg = "#221F1C", blend = 0},
241
241
+
ScrollbarError = {fg = "#675642"},
242
242
+
ScrollbarErrorHandle = {fg = "#675642", bg = "#221F1C", blend = 0},
243
243
+
ScrollbarGitAdd = {fg = "#5F865F"},
244
244
+
ScrollbarGitAddHandle = {fg = "#5F865F", bg = "#221F1C", blend = 0},
245
245
+
ScrollbarGitChange = {fg = "#675642"},
246
246
+
ScrollbarGitChangeHandle = {fg = "#675642", bg = "#221F1C", blend = 0},
247
247
+
ScrollbarGitDelete = {fg = "#B36B42"},
248
248
+
ScrollbarGitDeleteHandle = {fg = "#B36B42", bg = "#221F1C", blend = 0},
249
249
+
ScrollbarHandle = {bg = "#221F1C", blend = 0},
250
250
+
ScrollbarHint = {fg = "#5F865F"},
251
251
+
ScrollbarHintHandle = {fg = "#5F865F", bg = "#221F1C", blend = 0},
252
252
+
ScrollbarInfo = {fg = "#5F865F"},
253
253
+
ScrollbarInfoHandle = {fg = "#5F865F", bg = "#221F1C", blend = 0},
254
254
+
ScrollbarMisc = {fg = "#BB7844"},
255
255
+
ScrollbarMiscHandle = {fg = "#BB7844", bg = "#221F1C", blend = 0},
256
256
+
ScrollbarSearch = {fg = "#C9A654"},
257
257
+
ScrollbarSearchHandle = {fg = "#C9A654", bg = "#221F1C", blend = 0},
258
258
+
ScrollbarWarn = {fg = "#B36B42"},
259
259
+
ScrollbarWarnHandle = {fg = "#B36B42", bg = "#221F1C", blend = 0},
260
260
+
Search = {fg = "#212121", bg = "#5F865F"},
261
261
+
CurSearch = {link = "Search"},
262
262
+
QuickFixLine = {link = "Search"},
263
263
+
Substitute = {link = "Search"},
264
264
+
SignColumn = {fg = "#6B6461", bg = "#221F1C"},
265
265
+
CursorLineSign = {link = "SignColumn"},
266
266
+
Special = {fg = "#BB7844"},
267
267
+
Debug = {link = "Special"},
268
268
+
SpecialChar = {link = "Special"},
269
269
+
SpecialComment = {link = "Special"},
270
270
+
Tag = {link = "Special"},
271
271
+
TelescopeMatching = {link = "Special"},
272
272
+
TelescopeResultsFileIcon = {link = "Special"},
273
273
+
["@constant.builtin"] = {link = "Special"},
274
274
+
["@constructor"] = {link = "Special"},
275
275
+
["@markup.heading"] = {link = "Special"},
276
276
+
["@marup.raw.block.markdown"] = {link = "Special"},
277
277
+
SpecialKey = {fg = "#D7C484"},
278
278
+
SpellBad = {fg = "#675642", sp = "#D7C484"},
279
279
+
SpellCap = {fg = "#5F865F", sp = "#D7C484"},
280
280
+
SpellLocal = {fg = "#BB7844", sp = "#D7C484"},
281
281
+
SpellRare = {fg = "#B36B42", sp = "#D7C484"},
282
282
+
Statement = {fg = "#5F865F", bold = true},
283
283
+
Conditional = {link = "Statement"},
284
284
+
Exception = {link = "Statement"},
285
285
+
Label = {link = "Statement"},
286
286
+
Repeat = {link = "Statement"},
287
287
+
helpHyperTextEntry = {link = "Statement"},
288
288
+
phpDefine = {link = "Statement"},
289
289
+
rubyDefine = {link = "Statement"},
290
290
+
StatusLine = {fg = "#D7C484", bg = "#24211E", bold = true},
291
291
+
MsgSeparator = {link = "StatusLine"},
292
292
+
StatusLineNC = {fg = "#736659", bg = "#24211E", bold = true},
293
293
+
String = {fg = "#B3854D"},
294
294
+
CmpItemAbbrMatch = {link = "String"},
295
295
+
CmpItemAbbrMatchFuzzy = {link = "String"},
296
296
+
CtrlPMatch = {link = "String"},
297
297
+
NERDTreeExecFile = {link = "String"},
298
298
+
NvimString = {link = "String"},
299
299
+
helpExample = {link = "String"},
300
300
+
markdownCodeBlock = {link = "String"},
301
301
+
phpHereDoc = {link = "String"},
302
302
+
["@string"] = {link = "String"},
303
303
+
SyntasticErrorSign = {fg = "#B36B42"},
304
304
+
SyntasticWarningSign = {fg = "#675642"},
305
305
+
TabLine = {fg = "#6B6461", bg = "#121212"},
306
306
+
TabLineFill = {fg = "#C9A654", bg = "#24211E"},
307
307
+
TabLineSel = {fg = "#121212", bg = "#77824A", bold = true},
308
308
+
TabLineSelSep = {fg = "#77824A", bg = "#221F1C", bold = true},
309
309
+
TabLineSep = {fg = "#121212", bg = "#24211E"},
310
310
+
TelescopeBorder = {fg = "#675642", bg = "#221F1C"},
311
311
+
TelescopePreviewBorder = {link = "TelescopeBorder"},
312
312
+
TelescopePromptCounter = {link = "TelescopeBorder"},
313
313
+
TelescopeResultsBorder = {link = "TelescopeBorder"},
314
314
+
TelescopeMultiIcon = {},
315
315
+
TelescopeMultiSelection = {},
316
316
+
TelescopeNormal = {},
317
317
+
TelescopePreviewBlock = {},
318
318
+
TelescopePreviewCharDev = {},
319
319
+
TelescopePreviewDate = {},
320
320
+
TelescopePreviewDirectory = {},
321
321
+
TelescopePreviewExecute = {},
322
322
+
TelescopePreviewGroup = {},
323
323
+
TelescopePreviewHyphen = {},
324
324
+
TelescopePreviewLink = {},
325
325
+
TelescopePreviewMatch = {},
326
326
+
TelescopePreviewMessage = {},
327
327
+
TelescopePreviewMessageFillchar = {},
328
328
+
TelescopePreviewNormal = {},
329
329
+
TelescopePreviewPipe = {},
330
330
+
TelescopePreviewRead = {},
331
331
+
TelescopePreviewSize = {},
332
332
+
TelescopePreviewSocket = {},
333
333
+
TelescopePreviewSticky = {},
334
334
+
TelescopePreviewUser = {},
335
335
+
TelescopePreviewWrite = {},
336
336
+
TelescopePromptBorder = {fg = "#B36B42", bg = "#221F1C"},
337
337
+
TelescopePromptNormal = {},
338
338
+
TelescopeResultsClass = {},
339
339
+
TelescopeResultsComment = {},
340
340
+
TelescopeResultsConstant = {},
341
341
+
TelescopeResultsDiffUntracked = {},
342
342
+
TelescopeResultsField = {},
343
343
+
TelescopeResultsFunction = {},
344
344
+
TelescopeResultsIdentifier = {},
345
345
+
TelescopeResultsLineNr = {},
346
346
+
TelescopeResultsMethod = {},
347
347
+
TelescopeResultsNormal = {},
348
348
+
TelescopeResultsNumber = {},
349
349
+
TelescopeResultsOperator = {},
350
350
+
TelescopeResultsSpecialComment = {},
351
351
+
TelescopeResultsStruct = {},
352
352
+
TelescopeResultsVariable = {},
353
353
+
TelescopePreviewLine = {link = "TelescopeSelection"},
354
354
+
TelescopeSelectionCaret = {fg = "#D7C484", bg = "#77824A"},
355
355
+
TelescopeTitle = {fg = "#5F865F", bg = "#221F1C"},
356
356
+
TelescopePreviewTitle = {link = "TelescopeTitle"},
357
357
+
TelescopePromptPrefix = {link = "TelescopeTitle"},
358
358
+
TelescopePromptTitle = {link = "TelescopeTitle"},
359
359
+
TelescopeResultsTitle = {link = "TelescopeTitle"},
360
360
+
TermCursor = {reverse = true},
361
361
+
Title = {fg = "#B36B42", bold = true},
362
362
+
FloatTitle = {link = "Title"},
363
363
+
helpHeadline = {link = "Title"},
364
364
+
["@text.title"] = {link = "Title"},
365
365
+
Todo = {fg = "#D7C484", bold = true},
366
366
+
["@text.todo"] = {link = "Todo"},
367
367
+
Type = {fg = "#77824A"},
368
368
+
CmpItemKindInterface = {link = "Type"},
369
369
+
NvimNumberPrefix = {link = "Type"},
370
370
+
NvimOptionSigil = {link = "Type"},
371
371
+
StorageClass = {link = "Type"},
372
372
+
Structure = {link = "Type"},
373
373
+
Typedef = {link = "Type"},
374
374
+
["@lsp.type.type"] = {link = "Type"},
375
375
+
["@type"] = {link = "Type"},
376
376
+
Underlined = {fg = "#77824A", underline = true},
377
377
+
helpHyperTextJump = {link = "Underlined"},
378
378
+
helpURL = {link = "Underlined"},
379
379
+
htmlLink = {link = "Underlined"},
380
380
+
["@text.underline"] = {link = "Underlined"},
381
381
+
["@text.uri"] = {link = "Underlined"},
382
382
+
User1 = {fg = "#D7C484", bg = "#BB7844"},
383
383
+
User2 = {fg = "#D7C484", bg = "#666666"},
384
384
+
User3 = {fg = "#D7C484", bg = "#B36B42"},
385
385
+
User4 = {fg = "#D7C484", bg = "#24211E"},
386
386
+
User5 = {fg = "#D7C484", bg = "#BB7844"},
387
387
+
User6 = {fg = "#D7C484", bg = "#C9A654"},
388
388
+
User7 = {fg = "#D7C484", bg = "#77824A"},
389
389
+
User8 = {fg = "#D7C484", bg = "#B36B42"},
390
390
+
User9 = {fg = "#D7C484", bg = "#666666"},
391
391
+
VertSplit = {fg = "#221F1C", bg = "#24211E"},
392
392
+
WinSeparator = {link = "VertSplit"},
393
393
+
Visual = {fg = "#212121", bg = "#77824A"},
394
394
+
TelescopeSelection = {link = "Visual"},
395
395
+
WarningMsg = {fg = "#B36B42"},
396
396
+
WhichKey = {fg = "#D7C484", bg = "#221F1C"},
397
397
+
WhichKeyBorder = {bg = "#221F1C"},
398
398
+
WhichKeyDesc = {fg = "#5F865F", bg = "#221F1C"},
399
399
+
WhichKeyFloat = {bg = "#221F1C"},
400
400
+
WhichKeyGroup = {bg = "#221F1C"},
401
401
+
WhichKeySeparator = {fg = "#C9A654", bg = "#221F1C"},
402
402
+
WhichKeyValue = {fg = "#C9A654"},
403
403
+
WildMenu = {fg = "black", bg = "#C9A654"},
404
404
+
WinBar = {bold = true},
405
405
+
WinBarNC = {link = "WinBar"},
406
406
+
gitCommitBranch = {fg = "#B36B42"},
407
407
+
gitCommitSelectedFile = {fg = "#5F865F"},
408
408
+
gitCommitSelectedType = {fg = "#5F865F"},
409
409
+
gitCommitUnmergedFile = {fg = "#675642"},
410
410
+
gitCommitDiscardedFile = {link = "gitCommitUnmergedFile"},
411
411
+
gitCommitUntrackedFile = {link = "gitCommitUnmergedFile"},
412
412
+
gitCommitUnmergedType = {fg = "#675642"},
413
413
+
gitCommitDiscardedType = {link = "gitCommitUnmergedType"},
414
414
+
htmlArg = {fg = "#5F865F"},
415
415
+
htmlBold = {bold = true},
416
416
+
htmlBoldItalic = {bold = true, underline = true},
417
417
+
htmlBoldUnderline = {bold = true, underline = true},
418
418
+
htmlBoldUnderlineItalic = {bold = true, underline = true},
419
419
+
htmlH1 = {bold = true},
420
420
+
htmlItalic = {underline = true},
421
421
+
htmlTag = {fg = "#5F865F"},
422
422
+
htmlEndTag = {link = "htmlTag"},
423
423
+
htmlTagName = {fg = "#5F865F"},
424
424
+
htmlUnderline = {underline = true},
425
425
+
htmlUnderlineItalic = {underline = true},
426
426
+
lCursor = {fg = "bg", bg = "fg"},
427
427
+
lessVariable = {fg = "#B36B42"},
428
428
+
markdownBold = {bold = true},
429
429
+
markdownItalic = {italic = true},
430
430
+
mustacheMarker = {fg = "#BB7844"},
431
431
+
mustachePartial = {fg = "#BB7844"},
432
432
+
mustacheSection = {bold = true},
433
433
+
mustacheVariable = {fg = "#C9A654"},
434
434
+
mustacheVariableUnescape = {fg = "#675642"},
435
435
+
netrwClassify = {fg = "#666666", bold = true},
436
436
+
netrwExe = {fg = "#675642"},
437
437
+
phpIdentifier = {fg = "#B36B42"},
438
438
+
phpVarSelector = {link = "phpIdentifier"},
439
439
+
phpSpecialFunction = {fg = "#BB7844"},
440
440
+
shDerefSimple = {fg = "#B36B42"},
441
441
+
shDerefVar = {link = "shDerefSimple"},
442
442
+
xmlTag = {fg = "#77824A"},
443
443
+
xmlAttrib = {link = "xmlTag"},
444
444
+
xmlEndTag = {link = "xmlTag"},
445
445
+
xmlEqual = {link = "xmlTag"},
446
446
+
xmlTagName = {fg = "#77824A"},
447
447
+
xmlString = {link = "xmlTagName"},
448
448
+
["@markup.link"] = {fg = "#77824A"},
449
449
+
["@punctuation.special"] = {fg = "#77824A"},
450
450
+
-- PATCH_CLOSE
451
451
+
-- content here will not be touched
452
452
+
}
453
453
+
454
454
+
-- colorschemes generally want to do this
455
455
+
vim.cmd("highlight clear")
456
456
+
vim.cmd("set t_Co=256")
457
457
+
vim.cmd("let g:colors_name='darkearth'")
458
458
+
459
459
+
-- apply highlight groups
460
460
+
for group, attrs in pairs(colors) do
461
461
+
vim.api.nvim_set_hl(0, group, attrs)
462
462
+
end
-454
colors/darkearth.vim
···
1
1
-
set background=dark
2
2
-
hi! clear
3
3
-
4
4
-
if exists("syntax_on")
5
5
-
syntax reset
6
6
-
endif
7
7
-
8
8
-
let colors_name="darkearth"
9
9
-
let g:colors_name="darkearth"
10
10
-
11
11
-
hi ColorColumn guifg=NONE guibg=#24211E guisp=NONE blend=NONE gui=NONE
12
12
-
hi Comment guifg=#6E665E guibg=NONE guisp=NONE blend=NONE gui=italic
13
13
-
hi Constant guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
14
14
-
hi CursorColumn guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
15
15
-
hi Cursor guifg=#212121 guibg=#675642 guisp=NONE blend=NONE gui=NONE
16
16
-
hi CursorLine guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
17
17
-
hi CursorLineNr guifg=#77824A guibg=#221F1C guisp=NONE blend=NONE gui=bold
18
18
-
hi DefLineNr guifg=#736659 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
19
19
-
hi Delimiter guifg=#80744D guibg=NONE guisp=NONE blend=NONE gui=NONE
20
20
-
hi DelimiterLight guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=NONE
21
21
-
hi DiagnosticDeprecated guifg=NONE guibg=NONE guisp=#675642 blend=NONE gui=strikethrough
22
22
-
hi DiagnosticError guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
23
23
-
hi DiagnosticHintFloating guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
24
24
-
hi DiagnosticHint guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
25
25
-
hi DiagnosticInfo guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
26
26
-
hi DiagnosticOk guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
27
27
-
hi DiagnosticSignError guifg=#B36B42 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
28
28
-
hi DiagnosticSignHint guifg=#5F865F guibg=#221F1C guisp=NONE blend=NONE gui=NONE
29
29
-
hi DiagnosticSignInfo guifg=#77824A guibg=#221F1C guisp=NONE blend=NONE gui=NONE
30
30
-
hi DiagnosticSignWarn guifg=#675642 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
31
31
-
hi DiagnosticUnderlineError guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
32
32
-
hi DiagnosticUnderlineHint guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
33
33
-
hi DiagnosticUnderlineInfo guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
34
34
-
hi DiagnosticUnderlineOk guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
35
35
-
hi DiagnosticUnderlineWarn guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
36
36
-
hi DiagnosticUnnecessary guifg=#6B6461 guibg=NONE guisp=NONE blend=NONE gui=NONE
37
37
-
hi DiagnosticVirtualTextError guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
38
38
-
hi DiagnosticVirtualTextHint guifg=#77824A guibg=#24211E guisp=NONE blend=NONE gui=NONE
39
39
-
hi DiagnosticVirtualTextInfo guifg=#77824A guibg=#24211E guisp=NONE blend=NONE gui=NONE
40
40
-
hi DiagnosticVirtualTextWarn guifg=#675642 guibg=#24211E guisp=NONE blend=NONE gui=NONE
41
41
-
hi DiagnosticVirtualTextWarning guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=NONE
42
42
-
hi DiagnosticWarn guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
43
43
-
hi DiagnosticWarningFloating guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=NONE
44
44
-
hi DiagnosticWarning guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
45
45
-
hi DiffAdded guifg=#5F865F guibg=#221F1C guisp=NONE blend=NONE gui=NONE
46
46
-
hi DiffAdd guifg=#212121 guibg=#5F865F guisp=NONE blend=NONE gui=NONE
47
47
-
hi DiffChange guifg=#212121 guibg=#675642 guisp=NONE blend=NONE gui=NONE
48
48
-
hi DiffDelete guifg=#212121 guibg=#B36B42 guisp=NONE blend=NONE gui=bold
49
49
-
hi DiffRemoved guifg=#B36B42 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
50
50
-
hi DiffText guifg=#212121 guibg=#C9A654 guisp=NONE blend=NONE gui=bold
51
51
-
hi Directory guifg=#77824A guibg=#221F1C guisp=NONE blend=NONE gui=NONE
52
52
-
hi Error guifg=#C3C3B1 guibg=#BB7844 guisp=NONE blend=NONE gui=NONE
53
53
-
hi ErrorMsg guifg=#B36B42 guibg=#24211E guisp=NONE blend=NONE gui=NONE
54
54
-
hi Field guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
55
55
-
hi FloatShadow guifg=NONE guibg=#0F0F0F guisp=NONE blend=NONE gui=NONE
56
56
-
hi FloatShadowThrough guifg=NONE guibg=#141414 guisp=NONE blend=NONE gui=NONE
57
57
-
hi FoldColumn guifg=#666666 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
58
58
-
hi Folded guifg=#B36B42 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
59
59
-
hi Function guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
60
60
-
hi gitCommitBranch guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
61
61
-
hi gitCommitSelectedFile guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
62
62
-
hi gitCommitSelectedType guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
63
63
-
hi gitCommitUnmergedFile guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
64
64
-
hi gitCommitUnmergedType guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
65
65
-
hi GitSignsAdd guifg=#5F865F guibg=#221F1C guisp=NONE blend=NONE gui=NONE
66
66
-
hi GitSignsChange guifg=#675642 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
67
67
-
hi GitSignsDelete guifg=#B36B42 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
68
68
-
hi htmlArg guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
69
69
-
hi htmlBold guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
70
70
-
hi htmlBoldItalic guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold,underline
71
71
-
hi htmlBoldUnderline guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold,underline
72
72
-
hi htmlBoldUnderlineItalic guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold,underline
73
73
-
hi htmlH1 guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
74
74
-
hi htmlItalic guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
75
75
-
hi htmlTag guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
76
76
-
hi htmlTagName guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
77
77
-
hi htmlUnderline guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
78
78
-
hi htmlUnderlineItalic guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=underline
79
79
-
hi IblIndent guifg=#252F1E guibg=NONE guisp=NONE blend=NONE gui=nocombine
80
80
-
hi IblScope guifg=#444A2B guibg=NONE guisp=NONE blend=NONE gui=nocombine
81
81
-
hi IblWhitespace guifg=#252F1E guibg=NONE guisp=NONE blend=NONE gui=nocombine
82
82
-
hi Identifier guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=NONE
83
83
-
hi Ignore guifg=#484441 guibg=NONE guisp=NONE blend=NONE gui=NONE
84
84
-
hi IncSearch guifg=#212121 guibg=#BB7844 guisp=NONE blend=NONE gui=NONE
85
85
-
hi Keyword guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
86
86
-
hi LazyButtonActive guifg=#212121 guibg=#77824A guisp=NONE blend=NONE gui=NONE
87
87
-
hi LazyButton guifg=NONE guibg=#24211E guisp=NONE blend=NONE gui=NONE
88
88
-
hi LazyComment guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
89
89
-
hi LazyCommit guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
90
90
-
hi LazyCommitIssue guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
91
91
-
hi LazyCommitScope guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
92
92
-
hi LazyCommitType guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
93
93
-
hi LazyDimmed guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
94
94
-
hi LazyDir guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
95
95
-
hi LazyH1 guifg=#77824A guibg=#24211E guisp=NONE blend=NONE gui=NONE
96
96
-
hi LazyH2 guifg=#77824A guibg=#24211E guisp=NONE blend=NONE gui=NONE
97
97
-
hi LazyLocal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
98
98
-
hi LazyNoCond guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
99
99
-
hi LazyNormal guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
100
100
-
hi LazyProgressDone guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
101
101
-
hi LazyProgressTodo guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
102
102
-
hi LazyProp guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
103
103
-
hi LazyReasonCmd guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
104
104
-
hi LazyReasonEvent guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
105
105
-
hi LazyReasonFt guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
106
106
-
hi LazyReasonImport guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
107
107
-
hi LazyReasonKeys guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
108
108
-
hi LazyReasonPlugin guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
109
109
-
hi LazyReasonRuntime guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
110
110
-
hi LazyReasonSource guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
111
111
-
hi LazyReasonStart guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
112
112
-
hi LazySpecial guifg=#C9A654 guibg=NONE guisp=NONE blend=NONE gui=NONE
113
113
-
hi LazyTaskError guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
114
114
-
hi LazyTaskOutput guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
115
115
-
hi LazyUrl guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
116
116
-
hi LazyValue guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
117
117
-
hi lCursor guifg=bg guibg=fg guisp=NONE blend=NONE gui=NONE
118
118
-
hi lessVariable guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
119
119
-
hi LineNr guifg=#77824A guibg=#221F1C guisp=NONE blend=NONE gui=NONE
120
120
-
hi! link @boolean Boolean
121
121
-
hi! link Boolean Number
122
122
-
hi! link Character Constant
123
123
-
hi! link CmpItemAbbrDeprecated DiagnosticWarn
124
124
-
hi! link CmpItemAbbrMatchFuzzy String
125
125
-
hi! link CmpItemAbbrMatch String
126
126
-
hi! link CmpItemKindFunction Function
127
127
-
hi! link CmpItemKindInterface Type
128
128
-
hi! link CmpItemKindKeyword Keyword
129
129
-
hi! link CmpItemKindMethod Function
130
130
-
hi! link CmpItemKindProperty Field
131
131
-
hi! link CmpItemKindText Normal
132
132
-
hi! link CmpItemKindUnit Keyword
133
133
-
hi! link CmpItemKindVariable Normal
134
134
-
hi! link @comment Comment
135
135
-
hi! link Conceal Ignore
136
136
-
hi! link Conditional Statement
137
137
-
hi! link @constant.builtin Special
138
138
-
hi! link @constant Constant
139
139
-
hi! link @constructor Special
140
140
-
hi! link CtrlPLinePre Comment
141
141
-
hi! link CtrlPMatch String
142
142
-
hi! link CurSearch Search
143
143
-
hi! link CursorLineFold FoldColumn
144
144
-
hi! link CursorLineSign SignColumn
145
145
-
hi! link Debug Special
146
146
-
hi! link Define PreProc
147
147
-
hi! link DiagnosticErrorFloating DiagnosticError
148
148
-
hi! link DiagnosticFloatingError DiagnosticError
149
149
-
hi! link DiagnosticFloatingHint DiagnosticHint
150
150
-
hi! link DiagnosticFloatingInfo DiagnosticInfo
151
151
-
hi! link DiagnosticFloatingOk DiagnosticOk
152
152
-
hi! link DiagnosticFloatingWarn DiagnosticWarn
153
153
-
hi! link DiagnosticFloatingWarning DiagnosticWarning
154
154
-
hi! link DiagnosticSignOk DiagnosticOk
155
155
-
hi! link DiagnosticVirtualTextOk DiagnosticOk
156
156
-
hi! link EndOfBuffer NonText
157
157
-
hi! link Exception Statement
158
158
-
hi! link @field Field
159
159
-
hi! link Float Number
160
160
-
hi! link FloatTitle Title
161
161
-
hi! link @function.builtin Function
162
162
-
hi! link @function Function
163
163
-
hi! link FzfLuaBorder Normal
164
164
-
hi! link FzfLuaCursor Cursor
165
165
-
hi! link FzfLuaCursorLine CursorLine
166
166
-
hi! link FzfLuaCursorLineNr CursorLineNr
167
167
-
hi! link FzfLuaNormal Normal
168
168
-
hi! link FzfLuaScrollFloatEmpty PmenuSbar
169
169
-
hi! link FzfLuaScrollFloatFull PmenuThumb
170
170
-
hi! link FzfLuaSearch IncSearch
171
171
-
hi! link gitCommitDiscardedFile gitCommitUnmergedFile
172
172
-
hi! link gitCommitDiscardedType gitCommitUnmergedType
173
173
-
hi! link gitCommitFile Directory
174
174
-
hi! link gitCommitUntrackedFile gitCommitUnmergedFile
175
175
-
hi! link helpExample String
176
176
-
hi! link helpHeadline Title
177
177
-
hi! link helpHyperTextEntry Statement
178
178
-
hi! link helpHyperTextJump Underlined
179
179
-
hi! link helpSectionDelim Comment
180
180
-
hi! link helpURL Underlined
181
181
-
hi! link @html.comment Comment
182
182
-
hi! link htmlEndTag htmlTag
183
183
-
hi! link htmlLink Underlined
184
184
-
hi! link Include PreProc
185
185
-
hi! link javaScriptBraces Delimiter
186
186
-
hi! link javaScript Normal
187
187
-
hi! link @keyword Keyword
188
188
-
hi! link Label Statement
189
189
-
hi! link lessVariableValue Normal
190
190
-
hi! link LineNrAbove DefLineNr
191
191
-
hi! link LineNrBelow DefLineNr
192
192
-
hi! link LspCodeLens Comment
193
193
-
hi! link @lsp.type.comment Comment
194
194
-
hi! link @lsp.type.decorator Function
195
195
-
hi! link @lsp.type.enumMember Constant
196
196
-
hi! link @lsp.type.function Function
197
197
-
hi! link @lsp.type.method Function
198
198
-
hi! link @lsp.type.parameter Identifier
199
199
-
hi! link @lsp.type.property Identifier
200
200
-
hi! link @lsp.type.type Type
201
201
-
hi! link @lsp.type.variable Identifier
202
202
-
hi! link Macro PreProc
203
203
-
hi! link markdownCodeBlock String
204
204
-
hi! link markdownCodeDelimiter NonText
205
205
-
hi! link markdownHeadingRule NonText
206
206
-
hi! link markdownLinkDelimiter Delimiter
207
207
-
hi! link markdownURLDelimiter Delimiter
208
208
-
hi! link @markup.heading Special
209
209
-
hi! link @markup.list Operator
210
210
-
hi! link @marup.raw.block.markdown Special
211
211
-
hi! link MasonHeaderSecondary LazyButtonActive
212
212
-
hi! link MasonHighlightBlockBold LazyButtonActive
213
213
-
hi! link MasonHighlightBlock LazyButtonActive
214
214
-
hi! link MasonMutedBlockBold MasonHighlight
215
215
-
hi! link MasonMutedBlock MasonMuted
216
216
-
hi! link @method Function
217
217
-
hi! link MsgSeparator StatusLine
218
218
-
hi! link MyParentheses Delimiter
219
219
-
hi! link @namespace Identifier
220
220
-
hi! link NERDTreeExecFile String
221
221
-
hi! link NERDTreeHelp Comment
222
222
-
hi! link NormalFloat Pmenu
223
223
-
hi! link @number Number
224
224
-
hi! link NvimArrow Delimiter
225
225
-
hi! link NvimColon Delimiter
226
226
-
hi! link NvimComma Delimiter
227
227
-
hi! link NvimFigureBrace NvimInternalError
228
228
-
hi! link NvimIdentifier Identifier
229
229
-
hi! link NvimInvalid Error
230
230
-
hi! link NvimInvalidSingleQuotedUnknownEscape NvimInternalError
231
231
-
hi! link NvimInvalidSpacing ErrorMsg
232
232
-
hi! link NvimNumber Number
233
233
-
hi! link NvimNumberPrefix Type
234
234
-
hi! link NvimOptionSigil Type
235
235
-
hi! link NvimParenthesis Delimiter
236
236
-
hi! link NvimSingleQuotedUnknownEscape NvimInternalError
237
237
-
hi! link NvimSpacing Normal
238
238
-
hi! link NvimString String
239
239
-
hi! link @parameter Identifier
240
240
-
hi! link phpDefine Statement
241
241
-
hi! link phpHereDoc String
242
242
-
hi! link phpVarSelector phpIdentifier
243
243
-
hi! link PmenuExtra Pmenu
244
244
-
hi! link PmenuExtraSel PmenuSel
245
245
-
hi! link PmenuKind Pmenu
246
246
-
hi! link PmenuKindSel PmenuSel
247
247
-
hi! link PreCondit PreProc
248
248
-
hi! link PreProc Keyword
249
249
-
hi! link @preproc PreProc
250
250
-
hi! link @property Field
251
251
-
hi! link @punctuation.bracket DelimiterLight
252
252
-
hi! link @punctuation Delimiter
253
253
-
hi! link QuickFixLine Search
254
254
-
hi! link Repeat Statement
255
255
-
hi! link rubyConstant Constant
256
256
-
hi! link rubyDefine Statement
257
257
-
hi! link rubyInstanceVariable Number
258
258
-
hi! link rubyLocalVariableOrMethod Identifier
259
259
-
hi! link shDerefVar shDerefSimple
260
260
-
hi! link SpecialChar Special
261
261
-
hi! link SpecialComment Special
262
262
-
hi! link StorageClass Type
263
263
-
hi! link @string String
264
264
-
hi! link Structure Type
265
265
-
hi! link Substitute Search
266
266
-
hi! link Tag Special
267
267
-
hi! link TelescopeMatching Special
268
268
-
hi! link TelescopePreviewBorder TelescopeBorder
269
269
-
hi! link TelescopePreviewLine TelescopeSelection
270
270
-
hi! link TelescopePreviewTitle TelescopeTitle
271
271
-
hi! link TelescopePromptCounter TelescopeBorder
272
272
-
hi! link TelescopePromptPrefix TelescopeTitle
273
273
-
hi! link TelescopePromptTitle TelescopeTitle
274
274
-
hi! link TelescopeResultsBorder TelescopeBorder
275
275
-
hi! link TelescopeResultsFileIcon Special
276
276
-
hi! link TelescopeResultsTitle TelescopeTitle
277
277
-
hi! link TelescopeSelection Visual
278
278
-
hi! link @text.diff.add DiffAdd
279
279
-
hi! link @text.diff.delete DiffDelete
280
280
-
hi! link @text.literal Comment
281
281
-
hi! link @text.reference Identifier
282
282
-
hi! link @text.title Title
283
283
-
hi! link @text.todo Todo
284
284
-
hi! link @text.underline Underlined
285
285
-
hi! link @text.uri Underlined
286
286
-
hi! link Typedef Type
287
287
-
hi! link @type Type
288
288
-
hi! link @variable Identifier
289
289
-
hi! link vimContinue Delimiter
290
290
-
hi! link vimHiAttrib Constant
291
291
-
hi! link vimSetSep Delimiter
292
292
-
hi! link Whitespace NonText
293
293
-
hi! link WinBarNC WinBar
294
294
-
hi! link WinSeparator VertSplit
295
295
-
hi! link xmlAttrib xmlTag
296
296
-
hi! link xmlEndTag xmlTag
297
297
-
hi! link xmlEqual xmlTag
298
298
-
hi! link xmlString xmlTagName
299
299
-
hi LspBorderBG guifg=#675642 guibg=#24211E guisp=NONE blend=NONE gui=NONE
300
300
-
hi LspFloatWinNormal guifg=#D7C484 guibg=#444A2B guisp=NONE blend=NONE gui=NONE
301
301
-
hi LspReferenceRead guifg=#5F865F guibg=NONE guisp=#FD9621 blend=NONE gui=bold,undercurl
302
302
-
hi LspReferenceText guifg=#D7C484 guibg=#444A2B guisp=#FD9621 blend=NONE gui=bold,undercurl
303
303
-
hi LspReferenceWrite guifg=#5F865F guibg=NONE guisp=#FD9621 blend=NONE gui=bold,undercurl
304
304
-
hi LspSignatureActiveParameter guifg=NONE guibg=NONE guisp=#FBEB9D blend=NONE gui=bold,italic,underline
305
305
-
hi markdownBold guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
306
306
-
hi markdownItalic guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=italic
307
307
-
hi @markup.link guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
308
308
-
hi MasonError guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
309
309
-
hi MasonHeader guifg=#D7C484 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
310
310
-
hi MasonHeading guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
311
311
-
hi MasonHighlightBlockBoldSecondary guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
312
312
-
hi MasonHighlightBlockSecondary guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
313
313
-
hi MasonHighlight guifg=#77824A guibg=#24211E guisp=NONE blend=NONE gui=NONE
314
314
-
hi MasonHighlightSecondary guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
315
315
-
hi MasonMuted guifg=#C9A654 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
316
316
-
hi MasonWarning guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
317
317
-
hi MatchParen guifg=#D7C484 guibg=#463939 guisp=NONE blend=NONE gui=NONE
318
318
-
hi ModeMsg guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
319
319
-
hi MoreMsg guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=bold
320
320
-
hi mustacheMarker guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
321
321
-
hi mustachePartial guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
322
322
-
hi mustacheSection guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
323
323
-
hi mustacheVariable guifg=#C9A654 guibg=NONE guisp=NONE blend=NONE gui=NONE
324
324
-
hi mustacheVariableUnescape guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
325
325
-
hi netrwClassify guifg=#666666 guibg=NONE guisp=NONE blend=NONE gui=bold
326
326
-
hi netrwExe guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
327
327
-
hi NonText guifg=#7A6D52 guibg=NONE guisp=NONE blend=NONE gui=bold
328
328
-
hi Normal guifg=#D7C484 guibg=#24211E guisp=NONE blend=NONE gui=NONE
329
329
-
hi Number guifg=#B3664D guibg=NONE guisp=NONE blend=NONE gui=NONE
330
330
-
hi NvimInternalError guifg=#221F1C guibg=#B36B42 guisp=NONE blend=NONE gui=NONE
331
331
-
hi Operator guifg=#669977 guibg=NONE guisp=NONE blend=NONE gui=NONE
332
332
-
hi phpIdentifier guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
333
333
-
hi phpSpecialFunction guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
334
334
-
hi Pmenu guifg=#D7C484 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
335
335
-
hi PmenuSbar guifg=NONE guibg=#6B6461 guisp=NONE blend=NONE gui=NONE
336
336
-
hi PmenuSel guifg=#212121 guibg=#77824A guisp=NONE blend=NONE gui=NONE
337
337
-
hi PmenuThumb guifg=#D7C484 guibg=#D7C484 guisp=NONE blend=NONE gui=NONE
338
338
-
hi @punctuation.special guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
339
339
-
hi Question guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=bold
340
340
-
hi RedrawDebugClear guifg=#212121 guibg=#C9A654 guisp=NONE blend=NONE gui=NONE
341
341
-
hi RedrawDebugComposed guifg=#212121 guibg=#77824A guisp=NONE blend=NONE gui=NONE
342
342
-
hi RedrawDebugNormal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=reverse
343
343
-
hi RedrawDebugRecompose guifg=#212121 guibg=#BB7844 guisp=NONE blend=NONE gui=NONE
344
344
-
hi ScrollbarCursor guifg=#212121 guibg=NONE guisp=NONE blend=NONE gui=NONE
345
345
-
hi ScrollbarCursorHandle guifg=#212121 guibg=#221F1C guisp=NONE blend=0 gui=NONE
346
346
-
hi ScrollbarError guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
347
347
-
hi ScrollbarErrorHandle guifg=#675642 guibg=#221F1C guisp=NONE blend=0 gui=NONE
348
348
-
hi ScrollbarGitAdd guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
349
349
-
hi ScrollbarGitAddHandle guifg=#5F865F guibg=#221F1C guisp=NONE blend=0 gui=NONE
350
350
-
hi ScrollbarGitChange guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
351
351
-
hi ScrollbarGitChangeHandle guifg=#675642 guibg=#221F1C guisp=NONE blend=0 gui=NONE
352
352
-
hi ScrollbarGitDelete guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
353
353
-
hi ScrollbarGitDeleteHandle guifg=#B36B42 guibg=#221F1C guisp=NONE blend=0 gui=NONE
354
354
-
hi ScrollbarHandle guifg=NONE guibg=#221F1C guisp=NONE blend=0 gui=NONE
355
355
-
hi ScrollbarHint guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
356
356
-
hi ScrollbarHintHandle guifg=#5F865F guibg=#221F1C guisp=NONE blend=0 gui=NONE
357
357
-
hi ScrollbarInfo guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=NONE
358
358
-
hi ScrollbarInfoHandle guifg=#5F865F guibg=#221F1C guisp=NONE blend=0 gui=NONE
359
359
-
hi ScrollbarMisc guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
360
360
-
hi ScrollbarMiscHandle guifg=#BB7844 guibg=#221F1C guisp=NONE blend=0 gui=NONE
361
361
-
hi ScrollbarSearch guifg=#C9A654 guibg=NONE guisp=NONE blend=NONE gui=NONE
362
362
-
hi ScrollbarSearchHandle guifg=#C9A654 guibg=#221F1C guisp=NONE blend=0 gui=NONE
363
363
-
hi ScrollbarWarn guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
364
364
-
hi ScrollbarWarnHandle guifg=#B36B42 guibg=#221F1C guisp=NONE blend=0 gui=NONE
365
365
-
hi Search guifg=#212121 guibg=#5F865F guisp=NONE blend=NONE gui=NONE
366
366
-
hi shDerefSimple guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
367
367
-
hi SignColumn guifg=#6B6461 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
368
368
-
hi Special guifg=#BB7844 guibg=NONE guisp=NONE blend=NONE gui=NONE
369
369
-
hi SpecialKey guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=NONE
370
370
-
hi SpellBad guifg=#675642 guibg=NONE guisp=#D7C484 blend=NONE gui=NONE
371
371
-
hi SpellCap guifg=#5F865F guibg=NONE guisp=#D7C484 blend=NONE gui=NONE
372
372
-
hi SpellLocal guifg=#BB7844 guibg=NONE guisp=#D7C484 blend=NONE gui=NONE
373
373
-
hi SpellRare guifg=#B36B42 guibg=NONE guisp=#D7C484 blend=NONE gui=NONE
374
374
-
hi Statement guifg=#5F865F guibg=NONE guisp=NONE blend=NONE gui=bold
375
375
-
hi StatusLine guifg=#D7C484 guibg=#24211E guisp=NONE blend=NONE gui=bold
376
376
-
hi StatusLineNC guifg=#736659 guibg=#24211E guisp=NONE blend=NONE gui=bold
377
377
-
hi String guifg=#B3854D guibg=NONE guisp=NONE blend=NONE gui=NONE
378
378
-
hi SyntasticErrorSign guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
379
379
-
hi SyntasticWarningSign guifg=#675642 guibg=NONE guisp=NONE blend=NONE gui=NONE
380
380
-
hi TabLineFill guifg=#C9A654 guibg=#24211E guisp=NONE blend=NONE gui=NONE
381
381
-
hi TabLine guifg=#6B6461 guibg=#121212 guisp=NONE blend=NONE gui=NONE
382
382
-
hi TabLineSel guifg=#121212 guibg=#77824A guisp=NONE blend=NONE gui=bold
383
383
-
hi TabLineSelSep guifg=#77824A guibg=#221F1C guisp=NONE blend=NONE gui=bold
384
384
-
hi TabLineSep guifg=#121212 guibg=#24211E guisp=NONE blend=NONE gui=NONE
385
385
-
hi TelescopeBorder guifg=#675642 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
386
386
-
hi TelescopeMultiIcon guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
387
387
-
hi TelescopeMultiSelection guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
388
388
-
hi TelescopeNormal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
389
389
-
hi TelescopePreviewBlock guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
390
390
-
hi TelescopePreviewCharDev guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
391
391
-
hi TelescopePreviewDate guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
392
392
-
hi TelescopePreviewDirectory guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
393
393
-
hi TelescopePreviewExecute guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
394
394
-
hi TelescopePreviewGroup guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
395
395
-
hi TelescopePreviewHyphen guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
396
396
-
hi TelescopePreviewLink guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
397
397
-
hi TelescopePreviewMatch guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
398
398
-
hi TelescopePreviewMessageFillchar guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
399
399
-
hi TelescopePreviewMessage guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
400
400
-
hi TelescopePreviewNormal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
401
401
-
hi TelescopePreviewPipe guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
402
402
-
hi TelescopePreviewRead guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
403
403
-
hi TelescopePreviewSize guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
404
404
-
hi TelescopePreviewSocket guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
405
405
-
hi TelescopePreviewSticky guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
406
406
-
hi TelescopePreviewUser guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
407
407
-
hi TelescopePreviewWrite guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
408
408
-
hi TelescopePromptBorder guifg=#B36B42 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
409
409
-
hi TelescopePromptNormal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
410
410
-
hi TelescopeResultsClass guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
411
411
-
hi TelescopeResultsComment guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
412
412
-
hi TelescopeResultsConstant guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
413
413
-
hi TelescopeResultsDiffUntracked guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
414
414
-
hi TelescopeResultsField guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
415
415
-
hi TelescopeResultsFunction guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
416
416
-
hi TelescopeResultsIdentifier guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
417
417
-
hi TelescopeResultsLineNr guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
418
418
-
hi TelescopeResultsMethod guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
419
419
-
hi TelescopeResultsNormal guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
420
420
-
hi TelescopeResultsNumber guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
421
421
-
hi TelescopeResultsOperator guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
422
422
-
hi TelescopeResultsSpecialComment guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
423
423
-
hi TelescopeResultsStruct guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
424
424
-
hi TelescopeResultsVariable guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
425
425
-
hi TelescopeSelectionCaret guifg=#D7C484 guibg=#77824A guisp=NONE blend=NONE gui=NONE
426
426
-
hi TelescopeTitle guifg=#5F865F guibg=#221F1C guisp=NONE blend=NONE gui=NONE
427
427
-
hi TermCursor guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=reverse
428
428
-
hi Title guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=bold
429
429
-
hi Todo guifg=#D7C484 guibg=NONE guisp=NONE blend=NONE gui=bold
430
430
-
hi Type guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
431
431
-
hi Underlined guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=underline
432
432
-
hi User1 guifg=#D7C484 guibg=#BB7844 guisp=NONE blend=NONE gui=NONE
433
433
-
hi User2 guifg=#D7C484 guibg=#666666 guisp=NONE blend=NONE gui=NONE
434
434
-
hi User3 guifg=#D7C484 guibg=#B36B42 guisp=NONE blend=NONE gui=NONE
435
435
-
hi User4 guifg=#D7C484 guibg=#24211E guisp=NONE blend=NONE gui=NONE
436
436
-
hi User5 guifg=#D7C484 guibg=#BB7844 guisp=NONE blend=NONE gui=NONE
437
437
-
hi User6 guifg=#D7C484 guibg=#C9A654 guisp=NONE blend=NONE gui=NONE
438
438
-
hi User7 guifg=#D7C484 guibg=#77824A guisp=NONE blend=NONE gui=NONE
439
439
-
hi User8 guifg=#D7C484 guibg=#B36B42 guisp=NONE blend=NONE gui=NONE
440
440
-
hi User9 guifg=#D7C484 guibg=#666666 guisp=NONE blend=NONE gui=NONE
441
441
-
hi VertSplit guifg=#221F1C guibg=#24211E guisp=NONE blend=NONE gui=NONE
442
442
-
hi Visual guifg=#212121 guibg=#77824A guisp=NONE blend=NONE gui=NONE
443
443
-
hi WarningMsg guifg=#B36B42 guibg=NONE guisp=NONE blend=NONE gui=NONE
444
444
-
hi WhichKeyBorder guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
445
445
-
hi WhichKeyDesc guifg=#5F865F guibg=#221F1C guisp=NONE blend=NONE gui=NONE
446
446
-
hi WhichKeyFloat guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
447
447
-
hi WhichKeyGroup guifg=NONE guibg=#221F1C guisp=NONE blend=NONE gui=NONE
448
448
-
hi WhichKey guifg=#D7C484 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
449
449
-
hi WhichKeySeparator guifg=#C9A654 guibg=#221F1C guisp=NONE blend=NONE gui=NONE
450
450
-
hi WhichKeyValue guifg=#C9A654 guibg=NONE guisp=NONE blend=NONE gui=NONE
451
451
-
hi WildMenu guifg=black guibg=#C9A654 guisp=NONE blend=NONE gui=NONE
452
452
-
hi WinBar guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=bold
453
453
-
hi xmlTag guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
454
454
-
hi xmlTagName guifg=#77824A guibg=NONE guisp=NONE blend=NONE gui=NONE
+11
-4
shipwright_build.lua
···
1
1
local colorscheme = require("lush_theme.darkearth")
2
2
local lushwright = require("shipwright.transform.lush")
3
3
4
4
-
run(
5
5
-
colorscheme,
6
6
-
lushwright.to_vimscript,
7
7
-
{ overwrite, "colors/darkearth.tmp" }
4
4
+
-- export to lua
5
5
+
run(colorscheme,
6
6
+
lushwright.to_lua,
7
7
+
{ patchwrite, "colors/darkearth.lua", "-- PATCH_OPEN", "-- PATCH_CLOSE" }
8
8
)
9
9
+
10
10
+
-- export to vimscript
11
11
+
-- run(
12
12
+
-- colorscheme,
13
13
+
-- lushwright.to_vimscript,
14
14
+
-- { overwrite, "colors/darkearth.tmp" }
15
15
+
-- )