dolphindb 2.0.919 → 2.0.921

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/theme.light.js DELETED
@@ -1,590 +0,0 @@
1
- // Theme data derived from:
2
- // https://github.com/microsoft/vscode/raw/a716714a88891cad69c0753fb95923870df295f5/extensions/theme-defaults/themes/dark_plus.json
3
- // This satisfies the contract of IRawTheme as defined in vscode-textmate.
4
- export const theme_light = {
5
- name: 'dolphindb.light',
6
- settings: [
7
- {
8
- settings: {
9
- foreground: '#000000',
10
- background: '#ffffff'
11
- }
12
- },
13
- {
14
- scope: ['meta.embedded', 'source.groovy.embedded'],
15
- settings: {
16
- foreground: '#000000ff'
17
- }
18
- },
19
- {
20
- scope: 'emphasis',
21
- settings: {
22
- fontStyle: 'italic'
23
- }
24
- },
25
- {
26
- scope: 'strong',
27
- settings: {
28
- fontStyle: 'bold'
29
- }
30
- },
31
- {
32
- scope: 'meta.diff.header',
33
- settings: {
34
- foreground: '#000080'
35
- }
36
- },
37
- {
38
- scope: 'comment',
39
- settings: {
40
- foreground: '#000000'
41
- }
42
- },
43
- {
44
- scope: 'constant.language',
45
- settings: {
46
- foreground: '#0000ff'
47
- }
48
- },
49
- {
50
- scope: ['constant.numeric', 'variable.other.enummember', 'keyword.operator.plus.exponent', 'keyword.operator.minus.exponent'],
51
- settings: {
52
- foreground: '#ff0000'
53
- }
54
- },
55
- {
56
- scope: 'constant.regexp',
57
- settings: {
58
- foreground: '#811f3f'
59
- }
60
- },
61
- {
62
- name: 'css tags in selectors, xml tags',
63
- scope: 'entity.name.tag',
64
- settings: {
65
- foreground: '#800000'
66
- }
67
- },
68
- {
69
- scope: 'entity.name.selector',
70
- settings: {
71
- foreground: '#800000'
72
- }
73
- },
74
- {
75
- scope: 'entity.other.attribute-name',
76
- settings: {
77
- foreground: '#ff0000'
78
- }
79
- },
80
- {
81
- scope: [
82
- 'entity.other.attribute-name.class.css',
83
- 'entity.other.attribute-name.class.mixin.css',
84
- 'entity.other.attribute-name.id.css',
85
- 'entity.other.attribute-name.parent-selector.css',
86
- 'entity.other.attribute-name.pseudo-class.css',
87
- 'entity.other.attribute-name.pseudo-element.css',
88
- 'source.css.less entity.other.attribute-name.id',
89
- 'entity.other.attribute-name.scss'
90
- ],
91
- settings: {
92
- foreground: '#800000'
93
- }
94
- },
95
- {
96
- scope: 'invalid',
97
- settings: {
98
- foreground: '#cd3131'
99
- }
100
- },
101
- {
102
- scope: 'markup.underline',
103
- settings: {
104
- fontStyle: 'underline'
105
- }
106
- },
107
- {
108
- scope: 'markup.bold',
109
- settings: {
110
- fontStyle: 'bold',
111
- foreground: '#000080'
112
- }
113
- },
114
- {
115
- scope: 'markup.heading',
116
- settings: {
117
- fontStyle: 'bold',
118
- foreground: '#800000'
119
- }
120
- },
121
- {
122
- scope: 'markup.italic',
123
- settings: {
124
- fontStyle: 'italic'
125
- }
126
- },
127
- {
128
- scope: 'markup.strikethrough',
129
- settings: {
130
- fontStyle: 'strikethrough'
131
- }
132
- },
133
- {
134
- scope: 'markup.inserted',
135
- settings: {
136
- foreground: '#098658'
137
- }
138
- },
139
- {
140
- scope: 'markup.deleted',
141
- settings: {
142
- foreground: '#a31515'
143
- }
144
- },
145
- {
146
- scope: 'markup.changed',
147
- settings: {
148
- foreground: '#0451a5'
149
- }
150
- },
151
- {
152
- scope: ['punctuation.definition.quote.begin.markdown', 'punctuation.definition.list.begin.markdown'],
153
- settings: {
154
- foreground: '#0451a5'
155
- }
156
- },
157
- {
158
- scope: 'markup.inline.raw',
159
- settings: {
160
- foreground: '#800000'
161
- }
162
- },
163
- {
164
- name: 'brackets of XML/HTML tags',
165
- scope: 'punctuation.definition.tag',
166
- settings: {
167
- foreground: '#800000'
168
- }
169
- },
170
- {
171
- scope: ['meta.preprocessor', 'entity.name.function.preprocessor'],
172
- settings: {
173
- foreground: '#0000ff'
174
- }
175
- },
176
- {
177
- scope: 'meta.preprocessor.string',
178
- settings: {
179
- foreground: '#a31515'
180
- }
181
- },
182
- {
183
- scope: 'meta.preprocessor.numeric',
184
- settings: {
185
- foreground: '#098658'
186
- }
187
- },
188
- {
189
- scope: 'meta.structure.dictionary.key.python',
190
- settings: {
191
- foreground: '#0451a5'
192
- }
193
- },
194
- {
195
- scope: 'storage',
196
- settings: {
197
- foreground: '#0000ff'
198
- }
199
- },
200
- {
201
- scope: 'storage.type',
202
- settings: {
203
- foreground: '#0000ff'
204
- }
205
- },
206
- {
207
- scope: ['storage.modifier', 'keyword.operator.noexcept'],
208
- settings: {
209
- foreground: '#0000ff'
210
- }
211
- },
212
- {
213
- scope: ['string', 'meta.embedded.assembly'],
214
- settings: {
215
- foreground: '#a31515'
216
- }
217
- },
218
- {
219
- scope: [
220
- 'string.comment.buffered.block.pug',
221
- 'string.quoted.pug',
222
- 'string.interpolated.pug',
223
- 'string.unquoted.plain.in.yaml',
224
- 'string.unquoted.plain.out.yaml',
225
- 'string.unquoted.block.yaml',
226
- 'string.quoted.single.yaml',
227
- 'string.quoted.double.xml',
228
- 'string.quoted.single.xml',
229
- 'string.unquoted.cdata.xml',
230
- 'string.quoted.double.html',
231
- 'string.quoted.single.html',
232
- 'string.unquoted.html',
233
- 'string.quoted.single.handlebars',
234
- 'string.quoted.double.handlebars'
235
- ],
236
- settings: {
237
- foreground: '#0000ff'
238
- }
239
- },
240
- {
241
- scope: 'string.regexp',
242
- settings: {
243
- foreground: '#811f3f'
244
- }
245
- },
246
- {
247
- name: 'String interpolation',
248
- scope: [
249
- 'punctuation.definition.template-expression.begin',
250
- 'punctuation.definition.template-expression.end',
251
- 'punctuation.section.embedded'
252
- ],
253
- settings: {
254
- foreground: '#0000ff'
255
- }
256
- },
257
- {
258
- name: 'Reset JavaScript string interpolation expression',
259
- scope: ['meta.template.expression'],
260
- settings: {
261
- foreground: '#000000'
262
- }
263
- },
264
- {
265
- scope: [
266
- 'support.constant.property-value',
267
- 'support.constant.font-name',
268
- 'support.constant.media-type',
269
- 'support.constant.media',
270
- 'constant.other.color.rgb-value',
271
- 'constant.other.rgb-value',
272
- 'support.constant.color'
273
- ],
274
- settings: {
275
- foreground: '#0451a5'
276
- }
277
- },
278
- {
279
- scope: [
280
- 'support.type.vendored.property-name',
281
- 'support.type.property-name',
282
- 'variable.css',
283
- 'variable.scss',
284
- 'variable.other.less',
285
- 'source.coffee.embedded'
286
- ],
287
- settings: {
288
- foreground: '#ff0000'
289
- }
290
- },
291
- {
292
- scope: ['support.type.property-name.json'],
293
- settings: {
294
- foreground: '#0451a5'
295
- }
296
- },
297
- {
298
- scope: 'keyword',
299
- settings: {
300
- foreground: '#0000ff'
301
- }
302
- },
303
- {
304
- scope: 'keyword.control',
305
- settings: {
306
- foreground: '#0000ff'
307
- }
308
- },
309
- {
310
- scope: 'keyword.operator',
311
- settings: {
312
- foreground: '#000000'
313
- }
314
- },
315
- {
316
- scope: [
317
- 'keyword.operator.new',
318
- 'keyword.operator.expression',
319
- 'keyword.operator.cast',
320
- 'keyword.operator.sizeof',
321
- 'keyword.operator.alignof',
322
- 'keyword.operator.typeid',
323
- 'keyword.operator.alignas',
324
- 'keyword.operator.instanceof',
325
- 'keyword.operator.logical.python',
326
- 'keyword.operator.wordlike'
327
- ],
328
- settings: {
329
- foreground: '#0000ff'
330
- }
331
- },
332
- {
333
- scope: 'keyword.other.unit',
334
- settings: {
335
- foreground: '#098658'
336
- }
337
- },
338
- {
339
- scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],
340
- settings: {
341
- foreground: '#800000'
342
- }
343
- },
344
- {
345
- scope: 'support.function.git-rebase',
346
- settings: {
347
- foreground: '#0451a5'
348
- }
349
- },
350
- {
351
- scope: 'constant.sha.git-rebase',
352
- settings: {
353
- foreground: '#098658'
354
- }
355
- },
356
- {
357
- name: 'coloring of the Java import and package identifiers',
358
- scope: ['storage.modifier.import.java', 'variable.language.wildcard.java', 'storage.modifier.package.java'],
359
- settings: {
360
- foreground: '#000000'
361
- }
362
- },
363
- {
364
- name: 'this.self',
365
- scope: 'variable.language',
366
- settings: {
367
- foreground: '#0000ff'
368
- }
369
- },
370
- // adds rules to the light vs rules
371
- {
372
- name: 'Function declarations',
373
- scope: [
374
- 'entity.name.function',
375
- 'support.function',
376
- 'support.constant.handlebars',
377
- 'source.powershell variable.other.member',
378
- 'entity.name.operator.custom-literal' // See https://en.cppreference.com/w/cpp/language/user_literal
379
- ],
380
- settings: {
381
- foreground: '#795E26'
382
- }
383
- },
384
- {
385
- name: 'Types declaration and references',
386
- scope: [
387
- 'support.class',
388
- 'support.type',
389
- 'entity.name.type',
390
- 'entity.name.namespace',
391
- 'entity.other.attribute',
392
- 'entity.name.scope-resolution',
393
- 'entity.name.class',
394
- 'storage.type.numeric.go',
395
- 'storage.type.byte.go',
396
- 'storage.type.boolean.go',
397
- 'storage.type.string.go',
398
- 'storage.type.uintptr.go',
399
- 'storage.type.error.go',
400
- 'storage.type.rune.go',
401
- 'storage.type.cs',
402
- 'storage.type.generic.cs',
403
- 'storage.type.modifier.cs',
404
- 'storage.type.variable.cs',
405
- 'storage.type.annotation.java',
406
- 'storage.type.generic.java',
407
- 'storage.type.java',
408
- 'storage.type.object.array.java',
409
- 'storage.type.primitive.array.java',
410
- 'storage.type.primitive.java',
411
- 'storage.type.token.java',
412
- 'storage.type.groovy',
413
- 'storage.type.annotation.groovy',
414
- 'storage.type.parameters.groovy',
415
- 'storage.type.generic.groovy',
416
- 'storage.type.object.array.groovy',
417
- 'storage.type.primitive.array.groovy',
418
- 'storage.type.primitive.groovy'
419
- ],
420
- settings: {
421
- foreground: '#0f96be'
422
- }
423
- },
424
- {
425
- name: 'Types declaration and references, TS grammar specific',
426
- scope: [
427
- 'meta.type.cast.expr',
428
- 'meta.type.new.expr',
429
- 'support.constant.math',
430
- 'support.constant.dom',
431
- 'support.constant.json',
432
- 'entity.other.inherited-class'
433
- ],
434
- settings: {
435
- foreground: '#267f99'
436
- }
437
- },
438
- {
439
- name: 'Control flow / Special keywords',
440
- scope: [
441
- 'keyword.control',
442
- 'source.cpp keyword.operator.new',
443
- 'source.cpp keyword.operator.delete',
444
- 'keyword.other.using',
445
- 'keyword.other.operator',
446
- 'entity.name.operator'
447
- ],
448
- settings: {
449
- foreground: '#AF00DB'
450
- }
451
- },
452
- {
453
- name: 'Variable and parameter name',
454
- scope: [
455
- 'variable',
456
- 'meta.definition.variable.name',
457
- 'support.variable',
458
- 'entity.name.variable',
459
- 'constant.other.placeholder' // placeholders in strings
460
- ],
461
- settings: {
462
- foreground: '#000000'
463
- }
464
- },
465
- {
466
- name: 'Constants and enums',
467
- scope: ['variable.other.constant', 'variable.other.enummember'],
468
- settings: {
469
- foreground: '#0070C1'
470
- }
471
- },
472
- {
473
- name: 'Object keys, TS grammar specific',
474
- scope: ['meta.object-literal.key'],
475
- settings: {
476
- foreground: '#001080'
477
- }
478
- },
479
- {
480
- name: 'CSS property value',
481
- scope: [
482
- 'support.constant.property-value',
483
- 'support.constant.font-name',
484
- 'support.constant.media-type',
485
- 'support.constant.media',
486
- 'constant.other.color.rgb-value',
487
- 'constant.other.rgb-value',
488
- 'support.constant.color'
489
- ],
490
- settings: {
491
- foreground: '#0451a5'
492
- }
493
- },
494
- {
495
- name: 'Regular expression groups',
496
- scope: [
497
- 'punctuation.definition.group.regexp',
498
- 'punctuation.definition.group.assertion.regexp',
499
- 'punctuation.definition.character-class.regexp',
500
- 'punctuation.character.set.begin.regexp',
501
- 'punctuation.character.set.end.regexp',
502
- 'keyword.operator.negation.regexp',
503
- 'support.other.parenthesis.regexp'
504
- ],
505
- settings: {
506
- foreground: '#d16969'
507
- }
508
- },
509
- {
510
- scope: [
511
- 'constant.character.character-class.regexp',
512
- 'constant.other.character-class.set.regexp',
513
- 'constant.other.character-class.regexp',
514
- 'constant.character.set.regexp'
515
- ],
516
- settings: {
517
- foreground: '#811f3f'
518
- }
519
- },
520
- {
521
- scope: 'keyword.operator.quantifier.regexp',
522
- settings: {
523
- foreground: '#000000'
524
- }
525
- },
526
- {
527
- scope: ['keyword.operator.or.regexp', 'keyword.control.anchor.regexp'],
528
- settings: {
529
- foreground: '#EE0000'
530
- }
531
- },
532
- {
533
- scope: 'constant.character',
534
- settings: {
535
- foreground: '#0000ff'
536
- }
537
- },
538
- {
539
- scope: 'constant.character.escape',
540
- settings: {
541
- foreground: '#EE0000'
542
- }
543
- },
544
- {
545
- scope: 'entity.name.label',
546
- settings: {
547
- foreground: '#000000'
548
- }
549
- },
550
- { scope: 'keyword.operator', settings: { foreground: '#f00' } },
551
- { scope: 'keyword.operator.instanceof', settings: { foreground: '#f00' } },
552
- { scope: 'keyword.operator.logical', settings: { foreground: '#f00' } },
553
- { scope: 'keyword.operator.logical.python', settings: { foreground: '#f00' } },
554
- // { "scope": "keyword.control", "settings": { "foreground": "#bc00eb" } }
555
- // { "scope": "support.type.property-name", "settings": { "foreground": "#0451a5" } },
556
- { scope: 'support.type.property-name', settings: { foreground: '#000000' } },
557
- // { "scope": "variable.other", "settings": { "foreground": "#000000", "fontStyle": "" } },
558
- // { "scope": "variable.parameter", "settings": { "foreground": "#000000", "fontStyle": "" } },
559
- { scope: 'variable', settings: { foreground: '#000000', fontStyle: '' } },
560
- // { "scope": "variable.other.property", "settings": { "foreground": "#0115AF" } },
561
- { scope: 'variable.other.constant', settings: { foreground: '#000000' } },
562
- { scope: 'keyword.operator.expression.typeof.js', settings: { foreground: '#f00' } },
563
- { scope: 'storage.type', settings: { foreground: '#0000ee' } },
564
- { scope: 'storage.modifier', settings: { foreground: '#0000ee' } },
565
- { scope: 'constant.language', settings: { foreground: '#0000ee' } },
566
- { scope: 'constant.numeric', settings: { foreground: '#00a000' } },
567
- { scope: 'variable.language.this', settings: { foreground: '#267f99' } },
568
- { scope: 'string.quoted.docstring.multi.python', settings: { foreground: '#000000' } },
569
- { scope: 'punctuation.separator.delimiter.c', settings: { foreground: '#f00' } },
570
- { scope: 'punctuation.separator.pointer-access.c', settings: { foreground: '#f00' } },
571
- { scope: 'entity.name.tag.pug', settings: { foreground: '#f00' } },
572
- { scope: 'entity.other.attribute-name.id.pug', settings: { foreground: '#722dd2' } },
573
- { scope: 'entity.other.attribute-name.class.pug', settings: { foreground: '#267f99' } },
574
- { scope: 'entity.other.attribute-name.tag.pug', settings: { foreground: '#8e5e1a' } },
575
- { scope: 'entity.name.tag', settings: { foreground: '#000000', fontStyle: 'bold' } },
576
- { scope: 'punctuation.definition.tag', settings: { foreground: '#000000', fontStyle: 'bold' } },
577
- // function: bold
578
- { scope: 'entity.name.function', settings: { foreground: '#000000', fontStyle: 'bold' } },
579
- { scope: 'support.function', settings: { foreground: '#000000', fontStyle: 'bold' } },
580
- { scope: 'constant.language.module.http', settings: { foreground: '#00f' } },
581
- { scope: 'constant.language.directive.module', settings: { foreground: '#00f' } },
582
- { scope: 'constant.language.directive.module.main', settings: { foreground: '#f00', fontStyle: 'bold' } },
583
- { scope: 'meta.decorator.dolphindb', settings: { foreground: '#aa6f00' } },
584
- { scope: 'punctuation.definition.string.begin.json.comments', settings: { foreground: '#111' } },
585
- { scope: 'punctuation.definition.string.end.json.comments', settings: { foreground: '#111' } },
586
- { scope: 'punctuation.support.type.property-name.begin.json.comments', settings: { foreground: '#111' } },
587
- { scope: 'punctuation.support.type.property-name.end.json.comments', settings: { foreground: '#111' } }
588
- ]
589
- };
590
- //# sourceMappingURL=theme.light.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"theme.light.js","sourceRoot":"","sources":["theme.light.ts"],"names":[],"mappings":"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","sourcesContent":["// Theme data derived from:\n// https://github.com/microsoft/vscode/raw/a716714a88891cad69c0753fb95923870df295f5/extensions/theme-defaults/themes/dark_plus.json\n\n// This satisfies the contract of IRawTheme as defined in vscode-textmate.\nexport const theme_light = {\n name: 'dolphindb.light',\n settings: [\n {\n settings: {\n foreground: '#000000',\n background: '#ffffff'\n }\n },\n {\n scope: ['meta.embedded', 'source.groovy.embedded'],\n settings: {\n foreground: '#000000ff'\n }\n },\n {\n scope: 'emphasis',\n settings: {\n fontStyle: 'italic'\n }\n },\n {\n scope: 'strong',\n settings: {\n fontStyle: 'bold'\n }\n },\n {\n scope: 'meta.diff.header',\n settings: {\n foreground: '#000080'\n }\n },\n {\n scope: 'comment',\n settings: {\n foreground: '#000000'\n }\n },\n {\n scope: 'constant.language',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: ['constant.numeric', 'variable.other.enummember', 'keyword.operator.plus.exponent', 'keyword.operator.minus.exponent'],\n settings: {\n foreground: '#ff0000'\n }\n },\n {\n scope: 'constant.regexp',\n settings: {\n foreground: '#811f3f'\n }\n },\n {\n name: 'css tags in selectors, xml tags',\n scope: 'entity.name.tag',\n settings: {\n foreground: '#800000'\n }\n },\n {\n scope: 'entity.name.selector',\n settings: {\n foreground: '#800000'\n }\n },\n {\n scope: 'entity.other.attribute-name',\n settings: {\n foreground: '#ff0000'\n }\n },\n {\n scope: [\n 'entity.other.attribute-name.class.css',\n 'entity.other.attribute-name.class.mixin.css',\n 'entity.other.attribute-name.id.css',\n 'entity.other.attribute-name.parent-selector.css',\n 'entity.other.attribute-name.pseudo-class.css',\n 'entity.other.attribute-name.pseudo-element.css',\n 'source.css.less entity.other.attribute-name.id',\n 'entity.other.attribute-name.scss'\n ],\n settings: {\n foreground: '#800000'\n }\n },\n {\n scope: 'invalid',\n settings: {\n foreground: '#cd3131'\n }\n },\n {\n scope: 'markup.underline',\n settings: {\n fontStyle: 'underline'\n }\n },\n {\n scope: 'markup.bold',\n settings: {\n fontStyle: 'bold',\n foreground: '#000080'\n }\n },\n {\n scope: 'markup.heading',\n settings: {\n fontStyle: 'bold',\n foreground: '#800000'\n }\n },\n {\n scope: 'markup.italic',\n settings: {\n fontStyle: 'italic'\n }\n },\n {\n scope: 'markup.strikethrough',\n settings: {\n fontStyle: 'strikethrough'\n }\n },\n {\n scope: 'markup.inserted',\n settings: {\n foreground: '#098658'\n }\n },\n {\n scope: 'markup.deleted',\n settings: {\n foreground: '#a31515'\n }\n },\n {\n scope: 'markup.changed',\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: ['punctuation.definition.quote.begin.markdown', 'punctuation.definition.list.begin.markdown'],\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: 'markup.inline.raw',\n settings: {\n foreground: '#800000'\n }\n },\n {\n name: 'brackets of XML/HTML tags',\n scope: 'punctuation.definition.tag',\n settings: {\n foreground: '#800000'\n }\n },\n {\n scope: ['meta.preprocessor', 'entity.name.function.preprocessor'],\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'meta.preprocessor.string',\n settings: {\n foreground: '#a31515'\n }\n },\n {\n scope: 'meta.preprocessor.numeric',\n settings: {\n foreground: '#098658'\n }\n },\n {\n scope: 'meta.structure.dictionary.key.python',\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: 'storage',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'storage.type',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: ['storage.modifier', 'keyword.operator.noexcept'],\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: ['string', 'meta.embedded.assembly'],\n settings: {\n foreground: '#a31515'\n }\n },\n {\n scope: [\n 'string.comment.buffered.block.pug',\n 'string.quoted.pug',\n 'string.interpolated.pug',\n 'string.unquoted.plain.in.yaml',\n 'string.unquoted.plain.out.yaml',\n 'string.unquoted.block.yaml',\n 'string.quoted.single.yaml',\n 'string.quoted.double.xml',\n 'string.quoted.single.xml',\n 'string.unquoted.cdata.xml',\n 'string.quoted.double.html',\n 'string.quoted.single.html',\n 'string.unquoted.html',\n 'string.quoted.single.handlebars',\n 'string.quoted.double.handlebars'\n ],\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'string.regexp',\n settings: {\n foreground: '#811f3f'\n }\n },\n {\n name: 'String interpolation',\n scope: [\n 'punctuation.definition.template-expression.begin',\n 'punctuation.definition.template-expression.end',\n 'punctuation.section.embedded'\n ],\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n name: 'Reset JavaScript string interpolation expression',\n scope: ['meta.template.expression'],\n settings: {\n foreground: '#000000'\n }\n },\n {\n scope: [\n 'support.constant.property-value',\n 'support.constant.font-name',\n 'support.constant.media-type',\n 'support.constant.media',\n 'constant.other.color.rgb-value',\n 'constant.other.rgb-value',\n 'support.constant.color'\n ],\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: [\n 'support.type.vendored.property-name',\n 'support.type.property-name',\n 'variable.css',\n 'variable.scss',\n 'variable.other.less',\n 'source.coffee.embedded'\n ],\n settings: {\n foreground: '#ff0000'\n }\n },\n {\n scope: ['support.type.property-name.json'],\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: 'keyword',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'keyword.control',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'keyword.operator',\n settings: {\n foreground: '#000000'\n }\n },\n {\n scope: [\n 'keyword.operator.new',\n 'keyword.operator.expression',\n 'keyword.operator.cast',\n 'keyword.operator.sizeof',\n 'keyword.operator.alignof',\n 'keyword.operator.typeid',\n 'keyword.operator.alignas',\n 'keyword.operator.instanceof',\n 'keyword.operator.logical.python',\n 'keyword.operator.wordlike'\n ],\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'keyword.other.unit',\n settings: {\n foreground: '#098658'\n }\n },\n {\n scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],\n settings: {\n foreground: '#800000'\n }\n },\n {\n scope: 'support.function.git-rebase',\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n scope: 'constant.sha.git-rebase',\n settings: {\n foreground: '#098658'\n }\n },\n {\n name: 'coloring of the Java import and package identifiers',\n scope: ['storage.modifier.import.java', 'variable.language.wildcard.java', 'storage.modifier.package.java'],\n settings: {\n foreground: '#000000'\n }\n },\n {\n name: 'this.self',\n scope: 'variable.language',\n settings: {\n foreground: '#0000ff'\n }\n },\n \n // adds rules to the light vs rules\n {\n name: 'Function declarations',\n scope: [\n 'entity.name.function',\n 'support.function',\n 'support.constant.handlebars',\n 'source.powershell variable.other.member',\n 'entity.name.operator.custom-literal' // See https://en.cppreference.com/w/cpp/language/user_literal\n ],\n settings: {\n foreground: '#795E26'\n }\n },\n {\n name: 'Types declaration and references',\n scope: [\n 'support.class',\n 'support.type',\n 'entity.name.type',\n 'entity.name.namespace',\n 'entity.other.attribute',\n 'entity.name.scope-resolution',\n 'entity.name.class',\n 'storage.type.numeric.go',\n 'storage.type.byte.go',\n 'storage.type.boolean.go',\n 'storage.type.string.go',\n 'storage.type.uintptr.go',\n 'storage.type.error.go',\n 'storage.type.rune.go',\n 'storage.type.cs',\n 'storage.type.generic.cs',\n 'storage.type.modifier.cs',\n 'storage.type.variable.cs',\n 'storage.type.annotation.java',\n 'storage.type.generic.java',\n 'storage.type.java',\n 'storage.type.object.array.java',\n 'storage.type.primitive.array.java',\n 'storage.type.primitive.java',\n 'storage.type.token.java',\n 'storage.type.groovy',\n 'storage.type.annotation.groovy',\n 'storage.type.parameters.groovy',\n 'storage.type.generic.groovy',\n 'storage.type.object.array.groovy',\n 'storage.type.primitive.array.groovy',\n 'storage.type.primitive.groovy'\n ],\n settings: {\n foreground: '#0f96be'\n }\n },\n {\n name: 'Types declaration and references, TS grammar specific',\n scope: [\n 'meta.type.cast.expr',\n 'meta.type.new.expr',\n 'support.constant.math',\n 'support.constant.dom',\n 'support.constant.json',\n 'entity.other.inherited-class'\n ],\n settings: {\n foreground: '#267f99'\n }\n },\n {\n name: 'Control flow / Special keywords',\n scope: [\n 'keyword.control',\n 'source.cpp keyword.operator.new',\n 'source.cpp keyword.operator.delete',\n 'keyword.other.using',\n 'keyword.other.operator',\n 'entity.name.operator'\n ],\n settings: {\n foreground: '#AF00DB'\n }\n },\n {\n name: 'Variable and parameter name',\n scope: [\n 'variable',\n 'meta.definition.variable.name',\n 'support.variable',\n 'entity.name.variable',\n 'constant.other.placeholder' // placeholders in strings\n ],\n settings: {\n foreground: '#000000'\n }\n },\n {\n name: 'Constants and enums',\n scope: ['variable.other.constant', 'variable.other.enummember'],\n settings: {\n foreground: '#0070C1'\n }\n },\n {\n name: 'Object keys, TS grammar specific',\n scope: ['meta.object-literal.key'],\n settings: {\n foreground: '#001080'\n }\n },\n {\n name: 'CSS property value',\n scope: [\n 'support.constant.property-value',\n 'support.constant.font-name',\n 'support.constant.media-type',\n 'support.constant.media',\n 'constant.other.color.rgb-value',\n 'constant.other.rgb-value',\n 'support.constant.color'\n ],\n settings: {\n foreground: '#0451a5'\n }\n },\n {\n name: 'Regular expression groups',\n scope: [\n 'punctuation.definition.group.regexp',\n 'punctuation.definition.group.assertion.regexp',\n 'punctuation.definition.character-class.regexp',\n 'punctuation.character.set.begin.regexp',\n 'punctuation.character.set.end.regexp',\n 'keyword.operator.negation.regexp',\n 'support.other.parenthesis.regexp'\n ],\n settings: {\n foreground: '#d16969'\n }\n },\n {\n scope: [\n 'constant.character.character-class.regexp',\n 'constant.other.character-class.set.regexp',\n 'constant.other.character-class.regexp',\n 'constant.character.set.regexp'\n ],\n settings: {\n foreground: '#811f3f'\n }\n },\n {\n scope: 'keyword.operator.quantifier.regexp',\n settings: {\n foreground: '#000000'\n }\n },\n {\n scope: ['keyword.operator.or.regexp', 'keyword.control.anchor.regexp'],\n settings: {\n foreground: '#EE0000'\n }\n },\n {\n scope: 'constant.character',\n settings: {\n foreground: '#0000ff'\n }\n },\n {\n scope: 'constant.character.escape',\n settings: {\n foreground: '#EE0000'\n }\n },\n {\n scope: 'entity.name.label',\n settings: {\n foreground: '#000000'\n }\n },\n { scope: 'keyword.operator', settings: { foreground: '#f00' } },\n { scope: 'keyword.operator.instanceof', settings: { foreground: '#f00' } },\n { scope: 'keyword.operator.logical', settings: { foreground: '#f00' } },\n { scope: 'keyword.operator.logical.python', settings: { foreground: '#f00' } },\n \n // { \"scope\": \"keyword.control\", \"settings\": { \"foreground\": \"#bc00eb\" } }\n \n // { \"scope\": \"support.type.property-name\", \"settings\": { \"foreground\": \"#0451a5\" } },\n { scope: 'support.type.property-name', settings: { foreground: '#000000' } },\n \n // { \"scope\": \"variable.other\", \"settings\": { \"foreground\": \"#000000\", \"fontStyle\": \"\" } },\n // { \"scope\": \"variable.parameter\", \"settings\": { \"foreground\": \"#000000\", \"fontStyle\": \"\" } },\n { scope: 'variable', settings: { foreground: '#000000', fontStyle: '' } },\n // { \"scope\": \"variable.other.property\", \"settings\": { \"foreground\": \"#0115AF\" } },\n { scope: 'variable.other.constant', settings: { foreground: '#000000' } },\n \n { scope: 'keyword.operator.expression.typeof.js', settings: { foreground: '#f00' } },\n { scope: 'storage.type', settings: { foreground: '#0000ee' } }, // const\n { scope: 'storage.modifier', settings: { foreground: '#0000ee' } },\n { scope: 'constant.language', settings: { foreground: '#0000ee' } },\n { scope: 'constant.numeric', settings: { foreground: '#00a000' } }, // number\n { scope: 'variable.language.this', settings: { foreground: '#267f99' } },\n { scope: 'string.quoted.docstring.multi.python', settings: { foreground: '#000000' } },\n { scope: 'punctuation.separator.delimiter.c', settings: { foreground: '#f00' } },\n { scope: 'punctuation.separator.pointer-access.c', settings: { foreground: '#f00' } },\n { scope: 'entity.name.tag.pug', settings: { foreground: '#f00' } },\n { scope: 'entity.other.attribute-name.id.pug', settings: { foreground: '#722dd2' } },\n { scope: 'entity.other.attribute-name.class.pug', settings: { foreground: '#267f99' } },\n { scope: 'entity.other.attribute-name.tag.pug', settings: { foreground: '#8e5e1a' } },\n { scope: 'entity.name.tag', settings: { foreground: '#000000', fontStyle: 'bold' } },\n \n { scope: 'punctuation.definition.tag', settings: { foreground: '#000000', fontStyle: 'bold' } },\n \n \n // function: bold\n { scope: 'entity.name.function', settings: { foreground: '#000000' , fontStyle: 'bold' } },\n { scope: 'support.function', settings: { foreground: '#000000' , fontStyle: 'bold' } },\n \n { scope: 'constant.language.module.http', settings: { foreground: '#00f' } },\n { scope: 'constant.language.directive.module', settings: { foreground: '#00f' } },\n { scope: 'constant.language.directive.module.main', settings: { foreground: '#f00', fontStyle: 'bold' } },\n \n { scope: 'meta.decorator.dolphindb', settings: { foreground: '#aa6f00' } },\n \n { scope: 'punctuation.definition.string.begin.json.comments', settings: { foreground: '#111' } },\n { scope: 'punctuation.definition.string.end.json.comments', settings: { foreground: '#111' } },\n { scope: 'punctuation.support.type.property-name.begin.json.comments', settings: { foreground: '#111' } },\n { scope: 'punctuation.support.type.property-name.end.json.comments', settings: { foreground: '#111' } }\n ]\n}\n"]}