@lobehub/ui 1.165.7 → 1.165.8

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