@lobehub/ui 1.14.1 → 1.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/Highlighter/theme.js +282 -283
- package/package.json +1 -1
package/es/Highlighter/theme.js
CHANGED
|
@@ -1,1544 +1,1543 @@
|
|
|
1
1
|
import { colorScales } from "../styles/colors";
|
|
2
2
|
export var themeConfig = function themeConfig(isDarkMode) {
|
|
3
3
|
var type = isDarkMode ? 'dark' : 'light';
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var
|
|
11
|
-
var color9 = isDarkMode ? colorScales.lime[type][9] : colorScales.green[type][9];
|
|
4
|
+
var colorText = colorScales.gray[type][11];
|
|
5
|
+
var colorTextSecondary = isDarkMode ? colorScales.gray[type][9] : colorScales.gray[type][10];
|
|
6
|
+
var colorTextTertiary = isDarkMode ? colorScales.gray[type][6] : colorScales.gray[type][7];
|
|
7
|
+
var colorRed = isDarkMode ? colorScales.red[type][9] : colorScales.volcano[type][9];
|
|
8
|
+
var colorOrange = isDarkMode ? colorScales.gold[type][9] : colorScales.orange[type][9];
|
|
9
|
+
var colorGreen = isDarkMode ? colorScales.lime[type][9] : colorScales.green[type][9];
|
|
10
|
+
var colorBlue = isDarkMode ? colorScales.blue[type][9] : colorScales.geekblue[type][9];
|
|
12
11
|
return {
|
|
13
12
|
name: type,
|
|
14
13
|
type: type,
|
|
15
14
|
semanticHighlighting: true,
|
|
16
15
|
semanticTokenColors: {
|
|
17
16
|
enumMember: {
|
|
18
|
-
foreground:
|
|
17
|
+
foreground: colorBlue
|
|
19
18
|
},
|
|
20
19
|
'variable.constant': {
|
|
21
|
-
foreground:
|
|
20
|
+
foreground: colorGreen
|
|
22
21
|
},
|
|
23
22
|
'variable.defaultLibrary': {
|
|
24
|
-
foreground:
|
|
23
|
+
foreground: colorRed
|
|
25
24
|
},
|
|
26
25
|
'variable:dart': {
|
|
27
|
-
foreground:
|
|
26
|
+
foreground: colorGreen
|
|
28
27
|
},
|
|
29
28
|
'property:dart': {
|
|
30
|
-
foreground:
|
|
29
|
+
foreground: colorGreen
|
|
31
30
|
},
|
|
32
31
|
'annotation:dart': {
|
|
33
|
-
foreground:
|
|
32
|
+
foreground: colorGreen
|
|
34
33
|
},
|
|
35
34
|
'parameter.label:dart': {
|
|
36
|
-
foreground:
|
|
35
|
+
foreground: colorTextTertiary
|
|
37
36
|
},
|
|
38
37
|
macro: {
|
|
39
|
-
foreground:
|
|
38
|
+
foreground: colorGreen
|
|
40
39
|
},
|
|
41
40
|
tomlArrayKey: {
|
|
42
|
-
foreground:
|
|
41
|
+
foreground: colorRed
|
|
43
42
|
}
|
|
44
43
|
},
|
|
45
44
|
tokenColors: [{
|
|
46
45
|
scope: 'meta.embedded',
|
|
47
46
|
settings: {
|
|
48
|
-
foreground:
|
|
47
|
+
foreground: colorTextTertiary
|
|
49
48
|
}
|
|
50
49
|
}, {
|
|
51
50
|
name: 'unison punctuation',
|
|
52
51
|
scope: 'punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison',
|
|
53
52
|
settings: {
|
|
54
|
-
foreground:
|
|
53
|
+
foreground: colorText
|
|
55
54
|
}
|
|
56
55
|
}, {
|
|
57
56
|
name: 'haskell variable generic-type',
|
|
58
57
|
scope: 'variable.other.generic-type.haskell',
|
|
59
58
|
settings: {
|
|
60
|
-
foreground:
|
|
59
|
+
foreground: colorBlue
|
|
61
60
|
}
|
|
62
61
|
}, {
|
|
63
62
|
name: 'haskell storage type',
|
|
64
63
|
scope: 'storage.type.haskell',
|
|
65
64
|
settings: {
|
|
66
|
-
foreground:
|
|
65
|
+
foreground: colorGreen
|
|
67
66
|
}
|
|
68
67
|
}, {
|
|
69
68
|
name: 'support.variable.magic.python',
|
|
70
69
|
scope: 'support.variable.magic.python',
|
|
71
70
|
settings: {
|
|
72
|
-
foreground:
|
|
71
|
+
foreground: colorText
|
|
73
72
|
}
|
|
74
73
|
}, {
|
|
75
74
|
name: 'punctuation.separator.parameters.python',
|
|
76
75
|
scope: 'punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python',
|
|
77
76
|
settings: {
|
|
78
|
-
foreground:
|
|
77
|
+
foreground: colorTextTertiary
|
|
79
78
|
}
|
|
80
79
|
}, {
|
|
81
80
|
name: 'variable.parameter.function.language.special.self.python',
|
|
82
81
|
scope: 'variable.parameter.function.language.special.self.python',
|
|
83
82
|
settings: {
|
|
84
|
-
foreground:
|
|
83
|
+
foreground: colorRed
|
|
85
84
|
}
|
|
86
85
|
}, {
|
|
87
86
|
name: 'variable.parameter.function.language.special.cls.python',
|
|
88
87
|
scope: 'variable.parameter.function.language.special.cls.python',
|
|
89
88
|
settings: {
|
|
90
|
-
foreground:
|
|
89
|
+
foreground: colorRed
|
|
91
90
|
}
|
|
92
91
|
}, {
|
|
93
92
|
name: 'storage.modifier.lifetime.rust',
|
|
94
93
|
scope: 'storage.modifier.lifetime.rust',
|
|
95
94
|
settings: {
|
|
96
|
-
foreground:
|
|
95
|
+
foreground: colorTextTertiary
|
|
97
96
|
}
|
|
98
97
|
}, {
|
|
99
98
|
name: 'support.function.std.rust',
|
|
100
99
|
scope: 'support.function.std.rust',
|
|
101
100
|
settings: {
|
|
102
|
-
foreground:
|
|
101
|
+
foreground: colorOrange
|
|
103
102
|
}
|
|
104
103
|
}, {
|
|
105
104
|
name: 'entity.name.lifetime.rust',
|
|
106
105
|
scope: 'entity.name.lifetime.rust',
|
|
107
106
|
settings: {
|
|
108
|
-
foreground:
|
|
107
|
+
foreground: colorRed
|
|
109
108
|
}
|
|
110
109
|
}, {
|
|
111
110
|
name: 'variable.language.rust',
|
|
112
111
|
scope: 'variable.language.rust',
|
|
113
112
|
settings: {
|
|
114
|
-
foreground:
|
|
113
|
+
foreground: colorText
|
|
115
114
|
}
|
|
116
115
|
}, {
|
|
117
116
|
name: 'support.constant.edge',
|
|
118
117
|
scope: 'support.constant.edge',
|
|
119
118
|
settings: {
|
|
120
|
-
foreground:
|
|
119
|
+
foreground: colorBlue
|
|
121
120
|
}
|
|
122
121
|
}, {
|
|
123
122
|
name: 'regexp constant character-class',
|
|
124
123
|
scope: 'constant.other.character-class.regexp',
|
|
125
124
|
settings: {
|
|
126
|
-
foreground:
|
|
125
|
+
foreground: colorText
|
|
127
126
|
}
|
|
128
127
|
}, {
|
|
129
128
|
name: 'keyword.operator',
|
|
130
129
|
scope: ['keyword.operator.word'],
|
|
131
130
|
settings: {
|
|
132
|
-
foreground:
|
|
131
|
+
foreground: colorBlue
|
|
133
132
|
}
|
|
134
133
|
}, {
|
|
135
134
|
name: 'regexp operator.quantifier',
|
|
136
135
|
scope: 'keyword.operator.quantifier.regexp',
|
|
137
136
|
settings: {
|
|
138
|
-
foreground:
|
|
137
|
+
foreground: colorGreen
|
|
139
138
|
}
|
|
140
139
|
}, {
|
|
141
140
|
name: 'Text',
|
|
142
141
|
scope: 'variable.parameter.function',
|
|
143
142
|
settings: {
|
|
144
|
-
foreground:
|
|
143
|
+
foreground: colorTextTertiary
|
|
145
144
|
}
|
|
146
145
|
}, {
|
|
147
146
|
name: 'Comment Markup Link',
|
|
148
147
|
scope: 'comment markup.link',
|
|
149
148
|
settings: {
|
|
150
|
-
foreground:
|
|
149
|
+
foreground: colorTextTertiary
|
|
151
150
|
}
|
|
152
151
|
}, {
|
|
153
152
|
name: 'markup diff',
|
|
154
153
|
scope: 'markup.changed.diff',
|
|
155
154
|
settings: {
|
|
156
|
-
foreground:
|
|
155
|
+
foreground: colorRed
|
|
157
156
|
}
|
|
158
157
|
}, {
|
|
159
158
|
name: 'diff',
|
|
160
159
|
scope: 'meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff',
|
|
161
160
|
settings: {
|
|
162
|
-
foreground:
|
|
161
|
+
foreground: colorOrange
|
|
163
162
|
}
|
|
164
163
|
}, {
|
|
165
164
|
name: 'inserted.diff',
|
|
166
165
|
scope: 'markup.inserted.diff',
|
|
167
166
|
settings: {
|
|
168
|
-
foreground:
|
|
167
|
+
foreground: colorGreen
|
|
169
168
|
}
|
|
170
169
|
}, {
|
|
171
170
|
name: 'deleted.diff',
|
|
172
171
|
scope: 'markup.deleted.diff',
|
|
173
172
|
settings: {
|
|
174
|
-
foreground:
|
|
173
|
+
foreground: colorText
|
|
175
174
|
}
|
|
176
175
|
}, {
|
|
177
176
|
name: 'c++ function',
|
|
178
177
|
scope: 'meta.function.c,meta.function.cpp',
|
|
179
178
|
settings: {
|
|
180
|
-
foreground:
|
|
179
|
+
foreground: colorText
|
|
181
180
|
}
|
|
182
181
|
}, {
|
|
183
182
|
name: 'c++ block',
|
|
184
183
|
scope: 'punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c',
|
|
185
184
|
settings: {
|
|
186
|
-
foreground:
|
|
185
|
+
foreground: colorTextTertiary
|
|
187
186
|
}
|
|
188
187
|
}, {
|
|
189
188
|
name: 'js/ts punctuation separator key-value',
|
|
190
189
|
scope: 'punctuation.separator.key-value',
|
|
191
190
|
settings: {
|
|
192
|
-
foreground:
|
|
191
|
+
foreground: colorTextTertiary
|
|
193
192
|
}
|
|
194
193
|
}, {
|
|
195
194
|
name: 'js/ts import keyword',
|
|
196
195
|
scope: 'keyword.operator.expression.import',
|
|
197
196
|
settings: {
|
|
198
|
-
foreground:
|
|
197
|
+
foreground: colorOrange
|
|
199
198
|
}
|
|
200
199
|
}, {
|
|
201
200
|
name: 'math js/ts',
|
|
202
201
|
scope: 'support.constant.math',
|
|
203
202
|
settings: {
|
|
204
|
-
foreground:
|
|
203
|
+
foreground: colorRed
|
|
205
204
|
}
|
|
206
205
|
}, {
|
|
207
206
|
name: 'math property js/ts',
|
|
208
207
|
scope: 'support.constant.property.math',
|
|
209
208
|
settings: {
|
|
210
|
-
foreground:
|
|
209
|
+
foreground: colorGreen
|
|
211
210
|
}
|
|
212
211
|
}, {
|
|
213
212
|
name: 'js/ts variable.other.constant',
|
|
214
213
|
scope: 'variable.other.constant',
|
|
215
214
|
settings: {
|
|
216
|
-
foreground:
|
|
215
|
+
foreground: colorRed
|
|
217
216
|
}
|
|
218
217
|
}, {
|
|
219
218
|
name: 'java type',
|
|
220
219
|
scope: ['storage.type.annotation.java', 'storage.type.object.array.java'],
|
|
221
220
|
settings: {
|
|
222
|
-
foreground:
|
|
221
|
+
foreground: colorRed
|
|
223
222
|
}
|
|
224
223
|
}, {
|
|
225
224
|
name: 'java source',
|
|
226
225
|
scope: 'source.java',
|
|
227
226
|
settings: {
|
|
228
|
-
foreground:
|
|
227
|
+
foreground: colorText
|
|
229
228
|
}
|
|
230
229
|
}, {
|
|
231
230
|
name: 'java modifier.import',
|
|
232
231
|
scope: 'punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java',
|
|
233
232
|
settings: {
|
|
234
|
-
foreground:
|
|
233
|
+
foreground: colorTextTertiary
|
|
235
234
|
}
|
|
236
235
|
}, {
|
|
237
236
|
name: 'java modifier.import',
|
|
238
237
|
scope: 'meta.method.java',
|
|
239
238
|
settings: {
|
|
240
|
-
foreground:
|
|
239
|
+
foreground: colorOrange
|
|
241
240
|
}
|
|
242
241
|
}, {
|
|
243
242
|
name: 'java modifier.import',
|
|
244
243
|
scope: 'storage.modifier.import.java,storage.type.java,storage.type.generic.java',
|
|
245
244
|
settings: {
|
|
246
|
-
foreground:
|
|
245
|
+
foreground: colorRed
|
|
247
246
|
}
|
|
248
247
|
}, {
|
|
249
248
|
name: 'java instanceof',
|
|
250
249
|
scope: 'keyword.operator.instanceof.java',
|
|
251
250
|
settings: {
|
|
252
|
-
foreground:
|
|
251
|
+
foreground: colorBlue
|
|
253
252
|
}
|
|
254
253
|
}, {
|
|
255
254
|
name: 'java variable.name',
|
|
256
255
|
scope: 'meta.definition.variable.name.java',
|
|
257
256
|
settings: {
|
|
258
|
-
foreground:
|
|
257
|
+
foreground: colorText
|
|
259
258
|
}
|
|
260
259
|
}, {
|
|
261
260
|
name: 'operator logical',
|
|
262
261
|
scope: 'keyword.operator.logical',
|
|
263
262
|
settings: {
|
|
264
|
-
foreground:
|
|
263
|
+
foreground: colorBlue
|
|
265
264
|
}
|
|
266
265
|
}, {
|
|
267
266
|
name: 'operator bitwise',
|
|
268
267
|
scope: 'keyword.operator.bitwise',
|
|
269
268
|
settings: {
|
|
270
|
-
foreground:
|
|
269
|
+
foreground: colorBlue
|
|
271
270
|
}
|
|
272
271
|
}, {
|
|
273
272
|
name: 'operator channel',
|
|
274
273
|
scope: 'keyword.operator.channel',
|
|
275
274
|
settings: {
|
|
276
|
-
foreground:
|
|
275
|
+
foreground: colorBlue
|
|
277
276
|
}
|
|
278
277
|
}, {
|
|
279
278
|
name: 'support.constant.property-value.scss',
|
|
280
279
|
scope: 'support.constant.property-value.scss,support.constant.property-value.css',
|
|
281
280
|
settings: {
|
|
282
|
-
foreground:
|
|
281
|
+
foreground: colorGreen
|
|
283
282
|
}
|
|
284
283
|
}, {
|
|
285
284
|
name: 'CSS/SCSS/LESS Operators',
|
|
286
285
|
scope: 'keyword.operator.css,keyword.operator.scss,keyword.operator.less',
|
|
287
286
|
settings: {
|
|
288
|
-
foreground:
|
|
287
|
+
foreground: colorBlue
|
|
289
288
|
}
|
|
290
289
|
}, {
|
|
291
290
|
name: 'css color standard name',
|
|
292
291
|
scope: 'support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss',
|
|
293
292
|
settings: {
|
|
294
|
-
foreground:
|
|
293
|
+
foreground: colorGreen
|
|
295
294
|
}
|
|
296
295
|
}, {
|
|
297
296
|
name: 'css comma',
|
|
298
297
|
scope: 'punctuation.separator.list.comma.css',
|
|
299
298
|
settings: {
|
|
300
|
-
foreground:
|
|
299
|
+
foreground: colorTextTertiary
|
|
301
300
|
}
|
|
302
301
|
}, {
|
|
303
302
|
name: 'css attribute-name.id',
|
|
304
303
|
scope: 'support.constant.color.w3c-standard-color-name.css',
|
|
305
304
|
settings: {
|
|
306
|
-
foreground:
|
|
305
|
+
foreground: colorGreen
|
|
307
306
|
}
|
|
308
307
|
}, {
|
|
309
308
|
name: 'css property-name',
|
|
310
309
|
scope: 'support.type.vendored.property-name.css',
|
|
311
310
|
settings: {
|
|
312
|
-
foreground:
|
|
311
|
+
foreground: colorBlue
|
|
313
312
|
}
|
|
314
313
|
}, {
|
|
315
314
|
name: 'js/ts module',
|
|
316
315
|
scope: 'support.module.node,support.type.object.module,support.module.node',
|
|
317
316
|
settings: {
|
|
318
|
-
foreground:
|
|
317
|
+
foreground: colorRed
|
|
319
318
|
}
|
|
320
319
|
}, {
|
|
321
320
|
name: 'entity.name.type.module',
|
|
322
321
|
scope: 'entity.name.type.module',
|
|
323
322
|
settings: {
|
|
324
|
-
foreground:
|
|
323
|
+
foreground: colorRed
|
|
325
324
|
}
|
|
326
325
|
}, {
|
|
327
326
|
name: 'js variable readwrite',
|
|
328
327
|
scope: 'variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node',
|
|
329
328
|
settings: {
|
|
330
|
-
foreground:
|
|
329
|
+
foreground: colorText
|
|
331
330
|
}
|
|
332
331
|
}, {
|
|
333
332
|
name: 'js/ts json',
|
|
334
333
|
scope: 'support.constant.json',
|
|
335
334
|
settings: {
|
|
336
|
-
foreground:
|
|
335
|
+
foreground: colorGreen
|
|
337
336
|
}
|
|
338
337
|
}, {
|
|
339
338
|
name: 'js/ts Keyword',
|
|
340
339
|
scope: ['keyword.operator.expression.instanceof', 'keyword.operator.new', 'keyword.operator.ternary', 'keyword.operator.optional', 'keyword.operator.expression.keyof'],
|
|
341
340
|
settings: {
|
|
342
|
-
foreground:
|
|
341
|
+
foreground: colorBlue
|
|
343
342
|
}
|
|
344
343
|
}, {
|
|
345
344
|
name: 'js/ts console',
|
|
346
345
|
scope: 'support.type.object.console',
|
|
347
346
|
settings: {
|
|
348
|
-
foreground:
|
|
347
|
+
foreground: colorText
|
|
349
348
|
}
|
|
350
349
|
}, {
|
|
351
350
|
name: 'js/ts support.variable.property.process',
|
|
352
351
|
scope: 'support.variable.property.process',
|
|
353
352
|
settings: {
|
|
354
|
-
foreground:
|
|
353
|
+
foreground: colorGreen
|
|
355
354
|
}
|
|
356
355
|
}, {
|
|
357
356
|
name: 'js console function',
|
|
358
357
|
scope: 'entity.name.function,support.function.console',
|
|
359
358
|
settings: {
|
|
360
|
-
foreground:
|
|
359
|
+
foreground: colorOrange
|
|
361
360
|
}
|
|
362
361
|
}, {
|
|
363
362
|
name: 'keyword.operator.misc.rust',
|
|
364
363
|
scope: 'keyword.operator.misc.rust',
|
|
365
364
|
settings: {
|
|
366
|
-
foreground:
|
|
365
|
+
foreground: colorTextTertiary
|
|
367
366
|
}
|
|
368
367
|
}, {
|
|
369
368
|
name: 'keyword.operator.sigil.rust',
|
|
370
369
|
scope: 'keyword.operator.sigil.rust',
|
|
371
370
|
settings: {
|
|
372
|
-
foreground:
|
|
371
|
+
foreground: colorBlue
|
|
373
372
|
}
|
|
374
373
|
}, {
|
|
375
374
|
name: 'operator',
|
|
376
375
|
scope: 'keyword.operator.delete',
|
|
377
376
|
settings: {
|
|
378
|
-
foreground:
|
|
377
|
+
foreground: colorBlue
|
|
379
378
|
}
|
|
380
379
|
}, {
|
|
381
380
|
name: 'js dom',
|
|
382
381
|
scope: 'support.type.object.dom',
|
|
383
382
|
settings: {
|
|
384
|
-
foreground:
|
|
383
|
+
foreground: colorBlue
|
|
385
384
|
}
|
|
386
385
|
}, {
|
|
387
386
|
name: 'js dom variable',
|
|
388
387
|
scope: 'support.variable.dom,support.variable.property.dom',
|
|
389
388
|
settings: {
|
|
390
|
-
foreground:
|
|
389
|
+
foreground: colorText
|
|
391
390
|
}
|
|
392
391
|
}, {
|
|
393
392
|
name: 'keyword.operator',
|
|
394
393
|
scope: 'keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational',
|
|
395
394
|
settings: {
|
|
396
|
-
foreground:
|
|
395
|
+
foreground: colorBlue
|
|
397
396
|
}
|
|
398
397
|
}, {
|
|
399
398
|
name: 'C operator assignment',
|
|
400
399
|
scope: 'keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp',
|
|
401
400
|
settings: {
|
|
402
|
-
foreground:
|
|
401
|
+
foreground: colorBlue
|
|
403
402
|
}
|
|
404
403
|
}, {
|
|
405
404
|
name: 'Punctuation',
|
|
406
405
|
scope: 'punctuation.separator.delimiter',
|
|
407
406
|
settings: {
|
|
408
|
-
foreground:
|
|
407
|
+
foreground: colorTextTertiary
|
|
409
408
|
}
|
|
410
409
|
}, {
|
|
411
410
|
name: 'Other punctuation .c',
|
|
412
411
|
scope: 'punctuation.separator.c,punctuation.separator.cpp',
|
|
413
412
|
settings: {
|
|
414
|
-
foreground:
|
|
413
|
+
foreground: colorBlue
|
|
415
414
|
}
|
|
416
415
|
}, {
|
|
417
416
|
name: 'C type posix-reserved',
|
|
418
417
|
scope: 'support.type.posix-reserved.c,support.type.posix-reserved.cpp',
|
|
419
418
|
settings: {
|
|
420
|
-
foreground:
|
|
419
|
+
foreground: colorBlue
|
|
421
420
|
}
|
|
422
421
|
}, {
|
|
423
422
|
name: 'keyword.operator.sizeof.c',
|
|
424
423
|
scope: 'keyword.operator.sizeof.c,keyword.operator.sizeof.cpp',
|
|
425
424
|
settings: {
|
|
426
|
-
foreground:
|
|
425
|
+
foreground: colorBlue
|
|
427
426
|
}
|
|
428
427
|
}, {
|
|
429
428
|
name: 'python parameter',
|
|
430
429
|
scope: 'variable.parameter.function.language.python',
|
|
431
430
|
settings: {
|
|
432
|
-
foreground:
|
|
431
|
+
foreground: colorGreen
|
|
433
432
|
}
|
|
434
433
|
}, {
|
|
435
434
|
name: 'python type',
|
|
436
435
|
scope: 'support.type.python',
|
|
437
436
|
settings: {
|
|
438
|
-
foreground:
|
|
437
|
+
foreground: colorBlue
|
|
439
438
|
}
|
|
440
439
|
}, {
|
|
441
440
|
name: 'python logical',
|
|
442
441
|
scope: 'keyword.operator.logical.python',
|
|
443
442
|
settings: {
|
|
444
|
-
foreground:
|
|
443
|
+
foreground: colorBlue
|
|
445
444
|
}
|
|
446
445
|
}, {
|
|
447
446
|
name: 'pyCs',
|
|
448
447
|
scope: 'variable.parameter.function.python',
|
|
449
448
|
settings: {
|
|
450
|
-
foreground:
|
|
449
|
+
foreground: colorGreen
|
|
451
450
|
}
|
|
452
451
|
}, {
|
|
453
452
|
name: 'python block',
|
|
454
453
|
scope: 'punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python',
|
|
455
454
|
settings: {
|
|
456
|
-
foreground:
|
|
455
|
+
foreground: colorTextTertiary
|
|
457
456
|
}
|
|
458
457
|
}, {
|
|
459
458
|
name: 'python function-call.generic',
|
|
460
459
|
scope: 'meta.function-call.generic.python',
|
|
461
460
|
settings: {
|
|
462
|
-
foreground:
|
|
461
|
+
foreground: colorOrange
|
|
463
462
|
}
|
|
464
463
|
}, {
|
|
465
464
|
name: 'python placeholder reset to normal string',
|
|
466
465
|
scope: 'constant.character.format.placeholder.other.python',
|
|
467
466
|
settings: {
|
|
468
|
-
foreground:
|
|
467
|
+
foreground: colorGreen
|
|
469
468
|
}
|
|
470
469
|
}, {
|
|
471
470
|
name: 'Operators',
|
|
472
471
|
scope: 'keyword.operator',
|
|
473
472
|
settings: {
|
|
474
|
-
foreground:
|
|
473
|
+
foreground: colorTextTertiary
|
|
475
474
|
}
|
|
476
475
|
}, {
|
|
477
476
|
name: 'Compound Assignment Operators',
|
|
478
477
|
scope: 'keyword.operator.assignment.compound',
|
|
479
478
|
settings: {
|
|
480
|
-
foreground:
|
|
479
|
+
foreground: colorBlue
|
|
481
480
|
}
|
|
482
481
|
}, {
|
|
483
482
|
name: 'Compound Assignment Operators js/ts',
|
|
484
483
|
scope: 'keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts',
|
|
485
484
|
settings: {
|
|
486
|
-
foreground:
|
|
485
|
+
foreground: colorBlue
|
|
487
486
|
}
|
|
488
487
|
}, {
|
|
489
488
|
name: 'Keywords',
|
|
490
489
|
scope: 'keyword',
|
|
491
490
|
settings: {
|
|
492
|
-
foreground:
|
|
491
|
+
foreground: colorBlue
|
|
493
492
|
}
|
|
494
493
|
}, {
|
|
495
494
|
name: 'Namespaces',
|
|
496
495
|
scope: 'entity.name.namespace',
|
|
497
496
|
settings: {
|
|
498
|
-
foreground:
|
|
497
|
+
foreground: colorRed
|
|
499
498
|
}
|
|
500
499
|
}, {
|
|
501
500
|
name: 'Variables',
|
|
502
501
|
scope: 'variable',
|
|
503
502
|
settings: {
|
|
504
|
-
foreground:
|
|
503
|
+
foreground: colorText
|
|
505
504
|
}
|
|
506
505
|
}, {
|
|
507
506
|
name: 'Variables',
|
|
508
507
|
scope: 'variable.c',
|
|
509
508
|
settings: {
|
|
510
|
-
foreground:
|
|
509
|
+
foreground: colorTextTertiary
|
|
511
510
|
}
|
|
512
511
|
}, {
|
|
513
512
|
name: 'Language variables',
|
|
514
513
|
scope: 'variable.language',
|
|
515
514
|
settings: {
|
|
516
|
-
foreground:
|
|
515
|
+
foreground: colorRed
|
|
517
516
|
}
|
|
518
517
|
}, {
|
|
519
518
|
name: 'Java Variables',
|
|
520
519
|
scope: 'token.variable.parameter.java',
|
|
521
520
|
settings: {
|
|
522
|
-
foreground:
|
|
521
|
+
foreground: colorTextTertiary
|
|
523
522
|
}
|
|
524
523
|
}, {
|
|
525
524
|
name: 'Java Imports',
|
|
526
525
|
scope: 'import.storage.java',
|
|
527
526
|
settings: {
|
|
528
|
-
foreground:
|
|
527
|
+
foreground: colorRed
|
|
529
528
|
}
|
|
530
529
|
}, {
|
|
531
530
|
name: 'Packages',
|
|
532
531
|
scope: 'token.package.keyword',
|
|
533
532
|
settings: {
|
|
534
|
-
foreground:
|
|
533
|
+
foreground: colorBlue
|
|
535
534
|
}
|
|
536
535
|
}, {
|
|
537
536
|
name: 'Packages',
|
|
538
537
|
scope: 'token.package',
|
|
539
538
|
settings: {
|
|
540
|
-
foreground:
|
|
539
|
+
foreground: colorTextTertiary
|
|
541
540
|
}
|
|
542
541
|
}, {
|
|
543
542
|
name: 'Functions',
|
|
544
543
|
scope: ['entity.name.function', 'meta.require', 'support.function.any-method', 'variable.function'],
|
|
545
544
|
settings: {
|
|
546
|
-
foreground:
|
|
545
|
+
foreground: colorOrange
|
|
547
546
|
}
|
|
548
547
|
}, {
|
|
549
548
|
name: 'Classes',
|
|
550
549
|
scope: 'entity.name.type.namespace',
|
|
551
550
|
settings: {
|
|
552
|
-
foreground:
|
|
551
|
+
foreground: colorRed
|
|
553
552
|
}
|
|
554
553
|
}, {
|
|
555
554
|
name: 'Classes',
|
|
556
555
|
scope: 'support.class, entity.name.type.class',
|
|
557
556
|
settings: {
|
|
558
|
-
foreground:
|
|
557
|
+
foreground: colorRed
|
|
559
558
|
}
|
|
560
559
|
}, {
|
|
561
560
|
name: 'Class name',
|
|
562
561
|
scope: 'entity.name.class.identifier.namespace.type',
|
|
563
562
|
settings: {
|
|
564
|
-
foreground:
|
|
563
|
+
foreground: colorRed
|
|
565
564
|
}
|
|
566
565
|
}, {
|
|
567
566
|
name: 'Class name',
|
|
568
567
|
scope: ['entity.name.class', 'variable.other.class.js', 'variable.other.class.ts'],
|
|
569
568
|
settings: {
|
|
570
|
-
foreground:
|
|
569
|
+
foreground: colorRed
|
|
571
570
|
}
|
|
572
571
|
}, {
|
|
573
572
|
name: 'Class name php',
|
|
574
573
|
scope: 'variable.other.class.php',
|
|
575
574
|
settings: {
|
|
576
|
-
foreground:
|
|
575
|
+
foreground: colorText
|
|
577
576
|
}
|
|
578
577
|
}, {
|
|
579
578
|
name: 'Type Name',
|
|
580
579
|
scope: 'entity.name.type',
|
|
581
580
|
settings: {
|
|
582
|
-
foreground:
|
|
581
|
+
foreground: colorRed
|
|
583
582
|
}
|
|
584
583
|
}, {
|
|
585
584
|
name: 'Keyword Control',
|
|
586
585
|
scope: 'keyword.control',
|
|
587
586
|
settings: {
|
|
588
|
-
foreground:
|
|
587
|
+
foreground: colorBlue
|
|
589
588
|
}
|
|
590
589
|
}, {
|
|
591
590
|
name: 'Control Elements',
|
|
592
591
|
scope: 'control.elements, keyword.operator.less',
|
|
593
592
|
settings: {
|
|
594
|
-
foreground:
|
|
593
|
+
foreground: colorGreen
|
|
595
594
|
}
|
|
596
595
|
}, {
|
|
597
596
|
name: 'Methods',
|
|
598
597
|
scope: 'keyword.other.special-method',
|
|
599
598
|
settings: {
|
|
600
|
-
foreground:
|
|
599
|
+
foreground: colorOrange
|
|
601
600
|
}
|
|
602
601
|
}, {
|
|
603
602
|
name: 'Storage',
|
|
604
603
|
scope: 'storage',
|
|
605
604
|
settings: {
|
|
606
|
-
foreground:
|
|
605
|
+
foreground: colorBlue
|
|
607
606
|
}
|
|
608
607
|
}, {
|
|
609
608
|
name: 'Storage JS TS',
|
|
610
609
|
scope: 'token.storage',
|
|
611
610
|
settings: {
|
|
612
|
-
foreground:
|
|
611
|
+
foreground: colorBlue
|
|
613
612
|
}
|
|
614
613
|
}, {
|
|
615
614
|
name: 'Source Js Keyword Operator Delete,source Js Keyword Operator In,source Js Keyword Operator Of,source Js Keyword Operator Instanceof,source Js Keyword Operator New,source Js Keyword Operator Typeof,source Js Keyword Operator Void',
|
|
616
615
|
scope: 'keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void',
|
|
617
616
|
settings: {
|
|
618
|
-
foreground:
|
|
617
|
+
foreground: colorBlue
|
|
619
618
|
}
|
|
620
619
|
}, {
|
|
621
620
|
name: 'Java Storage',
|
|
622
621
|
scope: 'token.storage.type.java',
|
|
623
622
|
settings: {
|
|
624
|
-
foreground:
|
|
623
|
+
foreground: colorRed
|
|
625
624
|
}
|
|
626
625
|
}, {
|
|
627
626
|
name: 'Support',
|
|
628
627
|
scope: 'support.function',
|
|
629
628
|
settings: {
|
|
630
|
-
foreground:
|
|
629
|
+
foreground: colorBlue
|
|
631
630
|
}
|
|
632
631
|
}, {
|
|
633
632
|
name: 'Support type',
|
|
634
633
|
scope: 'support.type.property-name',
|
|
635
634
|
settings: {
|
|
636
|
-
foreground:
|
|
635
|
+
foreground: colorTextTertiary
|
|
637
636
|
}
|
|
638
637
|
}, {
|
|
639
638
|
name: '[VSCODE-CUSTOM] toml support',
|
|
640
639
|
scope: 'support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml',
|
|
641
640
|
settings: {
|
|
642
|
-
foreground:
|
|
641
|
+
foreground: colorText
|
|
643
642
|
}
|
|
644
643
|
}, {
|
|
645
644
|
name: 'Support type',
|
|
646
645
|
scope: 'support.constant.property-value',
|
|
647
646
|
settings: {
|
|
648
|
-
foreground:
|
|
647
|
+
foreground: colorTextTertiary
|
|
649
648
|
}
|
|
650
649
|
}, {
|
|
651
650
|
name: 'Support type',
|
|
652
651
|
scope: 'support.constant.font-name',
|
|
653
652
|
settings: {
|
|
654
|
-
foreground:
|
|
653
|
+
foreground: colorGreen
|
|
655
654
|
}
|
|
656
655
|
}, {
|
|
657
656
|
name: 'Meta tag',
|
|
658
657
|
scope: 'meta.tag',
|
|
659
658
|
settings: {
|
|
660
|
-
foreground:
|
|
659
|
+
foreground: colorTextTertiary
|
|
661
660
|
}
|
|
662
661
|
}, {
|
|
663
662
|
name: 'Strings',
|
|
664
663
|
scope: 'string',
|
|
665
664
|
settings: {
|
|
666
|
-
foreground:
|
|
665
|
+
foreground: colorGreen
|
|
667
666
|
}
|
|
668
667
|
}, {
|
|
669
668
|
name: 'Constant other symbol',
|
|
670
669
|
scope: 'constant.other.symbol',
|
|
671
670
|
settings: {
|
|
672
|
-
foreground:
|
|
671
|
+
foreground: colorBlue
|
|
673
672
|
}
|
|
674
673
|
}, {
|
|
675
674
|
name: 'Integers',
|
|
676
675
|
scope: 'constant.numeric',
|
|
677
676
|
settings: {
|
|
678
|
-
foreground:
|
|
677
|
+
foreground: colorGreen
|
|
679
678
|
}
|
|
680
679
|
}, {
|
|
681
680
|
name: 'Constants',
|
|
682
681
|
scope: 'constant',
|
|
683
682
|
settings: {
|
|
684
|
-
foreground:
|
|
683
|
+
foreground: colorGreen
|
|
685
684
|
}
|
|
686
685
|
}, {
|
|
687
686
|
name: 'Constants',
|
|
688
687
|
scope: 'punctuation.definition.constant',
|
|
689
688
|
settings: {
|
|
690
|
-
foreground:
|
|
689
|
+
foreground: colorGreen
|
|
691
690
|
}
|
|
692
691
|
}, {
|
|
693
692
|
name: 'Tags',
|
|
694
693
|
scope: 'entity.name.tag',
|
|
695
694
|
settings: {
|
|
696
|
-
foreground:
|
|
695
|
+
foreground: colorText
|
|
697
696
|
}
|
|
698
697
|
}, {
|
|
699
698
|
name: 'Attributes',
|
|
700
699
|
scope: 'entity.other.attribute-name',
|
|
701
700
|
settings: {
|
|
702
|
-
foreground:
|
|
701
|
+
foreground: colorGreen
|
|
703
702
|
}
|
|
704
703
|
}, {
|
|
705
704
|
name: 'Attribute IDs',
|
|
706
705
|
scope: 'entity.other.attribute-name.id',
|
|
707
706
|
settings: {
|
|
708
|
-
foreground:
|
|
707
|
+
foreground: colorOrange
|
|
709
708
|
}
|
|
710
709
|
}, {
|
|
711
710
|
name: 'Attribute class',
|
|
712
711
|
scope: 'entity.other.attribute-name.class.css',
|
|
713
712
|
settings: {
|
|
714
|
-
foreground:
|
|
713
|
+
foreground: colorGreen
|
|
715
714
|
}
|
|
716
715
|
}, {
|
|
717
716
|
name: 'Selector',
|
|
718
717
|
scope: 'meta.selector',
|
|
719
718
|
settings: {
|
|
720
|
-
foreground:
|
|
719
|
+
foreground: colorBlue
|
|
721
720
|
}
|
|
722
721
|
}, {
|
|
723
722
|
name: 'Headings',
|
|
724
723
|
scope: 'markup.heading',
|
|
725
724
|
settings: {
|
|
726
|
-
foreground:
|
|
725
|
+
foreground: colorText
|
|
727
726
|
}
|
|
728
727
|
}, {
|
|
729
728
|
name: 'Headings',
|
|
730
729
|
scope: 'markup.heading punctuation.definition.heading, entity.name.section',
|
|
731
730
|
settings: {
|
|
732
|
-
foreground:
|
|
731
|
+
foreground: colorOrange
|
|
733
732
|
}
|
|
734
733
|
}, {
|
|
735
734
|
name: 'Units',
|
|
736
735
|
scope: 'keyword.other.unit',
|
|
737
736
|
settings: {
|
|
738
|
-
foreground:
|
|
737
|
+
foreground: colorText
|
|
739
738
|
}
|
|
740
739
|
}, {
|
|
741
740
|
name: 'Bold',
|
|
742
741
|
scope: 'markup.bold,todo.bold',
|
|
743
742
|
settings: {
|
|
744
|
-
foreground:
|
|
743
|
+
foreground: colorGreen
|
|
745
744
|
}
|
|
746
745
|
}, {
|
|
747
746
|
name: 'Bold',
|
|
748
747
|
scope: 'punctuation.definition.bold',
|
|
749
748
|
settings: {
|
|
750
|
-
foreground:
|
|
749
|
+
foreground: colorRed
|
|
751
750
|
}
|
|
752
751
|
}, {
|
|
753
752
|
name: 'markup Italic',
|
|
754
753
|
scope: 'markup.italic, punctuation.definition.italic,todo.emphasis',
|
|
755
754
|
settings: {
|
|
756
|
-
foreground:
|
|
755
|
+
foreground: colorBlue
|
|
757
756
|
}
|
|
758
757
|
}, {
|
|
759
758
|
name: 'emphasis md',
|
|
760
759
|
scope: 'emphasis md',
|
|
761
760
|
settings: {
|
|
762
|
-
foreground:
|
|
761
|
+
foreground: colorBlue
|
|
763
762
|
}
|
|
764
763
|
}, {
|
|
765
764
|
name: '[VSCODE-CUSTOM] Markdown headings',
|
|
766
765
|
scope: 'entity.name.section.markdown',
|
|
767
766
|
settings: {
|
|
768
|
-
foreground:
|
|
767
|
+
foreground: colorText
|
|
769
768
|
}
|
|
770
769
|
}, {
|
|
771
770
|
name: '[VSCODE-CUSTOM] Markdown heading Punctuation Definition',
|
|
772
771
|
scope: 'punctuation.definition.heading.markdown',
|
|
773
772
|
settings: {
|
|
774
|
-
foreground:
|
|
773
|
+
foreground: colorText
|
|
775
774
|
}
|
|
776
775
|
}, {
|
|
777
776
|
name: 'punctuation.definition.list.begin.markdown',
|
|
778
777
|
scope: 'punctuation.definition.list.begin.markdown',
|
|
779
778
|
settings: {
|
|
780
|
-
foreground:
|
|
779
|
+
foreground: colorRed
|
|
781
780
|
}
|
|
782
781
|
}, {
|
|
783
782
|
name: '[VSCODE-CUSTOM] Markdown heading setext',
|
|
784
783
|
scope: 'markup.heading.setext',
|
|
785
784
|
settings: {
|
|
786
|
-
foreground:
|
|
785
|
+
foreground: colorTextTertiary
|
|
787
786
|
}
|
|
788
787
|
}, {
|
|
789
788
|
name: '[VSCODE-CUSTOM] Markdown Punctuation Definition Bold',
|
|
790
789
|
scope: 'punctuation.definition.bold.markdown',
|
|
791
790
|
settings: {
|
|
792
|
-
foreground:
|
|
791
|
+
foreground: colorGreen
|
|
793
792
|
}
|
|
794
793
|
}, {
|
|
795
794
|
name: '[VSCODE-CUSTOM] Markdown Inline Raw',
|
|
796
795
|
scope: 'markup.inline.raw.markdown',
|
|
797
796
|
settings: {
|
|
798
|
-
foreground:
|
|
797
|
+
foreground: colorGreen
|
|
799
798
|
}
|
|
800
799
|
}, {
|
|
801
800
|
name: '[VSCODE-CUSTOM] Markdown Inline Raw',
|
|
802
801
|
scope: 'markup.inline.raw.string.markdown',
|
|
803
802
|
settings: {
|
|
804
|
-
foreground:
|
|
803
|
+
foreground: colorGreen
|
|
805
804
|
}
|
|
806
805
|
}, {
|
|
807
806
|
name: '[VSCODE-CUSTOM] Markdown Inline Raw punctuation',
|
|
808
807
|
scope: 'punctuation.definition.raw.markdown',
|
|
809
808
|
settings: {
|
|
810
|
-
foreground:
|
|
809
|
+
foreground: colorRed
|
|
811
810
|
}
|
|
812
811
|
}, {
|
|
813
812
|
name: '[VSCODE-CUSTOM] Markdown List Punctuation Definition',
|
|
814
813
|
scope: 'punctuation.definition.list.markdown',
|
|
815
814
|
settings: {
|
|
816
|
-
foreground:
|
|
815
|
+
foreground: colorRed
|
|
817
816
|
}
|
|
818
817
|
}, {
|
|
819
818
|
name: '[VSCODE-CUSTOM] Markdown Punctuation Definition String',
|
|
820
819
|
scope: ['punctuation.definition.string.begin.markdown', 'punctuation.definition.string.end.markdown', 'punctuation.definition.metadata.markdown'],
|
|
821
820
|
settings: {
|
|
822
|
-
foreground:
|
|
821
|
+
foreground: colorText
|
|
823
822
|
}
|
|
824
823
|
}, {
|
|
825
824
|
name: 'beginning.punctuation.definition.list.markdown',
|
|
826
825
|
scope: ['beginning.punctuation.definition.list.markdown'],
|
|
827
826
|
settings: {
|
|
828
|
-
foreground:
|
|
827
|
+
foreground: colorText
|
|
829
828
|
}
|
|
830
829
|
}, {
|
|
831
830
|
name: '[VSCODE-CUSTOM] Markdown Punctuation Definition Link',
|
|
832
831
|
scope: 'punctuation.definition.metadata.markdown',
|
|
833
832
|
settings: {
|
|
834
|
-
foreground:
|
|
833
|
+
foreground: colorText
|
|
835
834
|
}
|
|
836
835
|
}, {
|
|
837
836
|
name: '[VSCODE-CUSTOM] Markdown Underline Link/Image',
|
|
838
837
|
scope: 'markup.underline.link.markdown,markup.underline.link.image.markdown',
|
|
839
838
|
settings: {
|
|
840
|
-
foreground:
|
|
839
|
+
foreground: colorBlue
|
|
841
840
|
}
|
|
842
841
|
}, {
|
|
843
842
|
name: '[VSCODE-CUSTOM] Markdown Link Title/Description',
|
|
844
843
|
scope: 'string.other.link.title.markdown,string.other.link.description.markdown',
|
|
845
844
|
settings: {
|
|
846
|
-
foreground:
|
|
845
|
+
foreground: colorOrange
|
|
847
846
|
}
|
|
848
847
|
}, {
|
|
849
848
|
name: '[VSCODE-CUSTOM] Asciidoc Inline Raw',
|
|
850
849
|
scope: 'markup.raw.monospace.asciidoc',
|
|
851
850
|
settings: {
|
|
852
|
-
foreground:
|
|
851
|
+
foreground: colorGreen
|
|
853
852
|
}
|
|
854
853
|
}, {
|
|
855
854
|
name: '[VSCODE-CUSTOM] Asciidoc Inline Raw Punctuation Definition',
|
|
856
855
|
scope: 'punctuation.definition.asciidoc',
|
|
857
856
|
settings: {
|
|
858
|
-
foreground:
|
|
857
|
+
foreground: colorRed
|
|
859
858
|
}
|
|
860
859
|
}, {
|
|
861
860
|
name: '[VSCODE-CUSTOM] Asciidoc List Punctuation Definition',
|
|
862
861
|
scope: 'markup.list.asciidoc',
|
|
863
862
|
settings: {
|
|
864
|
-
foreground:
|
|
863
|
+
foreground: colorRed
|
|
865
864
|
}
|
|
866
865
|
}, {
|
|
867
866
|
name: '[VSCODE-CUSTOM] Asciidoc underline link',
|
|
868
867
|
scope: 'markup.link.asciidoc,markup.other.url.asciidoc',
|
|
869
868
|
settings: {
|
|
870
|
-
foreground:
|
|
869
|
+
foreground: colorBlue
|
|
871
870
|
}
|
|
872
871
|
}, {
|
|
873
872
|
name: '[VSCODE-CUSTOM] Asciidoc link name',
|
|
874
873
|
scope: 'string.unquoted.asciidoc,markup.other.url.asciidoc',
|
|
875
874
|
settings: {
|
|
876
|
-
foreground:
|
|
875
|
+
foreground: colorOrange
|
|
877
876
|
}
|
|
878
877
|
}, {
|
|
879
878
|
name: 'Regular Expressions',
|
|
880
879
|
scope: 'string.regexp',
|
|
881
880
|
settings: {
|
|
882
|
-
foreground:
|
|
881
|
+
foreground: colorBlue
|
|
883
882
|
}
|
|
884
883
|
}, {
|
|
885
884
|
name: 'Embedded',
|
|
886
885
|
scope: 'punctuation.section.embedded, variable.interpolation',
|
|
887
886
|
settings: {
|
|
888
|
-
foreground:
|
|
887
|
+
foreground: colorText
|
|
889
888
|
}
|
|
890
889
|
}, {
|
|
891
890
|
name: 'Embedded',
|
|
892
891
|
scope: 'punctuation.section.embedded.begin,punctuation.section.embedded.end',
|
|
893
892
|
settings: {
|
|
894
|
-
foreground:
|
|
893
|
+
foreground: colorBlue
|
|
895
894
|
}
|
|
896
895
|
}, {
|
|
897
896
|
name: 'illegal',
|
|
898
897
|
scope: 'invalid.illegal',
|
|
899
898
|
settings: {
|
|
900
|
-
foreground:
|
|
899
|
+
foreground: colorText
|
|
901
900
|
}
|
|
902
901
|
}, {
|
|
903
902
|
name: 'illegal',
|
|
904
903
|
scope: 'invalid.illegal.bad-ampersand.html',
|
|
905
904
|
settings: {
|
|
906
|
-
foreground:
|
|
905
|
+
foreground: colorTextTertiary
|
|
907
906
|
}
|
|
908
907
|
}, {
|
|
909
908
|
scope: 'invalid.illegal.unrecognized-tag.html',
|
|
910
909
|
settings: {
|
|
911
|
-
foreground:
|
|
910
|
+
foreground: colorText
|
|
912
911
|
}
|
|
913
912
|
}, {
|
|
914
913
|
name: 'Broken',
|
|
915
914
|
scope: 'invalid.broken',
|
|
916
915
|
settings: {
|
|
917
|
-
foreground:
|
|
916
|
+
foreground: colorText
|
|
918
917
|
}
|
|
919
918
|
}, {
|
|
920
919
|
name: 'Deprecated',
|
|
921
920
|
scope: 'invalid.deprecated',
|
|
922
921
|
settings: {
|
|
923
|
-
foreground:
|
|
922
|
+
foreground: colorText
|
|
924
923
|
}
|
|
925
924
|
}, {
|
|
926
925
|
name: 'html Deprecated',
|
|
927
926
|
scope: 'invalid.deprecated.entity.other.attribute-name.html',
|
|
928
927
|
settings: {
|
|
929
|
-
foreground:
|
|
928
|
+
foreground: colorGreen
|
|
930
929
|
}
|
|
931
930
|
}, {
|
|
932
931
|
name: 'Unimplemented',
|
|
933
932
|
scope: 'invalid.unimplemented',
|
|
934
933
|
settings: {
|
|
935
|
-
foreground:
|
|
934
|
+
foreground: colorText
|
|
936
935
|
}
|
|
937
936
|
}, {
|
|
938
937
|
name: 'Source Json Meta Structure Dictionary Json > String Quoted Json',
|
|
939
938
|
scope: 'source.json meta.structure.dictionary.json > string.quoted.json',
|
|
940
939
|
settings: {
|
|
941
|
-
foreground:
|
|
940
|
+
foreground: colorText
|
|
942
941
|
}
|
|
943
942
|
}, {
|
|
944
943
|
name: 'Source Json Meta Structure Dictionary Json > String Quoted Json > Punctuation String',
|
|
945
944
|
scope: 'source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string',
|
|
946
945
|
settings: {
|
|
947
|
-
foreground:
|
|
946
|
+
foreground: colorText
|
|
948
947
|
}
|
|
949
948
|
}, {
|
|
950
949
|
name: 'Source Json Meta Structure Dictionary Json > Value Json > String Quoted Json,source Json Meta Structure Array Json > Value Json > String Quoted Json,source Json Meta Structure Dictionary Json > Value Json > String Quoted Json > Punctuation,source Json Meta Structure Array Json > Value Json > String Quoted Json > Punctuation',
|
|
951
950
|
scope: 'source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation',
|
|
952
951
|
settings: {
|
|
953
|
-
foreground:
|
|
952
|
+
foreground: colorGreen
|
|
954
953
|
}
|
|
955
954
|
}, {
|
|
956
955
|
name: 'Source Json Meta Structure Dictionary Json > Constant Language Json,source Json Meta Structure Array Json > Constant Language Json',
|
|
957
956
|
scope: 'source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json',
|
|
958
957
|
settings: {
|
|
959
|
-
foreground:
|
|
958
|
+
foreground: colorBlue
|
|
960
959
|
}
|
|
961
960
|
}, {
|
|
962
961
|
name: '[VSCODE-CUSTOM] JSON Property Name',
|
|
963
962
|
scope: 'support.type.property-name.json',
|
|
964
963
|
settings: {
|
|
965
|
-
foreground:
|
|
964
|
+
foreground: colorText
|
|
966
965
|
}
|
|
967
966
|
}, {
|
|
968
967
|
name: '[VSCODE-CUSTOM] JSON Punctuation for Property Name',
|
|
969
968
|
scope: 'support.type.property-name.json punctuation',
|
|
970
969
|
settings: {
|
|
971
|
-
foreground:
|
|
970
|
+
foreground: colorText
|
|
972
971
|
}
|
|
973
972
|
}, {
|
|
974
973
|
name: 'laravel blade tag',
|
|
975
974
|
scope: 'text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade',
|
|
976
975
|
settings: {
|
|
977
|
-
foreground:
|
|
976
|
+
foreground: colorBlue
|
|
978
977
|
}
|
|
979
978
|
}, {
|
|
980
979
|
name: 'laravel blade @',
|
|
981
980
|
scope: 'text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade',
|
|
982
981
|
settings: {
|
|
983
|
-
foreground:
|
|
982
|
+
foreground: colorBlue
|
|
984
983
|
}
|
|
985
984
|
}, {
|
|
986
985
|
name: 'use statement for other classes',
|
|
987
986
|
scope: 'support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php',
|
|
988
987
|
settings: {
|
|
989
|
-
foreground:
|
|
988
|
+
foreground: colorRed
|
|
990
989
|
}
|
|
991
990
|
}, {
|
|
992
991
|
name: 'error suppression',
|
|
993
992
|
scope: 'keyword.operator.error-control.php',
|
|
994
993
|
settings: {
|
|
995
|
-
foreground:
|
|
994
|
+
foreground: colorBlue
|
|
996
995
|
}
|
|
997
996
|
}, {
|
|
998
997
|
name: 'php instanceof',
|
|
999
998
|
scope: 'keyword.operator.type.php',
|
|
1000
999
|
settings: {
|
|
1001
|
-
foreground:
|
|
1000
|
+
foreground: colorBlue
|
|
1002
1001
|
}
|
|
1003
1002
|
}, {
|
|
1004
1003
|
name: 'style double quoted array index normal begin',
|
|
1005
1004
|
scope: 'punctuation.section.array.begin.php',
|
|
1006
1005
|
settings: {
|
|
1007
|
-
foreground:
|
|
1006
|
+
foreground: colorTextTertiary
|
|
1008
1007
|
}
|
|
1009
1008
|
}, {
|
|
1010
1009
|
name: 'style double quoted array index normal end',
|
|
1011
1010
|
scope: 'punctuation.section.array.end.php',
|
|
1012
1011
|
settings: {
|
|
1013
|
-
foreground:
|
|
1012
|
+
foreground: colorTextTertiary
|
|
1014
1013
|
}
|
|
1015
1014
|
}, {
|
|
1016
1015
|
name: 'php illegal.non-null-typehinted',
|
|
1017
1016
|
scope: 'invalid.illegal.non-null-typehinted.php',
|
|
1018
1017
|
settings: {
|
|
1019
|
-
foreground:
|
|
1018
|
+
foreground: colorRed
|
|
1020
1019
|
}
|
|
1021
1020
|
}, {
|
|
1022
1021
|
name: 'php types',
|
|
1023
1022
|
scope: 'storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php',
|
|
1024
1023
|
settings: {
|
|
1025
|
-
foreground:
|
|
1024
|
+
foreground: colorRed
|
|
1026
1025
|
}
|
|
1027
1026
|
}, {
|
|
1028
1027
|
name: 'php call-function',
|
|
1029
1028
|
scope: 'meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php',
|
|
1030
1029
|
settings: {
|
|
1031
|
-
foreground:
|
|
1030
|
+
foreground: colorOrange
|
|
1032
1031
|
}
|
|
1033
1032
|
}, {
|
|
1034
1033
|
name: 'php function-resets',
|
|
1035
1034
|
scope: 'punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php',
|
|
1036
1035
|
settings: {
|
|
1037
|
-
foreground:
|
|
1036
|
+
foreground: colorTextTertiary
|
|
1038
1037
|
}
|
|
1039
1038
|
}, {
|
|
1040
1039
|
name: 'support php constants',
|
|
1041
1040
|
scope: 'support.constant.core.rust',
|
|
1042
1041
|
settings: {
|
|
1043
|
-
foreground:
|
|
1042
|
+
foreground: colorGreen
|
|
1044
1043
|
}
|
|
1045
1044
|
}, {
|
|
1046
1045
|
name: 'support php constants',
|
|
1047
1046
|
scope: 'support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php',
|
|
1048
1047
|
settings: {
|
|
1049
|
-
foreground:
|
|
1048
|
+
foreground: colorGreen
|
|
1050
1049
|
}
|
|
1051
1050
|
}, {
|
|
1052
1051
|
name: 'php goto',
|
|
1053
1052
|
scope: 'entity.name.goto-label.php,support.other.php',
|
|
1054
1053
|
settings: {
|
|
1055
|
-
foreground:
|
|
1054
|
+
foreground: colorOrange
|
|
1056
1055
|
}
|
|
1057
1056
|
}, {
|
|
1058
1057
|
name: 'php logical/bitwise operator',
|
|
1059
1058
|
scope: 'keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php',
|
|
1060
1059
|
settings: {
|
|
1061
|
-
foreground:
|
|
1060
|
+
foreground: colorBlue
|
|
1062
1061
|
}
|
|
1063
1062
|
}, {
|
|
1064
1063
|
name: 'php regexp operator',
|
|
1065
1064
|
scope: 'keyword.operator.regexp.php',
|
|
1066
1065
|
settings: {
|
|
1067
|
-
foreground:
|
|
1066
|
+
foreground: colorBlue
|
|
1068
1067
|
}
|
|
1069
1068
|
}, {
|
|
1070
1069
|
name: 'php comparison',
|
|
1071
1070
|
scope: 'keyword.operator.comparison.php',
|
|
1072
1071
|
settings: {
|
|
1073
|
-
foreground:
|
|
1072
|
+
foreground: colorBlue
|
|
1074
1073
|
}
|
|
1075
1074
|
}, {
|
|
1076
1075
|
name: 'php heredoc/nowdoc',
|
|
1077
1076
|
scope: 'keyword.operator.heredoc.php,keyword.operator.nowdoc.php',
|
|
1078
1077
|
settings: {
|
|
1079
|
-
foreground:
|
|
1078
|
+
foreground: colorBlue
|
|
1080
1079
|
}
|
|
1081
1080
|
}, {
|
|
1082
1081
|
name: 'python function decorator @',
|
|
1083
1082
|
scope: 'meta.function.decorator.python',
|
|
1084
1083
|
settings: {
|
|
1085
|
-
foreground:
|
|
1084
|
+
foreground: colorOrange
|
|
1086
1085
|
}
|
|
1087
1086
|
}, {
|
|
1088
1087
|
name: 'python function support',
|
|
1089
1088
|
scope: 'support.token.decorator.python,meta.function.decorator.identifier.python',
|
|
1090
1089
|
settings: {
|
|
1091
|
-
foreground:
|
|
1090
|
+
foreground: colorBlue
|
|
1092
1091
|
}
|
|
1093
1092
|
}, {
|
|
1094
1093
|
name: 'parameter function js/ts',
|
|
1095
1094
|
scope: 'function.parameter',
|
|
1096
1095
|
settings: {
|
|
1097
|
-
foreground:
|
|
1096
|
+
foreground: colorTextTertiary
|
|
1098
1097
|
}
|
|
1099
1098
|
}, {
|
|
1100
1099
|
name: 'brace function',
|
|
1101
1100
|
scope: 'function.brace',
|
|
1102
1101
|
settings: {
|
|
1103
|
-
foreground:
|
|
1102
|
+
foreground: colorTextTertiary
|
|
1104
1103
|
}
|
|
1105
1104
|
}, {
|
|
1106
1105
|
name: 'parameter function ruby cs',
|
|
1107
1106
|
scope: 'function.parameter.ruby, function.parameter.cs',
|
|
1108
1107
|
settings: {
|
|
1109
|
-
foreground:
|
|
1108
|
+
foreground: colorTextTertiary
|
|
1110
1109
|
}
|
|
1111
1110
|
}, {
|
|
1112
1111
|
name: 'constant.language.symbol.ruby',
|
|
1113
1112
|
scope: 'constant.language.symbol.ruby',
|
|
1114
1113
|
settings: {
|
|
1115
|
-
foreground:
|
|
1114
|
+
foreground: colorBlue
|
|
1116
1115
|
}
|
|
1117
1116
|
}, {
|
|
1118
1117
|
name: 'constant.language.symbol.hashkey.ruby',
|
|
1119
1118
|
scope: 'constant.language.symbol.hashkey.ruby',
|
|
1120
1119
|
settings: {
|
|
1121
|
-
foreground:
|
|
1120
|
+
foreground: colorBlue
|
|
1122
1121
|
}
|
|
1123
1122
|
}, {
|
|
1124
1123
|
name: 'rgb-value',
|
|
1125
1124
|
scope: 'rgb-value',
|
|
1126
1125
|
settings: {
|
|
1127
|
-
foreground:
|
|
1126
|
+
foreground: colorBlue
|
|
1128
1127
|
}
|
|
1129
1128
|
}, {
|
|
1130
1129
|
name: 'rgb value',
|
|
1131
1130
|
scope: 'inline-color-decoration rgb-value',
|
|
1132
1131
|
settings: {
|
|
1133
|
-
foreground:
|
|
1132
|
+
foreground: colorGreen
|
|
1134
1133
|
}
|
|
1135
1134
|
}, {
|
|
1136
1135
|
name: 'rgb value less',
|
|
1137
1136
|
scope: 'less rgb-value',
|
|
1138
1137
|
settings: {
|
|
1139
|
-
foreground:
|
|
1138
|
+
foreground: colorGreen
|
|
1140
1139
|
}
|
|
1141
1140
|
}, {
|
|
1142
1141
|
name: 'sass selector',
|
|
1143
1142
|
scope: 'selector.sass',
|
|
1144
1143
|
settings: {
|
|
1145
|
-
foreground:
|
|
1144
|
+
foreground: colorText
|
|
1146
1145
|
}
|
|
1147
1146
|
}, {
|
|
1148
1147
|
name: 'ts primitive/builtin types',
|
|
1149
1148
|
scope: 'support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx',
|
|
1150
1149
|
settings: {
|
|
1151
|
-
foreground:
|
|
1150
|
+
foreground: colorRed
|
|
1152
1151
|
}
|
|
1153
1152
|
}, {
|
|
1154
1153
|
name: 'block scope',
|
|
1155
1154
|
scope: 'block.scope.end,block.scope.begin',
|
|
1156
1155
|
settings: {
|
|
1157
|
-
foreground:
|
|
1156
|
+
foreground: colorTextTertiary
|
|
1158
1157
|
}
|
|
1159
1158
|
}, {
|
|
1160
1159
|
name: 'cs storage type',
|
|
1161
1160
|
scope: 'storage.type.cs',
|
|
1162
1161
|
settings: {
|
|
1163
|
-
foreground:
|
|
1162
|
+
foreground: colorRed
|
|
1164
1163
|
}
|
|
1165
1164
|
}, {
|
|
1166
1165
|
name: 'cs local variable',
|
|
1167
1166
|
scope: 'entity.name.variable.local.cs',
|
|
1168
1167
|
settings: {
|
|
1169
|
-
foreground:
|
|
1168
|
+
foreground: colorText
|
|
1170
1169
|
}
|
|
1171
1170
|
}, {
|
|
1172
1171
|
scope: 'token.info-token',
|
|
1173
1172
|
settings: {
|
|
1174
|
-
foreground:
|
|
1173
|
+
foreground: colorOrange
|
|
1175
1174
|
}
|
|
1176
1175
|
}, {
|
|
1177
1176
|
scope: 'token.warn-token',
|
|
1178
1177
|
settings: {
|
|
1179
|
-
foreground:
|
|
1178
|
+
foreground: colorGreen
|
|
1180
1179
|
}
|
|
1181
1180
|
}, {
|
|
1182
1181
|
scope: 'token.error-token',
|
|
1183
1182
|
settings: {
|
|
1184
|
-
foreground:
|
|
1183
|
+
foreground: colorRed
|
|
1185
1184
|
}
|
|
1186
1185
|
}, {
|
|
1187
1186
|
scope: 'token.debug-token',
|
|
1188
1187
|
settings: {
|
|
1189
|
-
foreground:
|
|
1188
|
+
foreground: colorBlue
|
|
1190
1189
|
}
|
|
1191
1190
|
}, {
|
|
1192
1191
|
name: 'String interpolation',
|
|
1193
1192
|
scope: ['punctuation.definition.template-expression.begin', 'punctuation.definition.template-expression.end', 'punctuation.section.embedded'],
|
|
1194
1193
|
settings: {
|
|
1195
|
-
foreground:
|
|
1194
|
+
foreground: colorBlue
|
|
1196
1195
|
}
|
|
1197
1196
|
}, {
|
|
1198
1197
|
name: 'Reset JavaScript string interpolation expression',
|
|
1199
1198
|
scope: ['meta.template.expression'],
|
|
1200
1199
|
settings: {
|
|
1201
|
-
foreground:
|
|
1200
|
+
foreground: colorTextTertiary
|
|
1202
1201
|
}
|
|
1203
1202
|
}, {
|
|
1204
1203
|
name: 'Import module JS',
|
|
1205
1204
|
scope: ['keyword.operator.module'],
|
|
1206
1205
|
settings: {
|
|
1207
|
-
foreground:
|
|
1206
|
+
foreground: colorBlue
|
|
1208
1207
|
}
|
|
1209
1208
|
}, {
|
|
1210
1209
|
name: 'js Flowtype',
|
|
1211
1210
|
scope: ['support.type.type.flowtype'],
|
|
1212
1211
|
settings: {
|
|
1213
|
-
foreground:
|
|
1212
|
+
foreground: colorOrange
|
|
1214
1213
|
}
|
|
1215
1214
|
}, {
|
|
1216
1215
|
name: 'js Flow',
|
|
1217
1216
|
scope: ['support.type.primitive'],
|
|
1218
1217
|
settings: {
|
|
1219
|
-
foreground:
|
|
1218
|
+
foreground: colorRed
|
|
1220
1219
|
}
|
|
1221
1220
|
}, {
|
|
1222
1221
|
name: 'js class prop',
|
|
1223
1222
|
scope: ['meta.property.object'],
|
|
1224
1223
|
settings: {
|
|
1225
|
-
foreground:
|
|
1224
|
+
foreground: colorText
|
|
1226
1225
|
}
|
|
1227
1226
|
}, {
|
|
1228
1227
|
name: 'js func parameter',
|
|
1229
1228
|
scope: ['variable.parameter.function.js'],
|
|
1230
1229
|
settings: {
|
|
1231
|
-
foreground:
|
|
1230
|
+
foreground: colorText
|
|
1232
1231
|
}
|
|
1233
1232
|
}, {
|
|
1234
1233
|
name: 'js template literals begin',
|
|
1235
1234
|
scope: ['keyword.other.template.begin'],
|
|
1236
1235
|
settings: {
|
|
1237
|
-
foreground:
|
|
1236
|
+
foreground: colorGreen
|
|
1238
1237
|
}
|
|
1239
1238
|
}, {
|
|
1240
1239
|
name: 'js template literals end',
|
|
1241
1240
|
scope: ['keyword.other.template.end'],
|
|
1242
1241
|
settings: {
|
|
1243
|
-
foreground:
|
|
1242
|
+
foreground: colorGreen
|
|
1244
1243
|
}
|
|
1245
1244
|
}, {
|
|
1246
1245
|
name: 'js template literals variable braces begin',
|
|
1247
1246
|
scope: ['keyword.other.substitution.begin'],
|
|
1248
1247
|
settings: {
|
|
1249
|
-
foreground:
|
|
1248
|
+
foreground: colorGreen
|
|
1250
1249
|
}
|
|
1251
1250
|
}, {
|
|
1252
1251
|
name: 'js template literals variable braces end',
|
|
1253
1252
|
scope: ['keyword.other.substitution.end'],
|
|
1254
1253
|
settings: {
|
|
1255
|
-
foreground:
|
|
1254
|
+
foreground: colorGreen
|
|
1256
1255
|
}
|
|
1257
1256
|
}, {
|
|
1258
1257
|
name: 'js operator.assignment',
|
|
1259
1258
|
scope: ['keyword.operator.assignment'],
|
|
1260
1259
|
settings: {
|
|
1261
|
-
foreground:
|
|
1260
|
+
foreground: colorBlue
|
|
1262
1261
|
}
|
|
1263
1262
|
}, {
|
|
1264
1263
|
name: 'go operator',
|
|
1265
1264
|
scope: ['keyword.operator.assignment.go'],
|
|
1266
1265
|
settings: {
|
|
1267
|
-
foreground:
|
|
1266
|
+
foreground: colorRed
|
|
1268
1267
|
}
|
|
1269
1268
|
}, {
|
|
1270
1269
|
name: 'go operator',
|
|
1271
1270
|
scope: ['keyword.operator.arithmetic.go', 'keyword.operator.address.go'],
|
|
1272
1271
|
settings: {
|
|
1273
|
-
foreground:
|
|
1272
|
+
foreground: colorBlue
|
|
1274
1273
|
}
|
|
1275
1274
|
}, {
|
|
1276
1275
|
name: 'Go package name',
|
|
1277
1276
|
scope: ['entity.name.package.go'],
|
|
1278
1277
|
settings: {
|
|
1279
|
-
foreground:
|
|
1278
|
+
foreground: colorRed
|
|
1280
1279
|
}
|
|
1281
1280
|
}, {
|
|
1282
1281
|
name: 'elm prelude',
|
|
1283
1282
|
scope: ['support.type.prelude.elm'],
|
|
1284
1283
|
settings: {
|
|
1285
|
-
foreground:
|
|
1284
|
+
foreground: colorBlue
|
|
1286
1285
|
}
|
|
1287
1286
|
}, {
|
|
1288
1287
|
name: 'elm constant',
|
|
1289
1288
|
scope: ['support.constant.elm'],
|
|
1290
1289
|
settings: {
|
|
1291
|
-
foreground:
|
|
1290
|
+
foreground: colorGreen
|
|
1292
1291
|
}
|
|
1293
1292
|
}, {
|
|
1294
1293
|
name: 'template literal',
|
|
1295
1294
|
scope: ['punctuation.quasi.element'],
|
|
1296
1295
|
settings: {
|
|
1297
|
-
foreground:
|
|
1296
|
+
foreground: colorBlue
|
|
1298
1297
|
}
|
|
1299
1298
|
}, {
|
|
1300
1299
|
name: 'html/pug (jade) escaped characters and entities',
|
|
1301
1300
|
scope: ['constant.character.entity'],
|
|
1302
1301
|
settings: {
|
|
1303
|
-
foreground:
|
|
1302
|
+
foreground: colorText
|
|
1304
1303
|
}
|
|
1305
1304
|
}, {
|
|
1306
1305
|
name: 'styling css pseudo-elements/classes to be able to differentiate from classes which are the same colour',
|
|
1307
1306
|
scope: ['entity.other.attribute-name.pseudo-element', 'entity.other.attribute-name.pseudo-class'],
|
|
1308
1307
|
settings: {
|
|
1309
|
-
foreground:
|
|
1308
|
+
foreground: colorBlue
|
|
1310
1309
|
}
|
|
1311
1310
|
}, {
|
|
1312
1311
|
name: 'Clojure globals',
|
|
1313
1312
|
scope: ['entity.global.clojure'],
|
|
1314
1313
|
settings: {
|
|
1315
|
-
foreground:
|
|
1314
|
+
foreground: colorRed
|
|
1316
1315
|
}
|
|
1317
1316
|
}, {
|
|
1318
1317
|
name: 'Clojure symbols',
|
|
1319
1318
|
scope: ['meta.symbol.clojure'],
|
|
1320
1319
|
settings: {
|
|
1321
|
-
foreground:
|
|
1320
|
+
foreground: colorText
|
|
1322
1321
|
}
|
|
1323
1322
|
}, {
|
|
1324
1323
|
name: 'Clojure constants',
|
|
1325
1324
|
scope: ['constant.keyword.clojure'],
|
|
1326
1325
|
settings: {
|
|
1327
|
-
foreground:
|
|
1326
|
+
foreground: colorBlue
|
|
1328
1327
|
}
|
|
1329
1328
|
}, {
|
|
1330
1329
|
name: 'CoffeeScript Function Argument',
|
|
1331
1330
|
scope: ['meta.arguments.coffee', 'variable.parameter.function.coffee'],
|
|
1332
1331
|
settings: {
|
|
1333
|
-
foreground:
|
|
1332
|
+
foreground: colorText
|
|
1334
1333
|
}
|
|
1335
1334
|
}, {
|
|
1336
1335
|
name: 'Ini Default Text',
|
|
1337
1336
|
scope: ['source.ini'],
|
|
1338
1337
|
settings: {
|
|
1339
|
-
foreground:
|
|
1338
|
+
foreground: colorGreen
|
|
1340
1339
|
}
|
|
1341
1340
|
}, {
|
|
1342
1341
|
name: 'Makefile prerequisities',
|
|
1343
1342
|
scope: ['meta.scope.prerequisites.makefile'],
|
|
1344
1343
|
settings: {
|
|
1345
|
-
foreground:
|
|
1344
|
+
foreground: colorText
|
|
1346
1345
|
}
|
|
1347
1346
|
}, {
|
|
1348
1347
|
name: 'Makefile text colour',
|
|
1349
1348
|
scope: ['source.makefile'],
|
|
1350
1349
|
settings: {
|
|
1351
|
-
foreground:
|
|
1350
|
+
foreground: colorRed
|
|
1352
1351
|
}
|
|
1353
1352
|
}, {
|
|
1354
1353
|
name: 'Groovy import names',
|
|
1355
1354
|
scope: ['storage.modifier.import.groovy'],
|
|
1356
1355
|
settings: {
|
|
1357
|
-
foreground:
|
|
1356
|
+
foreground: colorRed
|
|
1358
1357
|
}
|
|
1359
1358
|
}, {
|
|
1360
1359
|
name: 'Groovy Methods',
|
|
1361
1360
|
scope: ['meta.method.groovy'],
|
|
1362
1361
|
settings: {
|
|
1363
|
-
foreground:
|
|
1362
|
+
foreground: colorOrange
|
|
1364
1363
|
}
|
|
1365
1364
|
}, {
|
|
1366
1365
|
name: 'Groovy Variables',
|
|
1367
1366
|
scope: ['meta.definition.variable.name.groovy'],
|
|
1368
1367
|
settings: {
|
|
1369
|
-
foreground:
|
|
1368
|
+
foreground: colorText
|
|
1370
1369
|
}
|
|
1371
1370
|
}, {
|
|
1372
1371
|
name: 'Groovy Inheritance',
|
|
1373
1372
|
scope: ['meta.definition.class.inherited.classes.groovy'],
|
|
1374
1373
|
settings: {
|
|
1375
|
-
foreground:
|
|
1374
|
+
foreground: colorGreen
|
|
1376
1375
|
}
|
|
1377
1376
|
}, {
|
|
1378
1377
|
name: 'HLSL Semantic',
|
|
1379
1378
|
scope: ['support.variable.semantic.hlsl'],
|
|
1380
1379
|
settings: {
|
|
1381
|
-
foreground:
|
|
1380
|
+
foreground: colorRed
|
|
1382
1381
|
}
|
|
1383
1382
|
}, {
|
|
1384
1383
|
name: 'HLSL Types',
|
|
1385
1384
|
scope: ['support.type.texture.hlsl', 'support.type.sampler.hlsl', 'support.type.object.hlsl', 'support.type.object.rw.hlsl', 'support.type.fx.hlsl', 'support.type.object.hlsl'],
|
|
1386
1385
|
settings: {
|
|
1387
|
-
foreground:
|
|
1386
|
+
foreground: colorBlue
|
|
1388
1387
|
}
|
|
1389
1388
|
}, {
|
|
1390
1389
|
name: 'SQL Variables',
|
|
1391
1390
|
scope: ['text.variable', 'text.bracketed'],
|
|
1392
1391
|
settings: {
|
|
1393
|
-
foreground:
|
|
1392
|
+
foreground: colorText
|
|
1394
1393
|
}
|
|
1395
1394
|
}, {
|
|
1396
1395
|
name: 'types',
|
|
1397
1396
|
scope: ['support.type.swift', 'support.type.vb.asp'],
|
|
1398
1397
|
settings: {
|
|
1399
|
-
foreground:
|
|
1398
|
+
foreground: colorRed
|
|
1400
1399
|
}
|
|
1401
1400
|
}, {
|
|
1402
1401
|
name: 'heading 1, keyword',
|
|
1403
1402
|
scope: ['entity.name.function.xi'],
|
|
1404
1403
|
settings: {
|
|
1405
|
-
foreground:
|
|
1404
|
+
foreground: colorRed
|
|
1406
1405
|
}
|
|
1407
1406
|
}, {
|
|
1408
1407
|
name: 'heading 2, callable',
|
|
1409
1408
|
scope: ['entity.name.class.xi'],
|
|
1410
1409
|
settings: {
|
|
1411
|
-
foreground:
|
|
1410
|
+
foreground: colorBlue
|
|
1412
1411
|
}
|
|
1413
1412
|
}, {
|
|
1414
1413
|
name: 'heading 3, property',
|
|
1415
1414
|
scope: ['constant.character.character-class.regexp.xi'],
|
|
1416
1415
|
settings: {
|
|
1417
|
-
foreground:
|
|
1416
|
+
foreground: colorText
|
|
1418
1417
|
}
|
|
1419
1418
|
}, {
|
|
1420
1419
|
name: 'heading 4, type, class, interface',
|
|
1421
1420
|
scope: ['constant.regexp.xi'],
|
|
1422
1421
|
settings: {
|
|
1423
|
-
foreground:
|
|
1422
|
+
foreground: colorBlue
|
|
1424
1423
|
}
|
|
1425
1424
|
}, {
|
|
1426
1425
|
name: 'heading 5, enums, preprocessor, constant, decorator',
|
|
1427
1426
|
scope: ['keyword.control.xi'],
|
|
1428
1427
|
settings: {
|
|
1429
|
-
foreground:
|
|
1428
|
+
foreground: colorBlue
|
|
1430
1429
|
}
|
|
1431
1430
|
}, {
|
|
1432
1431
|
name: 'heading 6, number',
|
|
1433
1432
|
scope: ['invalid.xi'],
|
|
1434
1433
|
settings: {
|
|
1435
|
-
foreground:
|
|
1434
|
+
foreground: colorTextTertiary
|
|
1436
1435
|
}
|
|
1437
1436
|
}, {
|
|
1438
1437
|
name: 'string',
|
|
1439
1438
|
scope: ['beginning.punctuation.definition.quote.markdown.xi'],
|
|
1440
1439
|
settings: {
|
|
1441
|
-
foreground:
|
|
1440
|
+
foreground: colorGreen
|
|
1442
1441
|
}
|
|
1443
1442
|
}, {
|
|
1444
1443
|
name: 'comments',
|
|
1445
1444
|
scope: ['beginning.punctuation.definition.list.markdown.xi'],
|
|
1446
1445
|
settings: {
|
|
1447
|
-
foreground:
|
|
1446
|
+
foreground: colorTextTertiary
|
|
1448
1447
|
}
|
|
1449
1448
|
}, {
|
|
1450
1449
|
name: 'link',
|
|
1451
1450
|
scope: ['constant.character.xi'],
|
|
1452
1451
|
settings: {
|
|
1453
|
-
foreground:
|
|
1452
|
+
foreground: colorOrange
|
|
1454
1453
|
}
|
|
1455
1454
|
}, {
|
|
1456
1455
|
name: 'accent',
|
|
1457
1456
|
scope: ['accent.xi'],
|
|
1458
1457
|
settings: {
|
|
1459
|
-
foreground:
|
|
1458
|
+
foreground: colorOrange
|
|
1460
1459
|
}
|
|
1461
1460
|
}, {
|
|
1462
1461
|
name: 'wikiword',
|
|
1463
1462
|
scope: ['wikiword.xi'],
|
|
1464
1463
|
settings: {
|
|
1465
|
-
foreground:
|
|
1464
|
+
foreground: colorGreen
|
|
1466
1465
|
}
|
|
1467
1466
|
}, {
|
|
1468
1467
|
name: "language operators like '+', '-' etc",
|
|
1469
1468
|
scope: ['constant.other.color.rgb-value.xi'],
|
|
1470
1469
|
settings: {
|
|
1471
|
-
foreground:
|
|
1470
|
+
foreground: colorText
|
|
1472
1471
|
}
|
|
1473
1472
|
}, {
|
|
1474
1473
|
name: 'elements to dim',
|
|
1475
1474
|
scope: ['punctuation.definition.tag.xi'],
|
|
1476
1475
|
settings: {
|
|
1477
|
-
foreground:
|
|
1476
|
+
foreground: colorTextTertiary
|
|
1478
1477
|
}
|
|
1479
1478
|
}, {
|
|
1480
1479
|
name: 'C++/C#',
|
|
1481
1480
|
scope: ['entity.name.label.cs', 'entity.name.scope-resolution.function.call', 'entity.name.scope-resolution.function.definition'],
|
|
1482
1481
|
settings: {
|
|
1483
|
-
foreground:
|
|
1482
|
+
foreground: colorRed
|
|
1484
1483
|
}
|
|
1485
1484
|
}, {
|
|
1486
1485
|
name: 'Markdown underscore-style headers',
|
|
1487
1486
|
scope: ['entity.name.label.cs', 'markup.heading.setext.1.markdown', 'markup.heading.setext.2.markdown'],
|
|
1488
1487
|
settings: {
|
|
1489
|
-
foreground:
|
|
1488
|
+
foreground: colorText
|
|
1490
1489
|
}
|
|
1491
1490
|
}, {
|
|
1492
1491
|
name: 'meta.brace.square',
|
|
1493
1492
|
scope: [' meta.brace.square'],
|
|
1494
1493
|
settings: {
|
|
1495
|
-
foreground:
|
|
1494
|
+
foreground: colorTextTertiary
|
|
1496
1495
|
}
|
|
1497
1496
|
}, {
|
|
1498
1497
|
name: 'Comments',
|
|
1499
1498
|
scope: 'comment, punctuation.definition.comment',
|
|
1500
1499
|
settings: {
|
|
1501
|
-
foreground:
|
|
1500
|
+
foreground: colorTextTertiary,
|
|
1502
1501
|
fontStyle: 'italic'
|
|
1503
1502
|
}
|
|
1504
1503
|
}, {
|
|
1505
1504
|
name: '[VSCODE-CUSTOM] Markdown Quote',
|
|
1506
1505
|
scope: 'markup.quote.markdown',
|
|
1507
1506
|
settings: {
|
|
1508
|
-
foreground:
|
|
1507
|
+
foreground: colorTextTertiary
|
|
1509
1508
|
}
|
|
1510
1509
|
}, {
|
|
1511
1510
|
name: 'punctuation.definition.block.sequence.item.yaml',
|
|
1512
1511
|
scope: 'punctuation.definition.block.sequence.item.yaml',
|
|
1513
1512
|
settings: {
|
|
1514
|
-
foreground:
|
|
1513
|
+
foreground: colorTextTertiary
|
|
1515
1514
|
}
|
|
1516
1515
|
}, {
|
|
1517
1516
|
scope: ['constant.language.symbol.elixir', 'constant.language.symbol.double-quoted.elixir'],
|
|
1518
1517
|
settings: {
|
|
1519
|
-
foreground:
|
|
1518
|
+
foreground: colorBlue
|
|
1520
1519
|
}
|
|
1521
1520
|
}, {
|
|
1522
1521
|
scope: ['entity.name.variable.parameter.cs'],
|
|
1523
1522
|
settings: {
|
|
1524
|
-
foreground:
|
|
1523
|
+
foreground: colorRed
|
|
1525
1524
|
}
|
|
1526
1525
|
}, {
|
|
1527
1526
|
scope: ['entity.name.variable.field.cs'],
|
|
1528
1527
|
settings: {
|
|
1529
|
-
foreground:
|
|
1528
|
+
foreground: colorText
|
|
1530
1529
|
}
|
|
1531
1530
|
}, {
|
|
1532
1531
|
name: 'Deleted',
|
|
1533
1532
|
scope: 'markup.deleted',
|
|
1534
1533
|
settings: {
|
|
1535
|
-
foreground:
|
|
1534
|
+
foreground: colorText
|
|
1536
1535
|
}
|
|
1537
1536
|
}, {
|
|
1538
1537
|
name: 'Inserted',
|
|
1539
1538
|
scope: 'markup.inserted',
|
|
1540
1539
|
settings: {
|
|
1541
|
-
foreground:
|
|
1540
|
+
foreground: colorGreen
|
|
1542
1541
|
}
|
|
1543
1542
|
}, {
|
|
1544
1543
|
name: 'Underline',
|
|
@@ -1550,79 +1549,79 @@ export var themeConfig = function themeConfig(isDarkMode) {
|
|
|
1550
1549
|
name: 'punctuation.section.embedded.begin.php',
|
|
1551
1550
|
scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],
|
|
1552
1551
|
settings: {
|
|
1553
|
-
foreground:
|
|
1552
|
+
foreground: colorRed
|
|
1554
1553
|
}
|
|
1555
1554
|
}, {
|
|
1556
1555
|
name: 'support.other.namespace.php',
|
|
1557
1556
|
scope: ['support.other.namespace.php'],
|
|
1558
1557
|
settings: {
|
|
1559
|
-
foreground:
|
|
1558
|
+
foreground: colorTextTertiary
|
|
1560
1559
|
}
|
|
1561
1560
|
}, {
|
|
1562
1561
|
name: 'variable.other.object',
|
|
1563
1562
|
scope: ['variable.other.object'],
|
|
1564
1563
|
settings: {
|
|
1565
|
-
foreground:
|
|
1564
|
+
foreground: colorRed
|
|
1566
1565
|
}
|
|
1567
1566
|
}, {
|
|
1568
1567
|
name: 'variable.other.constant.property',
|
|
1569
1568
|
scope: ['variable.other.constant.property'],
|
|
1570
1569
|
settings: {
|
|
1571
|
-
foreground:
|
|
1570
|
+
foreground: colorText
|
|
1572
1571
|
}
|
|
1573
1572
|
}, {
|
|
1574
1573
|
name: 'entity.other.inherited-class',
|
|
1575
1574
|
scope: ['entity.other.inherited-class'],
|
|
1576
1575
|
settings: {
|
|
1577
|
-
foreground:
|
|
1576
|
+
foreground: colorRed
|
|
1578
1577
|
}
|
|
1579
1578
|
}, {
|
|
1580
1579
|
name: 'c variable readwrite',
|
|
1581
1580
|
scope: 'variable.other.readwrite.c',
|
|
1582
1581
|
settings: {
|
|
1583
|
-
foreground:
|
|
1582
|
+
foreground: colorText
|
|
1584
1583
|
}
|
|
1585
1584
|
}, {
|
|
1586
1585
|
name: 'php scope',
|
|
1587
1586
|
scope: 'entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php',
|
|
1588
1587
|
settings: {
|
|
1589
|
-
foreground:
|
|
1588
|
+
foreground: colorTextTertiary
|
|
1590
1589
|
}
|
|
1591
1590
|
}, {
|
|
1592
1591
|
name: 'Assembly',
|
|
1593
1592
|
scope: ['constant.numeric.decimal.asm.x86_64'],
|
|
1594
1593
|
settings: {
|
|
1595
|
-
foreground:
|
|
1594
|
+
foreground: colorBlue
|
|
1596
1595
|
}
|
|
1597
1596
|
}, {
|
|
1598
1597
|
scope: ['support.other.parenthesis.regexp'],
|
|
1599
1598
|
settings: {
|
|
1600
|
-
foreground:
|
|
1599
|
+
foreground: colorGreen
|
|
1601
1600
|
}
|
|
1602
1601
|
}, {
|
|
1603
1602
|
scope: ['constant.character.escape'],
|
|
1604
1603
|
settings: {
|
|
1605
|
-
foreground:
|
|
1604
|
+
foreground: colorBlue
|
|
1606
1605
|
}
|
|
1607
1606
|
}, {
|
|
1608
1607
|
scope: ['string.regexp'],
|
|
1609
1608
|
settings: {
|
|
1610
|
-
foreground:
|
|
1609
|
+
foreground: colorText
|
|
1611
1610
|
}
|
|
1612
1611
|
}, {
|
|
1613
1612
|
scope: ['log.info'],
|
|
1614
1613
|
settings: {
|
|
1615
|
-
foreground:
|
|
1614
|
+
foreground: colorGreen
|
|
1616
1615
|
}
|
|
1617
1616
|
}, {
|
|
1618
1617
|
scope: ['log.warning'],
|
|
1619
1618
|
settings: {
|
|
1620
|
-
foreground:
|
|
1619
|
+
foreground: colorRed
|
|
1621
1620
|
}
|
|
1622
1621
|
}, {
|
|
1623
1622
|
scope: ['log.error'],
|
|
1624
1623
|
settings: {
|
|
1625
|
-
foreground:
|
|
1624
|
+
foreground: colorText
|
|
1626
1625
|
}
|
|
1627
1626
|
}, {
|
|
1628
1627
|
name: 'js/ts italic',
|
|
@@ -1650,7 +1649,7 @@ export var themeConfig = function themeConfig(isDarkMode) {
|
|
|
1650
1649
|
}
|
|
1651
1650
|
}],
|
|
1652
1651
|
colors: {
|
|
1653
|
-
'editor.foreground':
|
|
1652
|
+
'editor.foreground': colorTextSecondary
|
|
1654
1653
|
}
|
|
1655
1654
|
};
|
|
1656
1655
|
};
|