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