@oxide/design-system 6.5.4 → 6.6.1

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.
@@ -0,0 +1,1610 @@
1
+ // components/src/syntax/langs/oxql.tmLanguage.json
2
+ var oxql_tmLanguage_default = {
3
+ $schema: "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
4
+ name: "oxql",
5
+ repository: {
6
+ keywords: {
7
+ patterns: [
8
+ {
9
+ name: "keyword.control.oxql",
10
+ match: "\\b(if|while|for|return)\\b"
11
+ }
12
+ ]
13
+ },
14
+ strings: {
15
+ name: "string.quoted.double.oxql",
16
+ begin: '"',
17
+ end: '"',
18
+ patterns: [
19
+ {
20
+ name: "constant.character.escape.oxql",
21
+ match: "\\\\."
22
+ }
23
+ ]
24
+ }
25
+ },
26
+ scopeName: "source.oxql",
27
+ patterns: [
28
+ {
29
+ name: "keyword.control.oxql",
30
+ match: "\\b(get|join|align|filter|group_by)\\b"
31
+ },
32
+ {
33
+ name: "string.quoted.double.oxql",
34
+ begin: '"',
35
+ end: '"',
36
+ patterns: [
37
+ {
38
+ name: "constant.character.escape.oxql",
39
+ match: "\\\\."
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ name: "string.quoted.single.oxql",
45
+ begin: "'",
46
+ end: "'",
47
+ patterns: [
48
+ {
49
+ name: "constant.character.escape.oxql",
50
+ match: "\\\\."
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ name: "constant.numeric.oxql",
56
+ match: "\\b\\d+[smhdw]\\b"
57
+ },
58
+ {
59
+ name: "constant.numeric.datetime.oxql",
60
+ match: "@\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}"
61
+ },
62
+ {
63
+ name: "constant.numeric.function.oxql",
64
+ match: "@now\\(\\)"
65
+ },
66
+ {
67
+ name: "constant.numeric.oxql",
68
+ match: "\\b\\d+\\b"
69
+ },
70
+ {
71
+ name: "comment.block.oxql",
72
+ begin: "/\\*",
73
+ end: "\\*/"
74
+ },
75
+ {
76
+ name: "comment.line.double-slash.oxql",
77
+ match: "//.*$"
78
+ },
79
+ {
80
+ name: "keyword.operator.oxql",
81
+ match: "\\|"
82
+ }
83
+ ]
84
+ };
85
+
86
+ // components/src/syntax/langs/p4.tmLanguage.json
87
+ var p4_tmLanguage_default = {
88
+ $schema: "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
89
+ name: "p4",
90
+ scopeName: "source.p4",
91
+ repository: {
92
+ comment: {
93
+ patterns: [
94
+ {
95
+ name: "comment.line.double-slash.p4",
96
+ match: "//.*$"
97
+ },
98
+ {
99
+ name: "comment.block.p4",
100
+ begin: "/\\*",
101
+ end: "\\*/"
102
+ }
103
+ ]
104
+ },
105
+ keywords: {
106
+ patterns: [
107
+ {
108
+ name: "constant.language.p4",
109
+ match: "\\b(?:false|true)\\b"
110
+ },
111
+ {
112
+ name: "keyword.control.p4",
113
+ match: "\\b(?:default_action|transition|counters|NoAction|optional|actions|control|default|package|ternary|typedef|action|extern|header|meters|parser|return|select|struct|apply|const|exact|inout|range|state|table|else|size|key|lpm|out|if|in|_)\\b"
114
+ },
115
+ {
116
+ name: "storage.type.p4",
117
+ match: "\\b(?:packet_out|packet_in|varbit|error|tuple|bool|bit|int)\\b"
118
+ }
119
+ ]
120
+ }
121
+ },
122
+ patterns: [
123
+ {
124
+ name: "keyword.control.directive.p4",
125
+ match: "^\\s*#\\s*\\w+"
126
+ },
127
+ {
128
+ include: "#comment"
129
+ },
130
+ {
131
+ name: "string.quoted.double.p4",
132
+ begin: '"',
133
+ end: '"',
134
+ patterns: [
135
+ {
136
+ name: "constant.character.escape.p4",
137
+ match: "\\\\."
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ match: "(@)([A-Za-z_]\\w*)",
143
+ captures: {
144
+ "1": {
145
+ name: "punctuation.definition.annotation.p4"
146
+ },
147
+ "2": {
148
+ name: "storage.type.annotation.p4"
149
+ }
150
+ }
151
+ },
152
+ {
153
+ name: "storage.type.p4",
154
+ match: "\\b(?:bit|varbit)\\s*<\\s*\\d+\\s*>|\\btuple\\s*<(?:[^<>]|<[^>]*>)*>"
155
+ },
156
+ {
157
+ name: "constant.numeric.p4",
158
+ match: "\\b(?:\\d+w0x[0-9a-fA-F]+|\\d+w\\d+|0x[0-9a-fA-F]+|\\d+)\\b"
159
+ },
160
+ {
161
+ match: "\\b(typedef|struct|header|extern)\\s+([A-Za-z_]\\w*)",
162
+ captures: {
163
+ "1": {
164
+ name: "keyword.control.p4"
165
+ },
166
+ "2": {
167
+ name: "storage.type.p4"
168
+ }
169
+ }
170
+ },
171
+ {
172
+ match: "\\b(table|parser|control|state|package)\\s+([A-Za-z_]\\w*)",
173
+ captures: {
174
+ "1": {
175
+ name: "keyword.control.p4"
176
+ },
177
+ "2": {
178
+ name: "entity.name.type.p4"
179
+ }
180
+ }
181
+ },
182
+ {
183
+ match: "\\b(action)\\s+([A-Za-z_]\\w*)",
184
+ captures: {
185
+ "1": {
186
+ name: "keyword.control.p4"
187
+ },
188
+ "2": {
189
+ name: "entity.name.function.p4"
190
+ }
191
+ }
192
+ },
193
+ {
194
+ name: "storage.type.p4",
195
+ match: "\\b[A-Za-z_]\\w*_[th]\\b"
196
+ },
197
+ {
198
+ begin: "\\b(actions)\\s*=\\s*\\{",
199
+ end: "\\}",
200
+ beginCaptures: {
201
+ "1": {
202
+ name: "keyword.control.p4"
203
+ }
204
+ },
205
+ patterns: [
206
+ {
207
+ include: "#comment"
208
+ },
209
+ {
210
+ include: "#keywords"
211
+ },
212
+ {
213
+ name: "entity.name.function.p4",
214
+ match: "\\b[A-Za-z_]\\w*\\b"
215
+ }
216
+ ]
217
+ },
218
+ {
219
+ include: "#keywords"
220
+ },
221
+ {
222
+ match: "(\\.)([A-Za-z_]\\w*)(?=\\s*\\()",
223
+ captures: {
224
+ "1": {
225
+ name: "punctuation.accessor.p4"
226
+ },
227
+ "2": {
228
+ name: "entity.name.function.p4"
229
+ }
230
+ }
231
+ },
232
+ {
233
+ name: "entity.name.function.p4",
234
+ match: "(?<!\\.)\\b[A-Za-z_]\\w*(?=\\s*\\()"
235
+ }
236
+ ]
237
+ };
238
+
239
+ // components/src/syntax/oxide-syntax.json
240
+ var oxide_syntax_default = {
241
+ name: "Oxide Dark",
242
+ colors: {
243
+ "editor.background": "var(--syntax-bg)",
244
+ "editor.foreground": "var(--syntax-fg)"
245
+ },
246
+ tokenColors: [
247
+ {
248
+ scope: [
249
+ "text",
250
+ "source",
251
+ "variable.other.readwrite",
252
+ "punctuation.definition.variable"
253
+ ],
254
+ settings: {
255
+ foreground: "var(--syntax-fg)"
256
+ }
257
+ },
258
+ {
259
+ scope: "punctuation",
260
+ settings: {
261
+ foreground: "var(--syntax-comment)",
262
+ fontStyle: ""
263
+ }
264
+ },
265
+ {
266
+ scope: ["comment", "punctuation.definition.comment"],
267
+ settings: {
268
+ foreground: "var(--syntax-comment)"
269
+ }
270
+ },
271
+ {
272
+ scope: ["string", "punctuation.definition.string"],
273
+ settings: {
274
+ foreground: "var(--syntax-string)"
275
+ }
276
+ },
277
+ {
278
+ scope: "constant.character.escape",
279
+ settings: {
280
+ foreground: "var(--syntax-escape)"
281
+ }
282
+ },
283
+ {
284
+ scope: [
285
+ "constant.numeric",
286
+ "variable.other.constant",
287
+ "entity.name.constant",
288
+ "constant.language.boolean",
289
+ "constant.language.false",
290
+ "constant.language.true",
291
+ "keyword.other.unit.user-defined",
292
+ "keyword.other.unit.suffix.floating-point"
293
+ ],
294
+ settings: {
295
+ foreground: "var(--syntax-number)"
296
+ }
297
+ },
298
+ {
299
+ scope: [
300
+ "keyword",
301
+ "keyword.operator.word",
302
+ "keyword.operator.new",
303
+ "variable.language.super",
304
+ "support.type.primitive",
305
+ "storage.type",
306
+ "storage.modifier",
307
+ "punctuation.definition.keyword"
308
+ ],
309
+ settings: {
310
+ foreground: "var(--syntax-keyword)",
311
+ fontStyle: ""
312
+ }
313
+ },
314
+ {
315
+ scope: "entity.name.tag.documentation",
316
+ settings: {
317
+ foreground: "var(--syntax-keyword)"
318
+ }
319
+ },
320
+ {
321
+ scope: [
322
+ "keyword.operator",
323
+ "punctuation.accessor",
324
+ "punctuation.definition.generic",
325
+ "meta.function.closure punctuation.section.parameters",
326
+ "punctuation.definition.tag",
327
+ "punctuation.separator.key-value"
328
+ ],
329
+ settings: {
330
+ foreground: "var(--syntax-operator)"
331
+ }
332
+ },
333
+ {
334
+ scope: [
335
+ "entity.name.function",
336
+ "meta.function-call.method",
337
+ "support.function",
338
+ "support.function.misc",
339
+ "variable.function"
340
+ ],
341
+ settings: {
342
+ foreground: "var(--syntax-function)"
343
+ }
344
+ },
345
+ {
346
+ scope: [
347
+ "entity.name.class",
348
+ "entity.other.inherited-class",
349
+ "support.class",
350
+ "meta.function-call.constructor",
351
+ "entity.name.struct"
352
+ ],
353
+ settings: {
354
+ foreground: "var(--syntax-number)"
355
+ }
356
+ },
357
+ {
358
+ scope: "entity.name.enum",
359
+ settings: {
360
+ foreground: "var(--syntax-number)"
361
+ }
362
+ },
363
+ {
364
+ scope: ["meta.enum variable.other.readwrite", "variable.other.enummember"],
365
+ settings: {
366
+ foreground: "var(--syntax-operator)"
367
+ }
368
+ },
369
+ {
370
+ scope: "meta.property.object",
371
+ settings: {
372
+ foreground: "var(--syntax-operator)"
373
+ }
374
+ },
375
+ {
376
+ scope: ["meta.type", "meta.type-alias", "support.type", "entity.name.type"],
377
+ settings: {
378
+ foreground: "var(--syntax-number)"
379
+ }
380
+ },
381
+ {
382
+ scope: [
383
+ "meta.annotation variable.function",
384
+ "meta.annotation variable.annotation.function",
385
+ "meta.annotation punctuation.definition.annotation",
386
+ "meta.decorator",
387
+ "punctuation.decorator"
388
+ ],
389
+ settings: {
390
+ foreground: "var(--syntax-number)"
391
+ }
392
+ },
393
+ {
394
+ scope: ["variable.parameter", "meta.function.parameters"],
395
+ settings: {
396
+ foreground: "var(--syntax-parameter)"
397
+ }
398
+ },
399
+ {
400
+ scope: ["constant.language", "support.function.builtin"],
401
+ settings: {
402
+ foreground: "var(--syntax-builtin)"
403
+ }
404
+ },
405
+ {
406
+ scope: "entity.other.attribute-name.documentation",
407
+ settings: {
408
+ foreground: "var(--syntax-builtin)"
409
+ }
410
+ },
411
+ {
412
+ scope: ["keyword.control.directive", "punctuation.definition.directive"],
413
+ settings: {
414
+ foreground: "var(--syntax-number)"
415
+ }
416
+ },
417
+ {
418
+ scope: "punctuation.definition.typeparameters",
419
+ settings: {
420
+ foreground: "var(--syntax-function)"
421
+ }
422
+ },
423
+ {
424
+ scope: "entity.name.namespace",
425
+ settings: {
426
+ foreground: "var(--syntax-number)"
427
+ }
428
+ },
429
+ {
430
+ scope: "support.type.property-name.css",
431
+ settings: {
432
+ foreground: "var(--syntax-function)",
433
+ fontStyle: ""
434
+ }
435
+ },
436
+ {
437
+ scope: [
438
+ "variable.language.this",
439
+ "variable.language.this punctuation.definition.variable"
440
+ ],
441
+ settings: {
442
+ foreground: "var(--syntax-builtin)"
443
+ }
444
+ },
445
+ {
446
+ scope: "variable.object.property",
447
+ settings: {
448
+ foreground: "var(--syntax-fg)"
449
+ }
450
+ },
451
+ {
452
+ scope: ["string.template variable", "string variable"],
453
+ settings: {
454
+ foreground: "var(--syntax-fg)"
455
+ }
456
+ },
457
+ {
458
+ scope: "keyword.operator.new",
459
+ settings: {
460
+ fontStyle: "bold"
461
+ }
462
+ },
463
+ {
464
+ scope: "storage.modifier.specifier.extern.cpp",
465
+ settings: {
466
+ foreground: "var(--syntax-keyword)"
467
+ }
468
+ },
469
+ {
470
+ scope: [
471
+ "entity.name.scope-resolution.template.call.cpp",
472
+ "entity.name.scope-resolution.parameter.cpp",
473
+ "entity.name.scope-resolution.cpp",
474
+ "entity.name.scope-resolution.function.definition.cpp"
475
+ ],
476
+ settings: {
477
+ foreground: "var(--syntax-number)"
478
+ }
479
+ },
480
+ {
481
+ scope: "storage.type.class.doxygen",
482
+ settings: {
483
+ fontStyle: ""
484
+ }
485
+ },
486
+ {
487
+ scope: ["storage.modifier.reference.cpp"],
488
+ settings: {
489
+ foreground: "var(--syntax-operator)"
490
+ }
491
+ },
492
+ {
493
+ scope: "meta.interpolation.cs",
494
+ settings: {
495
+ foreground: "var(--syntax-fg)"
496
+ }
497
+ },
498
+ {
499
+ scope: "comment.block.documentation.cs",
500
+ settings: {
501
+ foreground: "var(--syntax-fg)"
502
+ }
503
+ },
504
+ {
505
+ scope: [
506
+ "source.css entity.other.attribute-name.class.css",
507
+ "entity.other.attribute-name.parent-selector.css punctuation.definition.entity.css"
508
+ ],
509
+ settings: {
510
+ foreground: "var(--syntax-number)"
511
+ }
512
+ },
513
+ {
514
+ scope: "punctuation.separator.operator.css",
515
+ settings: {
516
+ foreground: "var(--syntax-operator)"
517
+ }
518
+ },
519
+ {
520
+ scope: "source.css entity.other.attribute-name.pseudo-class",
521
+ settings: {
522
+ foreground: "var(--syntax-operator)"
523
+ }
524
+ },
525
+ {
526
+ scope: "source.css constant.other.unicode-range",
527
+ settings: {
528
+ foreground: "var(--syntax-number)"
529
+ }
530
+ },
531
+ {
532
+ scope: "source.css variable.parameter.url",
533
+ settings: {
534
+ foreground: "var(--syntax-operator)",
535
+ fontStyle: ""
536
+ }
537
+ },
538
+ {
539
+ scope: ["support.type.vendored.property-name"],
540
+ settings: {
541
+ foreground: "var(--syntax-function)"
542
+ }
543
+ },
544
+ {
545
+ scope: [
546
+ "source.css meta.property-value variable",
547
+ "source.css meta.property-value variable.other.less",
548
+ "source.css meta.property-value variable.other.less punctuation.definition.variable.less",
549
+ "meta.definition.variable.scss"
550
+ ],
551
+ settings: {
552
+ foreground: "var(--syntax-parameter)"
553
+ }
554
+ },
555
+ {
556
+ scope: [
557
+ "source.css meta.property-list variable",
558
+ "meta.property-list variable.other.less",
559
+ "meta.property-list variable.other.less punctuation.definition.variable.less"
560
+ ],
561
+ settings: {
562
+ foreground: "var(--syntax-function)"
563
+ }
564
+ },
565
+ {
566
+ scope: "keyword.other.unit.percentage.css",
567
+ settings: {
568
+ foreground: "var(--syntax-number)"
569
+ }
570
+ },
571
+ {
572
+ scope: "source.css meta.attribute-selector",
573
+ settings: {
574
+ foreground: "var(--syntax-operator)"
575
+ }
576
+ },
577
+ {
578
+ scope: [
579
+ "keyword.other.definition.ini",
580
+ "punctuation.support.type.property-name.json",
581
+ "support.type.property-name.json",
582
+ "punctuation.support.type.property-name.toml",
583
+ "support.type.property-name.toml",
584
+ "entity.name.tag.yaml",
585
+ "punctuation.support.type.property-name.yaml",
586
+ "support.type.property-name.yaml"
587
+ ],
588
+ settings: {
589
+ foreground: "var(--syntax-function)",
590
+ fontStyle: ""
591
+ }
592
+ },
593
+ {
594
+ scope: ["constant.language.json", "constant.language.yaml"],
595
+ settings: {
596
+ foreground: "var(--syntax-number)"
597
+ }
598
+ },
599
+ {
600
+ scope: ["entity.name.type.anchor.yaml", "variable.other.alias.yaml"],
601
+ settings: {
602
+ foreground: "var(--syntax-number)",
603
+ fontStyle: ""
604
+ }
605
+ },
606
+ {
607
+ scope: ["support.type.property-name.table", "entity.name.section.group-title.ini"],
608
+ settings: {
609
+ foreground: "var(--syntax-number)"
610
+ }
611
+ },
612
+ {
613
+ scope: "constant.other.time.datetime.offset.toml",
614
+ settings: {
615
+ foreground: "var(--syntax-escape)"
616
+ }
617
+ },
618
+ {
619
+ scope: ["punctuation.definition.anchor.yaml", "punctuation.definition.alias.yaml"],
620
+ settings: {
621
+ foreground: "var(--syntax-escape)"
622
+ }
623
+ },
624
+ {
625
+ scope: "entity.other.document.begin.yaml",
626
+ settings: {
627
+ foreground: "var(--syntax-escape)"
628
+ }
629
+ },
630
+ {
631
+ scope: "markup.changed.diff",
632
+ settings: {
633
+ foreground: "var(--syntax-number)"
634
+ }
635
+ },
636
+ {
637
+ scope: [
638
+ "meta.diff.header.from-file",
639
+ "meta.diff.header.to-file",
640
+ "punctuation.definition.from-file.diff",
641
+ "punctuation.definition.to-file.diff"
642
+ ],
643
+ settings: {
644
+ foreground: "var(--syntax-function)"
645
+ }
646
+ },
647
+ {
648
+ scope: "markup.inserted.diff",
649
+ settings: {
650
+ foreground: "var(--syntax-operator)"
651
+ }
652
+ },
653
+ {
654
+ scope: "markup.deleted.diff",
655
+ settings: {
656
+ foreground: "var(--syntax-builtin)"
657
+ }
658
+ },
659
+ {
660
+ scope: ["variable.other.env"],
661
+ settings: {
662
+ foreground: "var(--syntax-function)"
663
+ }
664
+ },
665
+ {
666
+ scope: ["string.quoted variable.other.env"],
667
+ settings: {
668
+ foreground: "var(--syntax-fg)"
669
+ }
670
+ },
671
+ {
672
+ scope: "support.function.builtin.gdscript",
673
+ settings: {
674
+ foreground: "var(--syntax-function)"
675
+ }
676
+ },
677
+ {
678
+ scope: "constant.language.gdscript",
679
+ settings: {
680
+ foreground: "var(--syntax-number)"
681
+ }
682
+ },
683
+ {
684
+ scope: "comment meta.annotation.go",
685
+ settings: {
686
+ foreground: "var(--syntax-parameter)"
687
+ }
688
+ },
689
+ {
690
+ scope: "comment meta.annotation.parameters.go",
691
+ settings: {
692
+ foreground: "var(--syntax-number)"
693
+ }
694
+ },
695
+ {
696
+ scope: "constant.language.go",
697
+ settings: {
698
+ foreground: "var(--syntax-number)"
699
+ }
700
+ },
701
+ {
702
+ scope: "variable.graphql",
703
+ settings: {
704
+ foreground: "var(--syntax-fg)"
705
+ }
706
+ },
707
+ {
708
+ scope: "string.unquoted.alias.graphql",
709
+ settings: {
710
+ foreground: "var(--syntax-string-alias)"
711
+ }
712
+ },
713
+ {
714
+ scope: "constant.character.enum.graphql",
715
+ settings: {
716
+ foreground: "var(--syntax-operator)"
717
+ }
718
+ },
719
+ {
720
+ scope: "meta.objectvalues.graphql constant.object.key.graphql string.unquoted.graphql",
721
+ settings: {
722
+ foreground: "var(--syntax-string-alias)"
723
+ }
724
+ },
725
+ {
726
+ scope: [
727
+ "keyword.other.doctype",
728
+ "meta.tag.sgml.doctype punctuation.definition.tag",
729
+ "meta.tag.metadata.doctype entity.name.tag",
730
+ "meta.tag.metadata.doctype punctuation.definition.tag"
731
+ ],
732
+ settings: {
733
+ foreground: "var(--syntax-keyword)"
734
+ }
735
+ },
736
+ {
737
+ scope: ["entity.name.tag"],
738
+ settings: {
739
+ foreground: "var(--syntax-function)",
740
+ fontStyle: ""
741
+ }
742
+ },
743
+ {
744
+ scope: [
745
+ "text.html constant.character.entity",
746
+ "text.html constant.character.entity punctuation",
747
+ "constant.character.entity.xml",
748
+ "constant.character.entity.xml punctuation",
749
+ "constant.character.entity.js.jsx",
750
+ "constant.charactger.entity.js.jsx punctuation",
751
+ "constant.character.entity.tsx",
752
+ "constant.character.entity.tsx punctuation"
753
+ ],
754
+ settings: {
755
+ foreground: "var(--syntax-builtin)"
756
+ }
757
+ },
758
+ {
759
+ scope: ["entity.other.attribute-name"],
760
+ settings: {
761
+ foreground: "var(--syntax-number)"
762
+ }
763
+ },
764
+ {
765
+ scope: [
766
+ "support.class.component",
767
+ "support.class.component.jsx",
768
+ "support.class.component.tsx",
769
+ "support.class.component.vue"
770
+ ],
771
+ settings: {
772
+ foreground: "var(--syntax-escape)",
773
+ fontStyle: ""
774
+ }
775
+ },
776
+ {
777
+ scope: ["punctuation.definition.annotation", "storage.type.annotation"],
778
+ settings: {
779
+ foreground: "var(--syntax-number)"
780
+ }
781
+ },
782
+ {
783
+ scope: "constant.other.enum.java",
784
+ settings: {
785
+ foreground: "var(--syntax-operator)"
786
+ }
787
+ },
788
+ {
789
+ scope: "storage.modifier.import.java",
790
+ settings: {
791
+ foreground: "var(--syntax-fg)"
792
+ }
793
+ },
794
+ {
795
+ scope: "comment.block.javadoc.java keyword.other.documentation.javadoc.java",
796
+ settings: {
797
+ fontStyle: ""
798
+ }
799
+ },
800
+ {
801
+ scope: "meta.export variable.other.readwrite.js",
802
+ settings: {
803
+ foreground: "var(--syntax-parameter)"
804
+ }
805
+ },
806
+ {
807
+ scope: [
808
+ "variable.other.constant.js",
809
+ "variable.other.constant.ts",
810
+ "variable.other.property.js",
811
+ "variable.other.property.ts"
812
+ ],
813
+ settings: {
814
+ foreground: "var(--syntax-fg)"
815
+ }
816
+ },
817
+ {
818
+ scope: ["variable.other.jsdoc", "comment.block.documentation variable.other"],
819
+ settings: {
820
+ foreground: "var(--syntax-parameter)",
821
+ fontStyle: ""
822
+ }
823
+ },
824
+ {
825
+ scope: "storage.type.class.jsdoc",
826
+ settings: {
827
+ fontStyle: ""
828
+ }
829
+ },
830
+ {
831
+ scope: "support.type.object.console.js",
832
+ settings: {
833
+ foreground: "var(--syntax-fg)"
834
+ }
835
+ },
836
+ {
837
+ scope: ["support.constant.node", "support.type.object.module.js"],
838
+ settings: {
839
+ foreground: "var(--syntax-keyword)"
840
+ }
841
+ },
842
+ {
843
+ scope: "storage.modifier.implements",
844
+ settings: {
845
+ foreground: "var(--syntax-keyword)"
846
+ }
847
+ },
848
+ {
849
+ scope: [
850
+ "constant.language.null.js",
851
+ "constant.language.null.ts",
852
+ "constant.language.undefined.js",
853
+ "constant.language.undefined.ts",
854
+ "support.type.builtin.ts"
855
+ ],
856
+ settings: {
857
+ foreground: "var(--syntax-keyword)"
858
+ }
859
+ },
860
+ {
861
+ scope: "variable.parameter.generic",
862
+ settings: {
863
+ foreground: "var(--syntax-number)"
864
+ }
865
+ },
866
+ {
867
+ scope: ["keyword.declaration.function.arrow.js", "storage.type.function.arrow.ts"],
868
+ settings: {
869
+ foreground: "var(--syntax-operator)"
870
+ }
871
+ },
872
+ {
873
+ scope: "punctuation.decorator.ts",
874
+ settings: {
875
+ foreground: "var(--syntax-function)"
876
+ }
877
+ },
878
+ {
879
+ scope: [
880
+ "keyword.operator.expression.in.js",
881
+ "keyword.operator.expression.in.ts",
882
+ "keyword.operator.expression.infer.ts",
883
+ "keyword.operator.expression.instanceof.js",
884
+ "keyword.operator.expression.instanceof.ts",
885
+ "keyword.operator.expression.is",
886
+ "keyword.operator.expression.keyof.ts",
887
+ "keyword.operator.expression.of.js",
888
+ "keyword.operator.expression.of.ts",
889
+ "keyword.operator.expression.typeof.ts"
890
+ ],
891
+ settings: {
892
+ foreground: "var(--syntax-keyword)"
893
+ }
894
+ },
895
+ {
896
+ scope: "support.function.macro.julia",
897
+ settings: {
898
+ foreground: "var(--syntax-operator)"
899
+ }
900
+ },
901
+ {
902
+ scope: "constant.language.julia",
903
+ settings: {
904
+ foreground: "var(--syntax-number)"
905
+ }
906
+ },
907
+ {
908
+ scope: "constant.other.symbol.julia",
909
+ settings: {
910
+ foreground: "var(--syntax-parameter)"
911
+ }
912
+ },
913
+ {
914
+ scope: "text.tex keyword.control.preamble",
915
+ settings: {
916
+ foreground: "var(--syntax-operator)"
917
+ }
918
+ },
919
+ {
920
+ scope: "text.tex support.function.be",
921
+ settings: {
922
+ foreground: "var(--syntax-function)"
923
+ }
924
+ },
925
+ {
926
+ scope: "constant.other.general.math.tex",
927
+ settings: {
928
+ foreground: "var(--syntax-string-alias)"
929
+ }
930
+ },
931
+ {
932
+ scope: "comment.line.double-dash.documentation.lua storage.type.annotation.lua",
933
+ settings: {
934
+ foreground: "var(--syntax-keyword)",
935
+ fontStyle: ""
936
+ }
937
+ },
938
+ {
939
+ scope: [
940
+ "comment.line.double-dash.documentation.lua entity.name.variable.lua",
941
+ "comment.line.double-dash.documentation.lua variable.lua"
942
+ ],
943
+ settings: {
944
+ foreground: "var(--syntax-fg)"
945
+ }
946
+ },
947
+ {
948
+ scope: [
949
+ "heading.1.markdown punctuation.definition.heading.markdown",
950
+ "heading.1.markdown",
951
+ "heading.1.quarto punctuation.definition.heading.quarto",
952
+ "heading.1.quarto",
953
+ "markup.heading.atx.1.mdx",
954
+ "markup.heading.atx.1.mdx punctuation.definition.heading.mdx",
955
+ "markup.heading.setext.1.markdown",
956
+ "markup.heading.heading-0.asciidoc"
957
+ ],
958
+ settings: {
959
+ foreground: "var(--syntax-builtin)"
960
+ }
961
+ },
962
+ {
963
+ scope: [
964
+ "heading.2.markdown punctuation.definition.heading.markdown",
965
+ "heading.2.markdown",
966
+ "heading.2.quarto punctuation.definition.heading.quarto",
967
+ "heading.2.quarto",
968
+ "markup.heading.atx.2.mdx",
969
+ "markup.heading.atx.2.mdx punctuation.definition.heading.mdx",
970
+ "markup.heading.setext.2.markdown",
971
+ "markup.heading.heading-1.asciidoc"
972
+ ],
973
+ settings: {
974
+ foreground: "var(--syntax-number)"
975
+ }
976
+ },
977
+ {
978
+ scope: [
979
+ "heading.3.markdown punctuation.definition.heading.markdown",
980
+ "heading.3.markdown",
981
+ "heading.3.quarto punctuation.definition.heading.quarto",
982
+ "heading.3.quarto",
983
+ "markup.heading.atx.3.mdx",
984
+ "markup.heading.atx.3.mdx punctuation.definition.heading.mdx",
985
+ "markup.heading.heading-2.asciidoc"
986
+ ],
987
+ settings: {
988
+ foreground: "var(--syntax-number)"
989
+ }
990
+ },
991
+ {
992
+ scope: [
993
+ "heading.4.markdown punctuation.definition.heading.markdown",
994
+ "heading.4.markdown",
995
+ "heading.4.quarto punctuation.definition.heading.quarto",
996
+ "heading.4.quarto",
997
+ "markup.heading.atx.4.mdx",
998
+ "markup.heading.atx.4.mdx punctuation.definition.heading.mdx",
999
+ "markup.heading.heading-3.asciidoc"
1000
+ ],
1001
+ settings: {
1002
+ foreground: "var(--syntax-operator)"
1003
+ }
1004
+ },
1005
+ {
1006
+ scope: [
1007
+ "heading.5.markdown punctuation.definition.heading.markdown",
1008
+ "heading.5.markdown",
1009
+ "heading.5.quarto punctuation.definition.heading.quarto",
1010
+ "heading.5.quarto",
1011
+ "markup.heading.atx.5.mdx",
1012
+ "markup.heading.atx.5.mdx punctuation.definition.heading.mdx",
1013
+ "markup.heading.heading-4.asciidoc"
1014
+ ],
1015
+ settings: {
1016
+ foreground: "var(--syntax-function)"
1017
+ }
1018
+ },
1019
+ {
1020
+ scope: [
1021
+ "heading.6.markdown punctuation.definition.heading.markdown",
1022
+ "heading.6.markdown",
1023
+ "heading.6.quarto punctuation.definition.heading.quarto",
1024
+ "heading.6.quarto",
1025
+ "markup.heading.atx.6.mdx",
1026
+ "markup.heading.atx.6.mdx punctuation.definition.heading.mdx",
1027
+ "markup.heading.heading-5.asciidoc"
1028
+ ],
1029
+ settings: {
1030
+ foreground: "var(--syntax-keyword)"
1031
+ }
1032
+ },
1033
+ {
1034
+ scope: "markup.bold",
1035
+ settings: {
1036
+ foreground: "var(--syntax-builtin)",
1037
+ fontStyle: "bold"
1038
+ }
1039
+ },
1040
+ {
1041
+ scope: "markup.italic",
1042
+ settings: {
1043
+ foreground: "var(--syntax-builtin)"
1044
+ }
1045
+ },
1046
+ {
1047
+ scope: "markup.strikethrough",
1048
+ settings: {
1049
+ foreground: "var(--syntax-comment)",
1050
+ fontStyle: "strikethrough"
1051
+ }
1052
+ },
1053
+ {
1054
+ scope: ["punctuation.definition.link", "markup.underline.link"],
1055
+ settings: {
1056
+ foreground: "var(--syntax-function)"
1057
+ }
1058
+ },
1059
+ {
1060
+ scope: [
1061
+ "text.html.markdown punctuation.definition.link.title",
1062
+ "text.html.quarto punctuation.definition.link.title",
1063
+ "string.other.link.title.markdown",
1064
+ "string.other.link.title.quarto",
1065
+ "markup.link",
1066
+ "punctuation.definition.constant.markdown",
1067
+ "punctuation.definition.constant.quarto",
1068
+ "constant.other.reference.link.markdown",
1069
+ "constant.other.reference.link.quarto",
1070
+ "markup.substitution.attribute-reference"
1071
+ ],
1072
+ settings: {
1073
+ foreground: "var(--syntax-blue-pale)"
1074
+ }
1075
+ },
1076
+ {
1077
+ scope: [
1078
+ "punctuation.definition.raw.markdown",
1079
+ "punctuation.definition.raw.quarto",
1080
+ "markup.inline.raw.string.markdown",
1081
+ "markup.inline.raw.string.quarto",
1082
+ "markup.raw.block.markdown",
1083
+ "markup.raw.block.quarto"
1084
+ ],
1085
+ settings: {
1086
+ foreground: "var(--syntax-operator)"
1087
+ }
1088
+ },
1089
+ {
1090
+ scope: "fenced_code.block.language",
1091
+ settings: {
1092
+ foreground: "var(--syntax-function)"
1093
+ }
1094
+ },
1095
+ {
1096
+ scope: [
1097
+ "markup.fenced_code.block punctuation.definition",
1098
+ "markup.raw support.asciidoc"
1099
+ ],
1100
+ settings: {
1101
+ foreground: "var(--syntax-comment)"
1102
+ }
1103
+ },
1104
+ {
1105
+ scope: ["markup.quote", "punctuation.definition.quote.begin"],
1106
+ settings: {
1107
+ foreground: "var(--syntax-escape)"
1108
+ }
1109
+ },
1110
+ {
1111
+ scope: "meta.separator.markdown",
1112
+ settings: {
1113
+ foreground: "var(--syntax-operator)"
1114
+ }
1115
+ },
1116
+ {
1117
+ scope: [
1118
+ "punctuation.definition.list.begin.markdown",
1119
+ "punctuation.definition.list.begin.quarto",
1120
+ "markup.list.bullet"
1121
+ ],
1122
+ settings: {
1123
+ foreground: "var(--syntax-operator)"
1124
+ }
1125
+ },
1126
+ {
1127
+ scope: "markup.heading.quarto",
1128
+ settings: {
1129
+ fontStyle: "bold"
1130
+ }
1131
+ },
1132
+ {
1133
+ scope: [
1134
+ "entity.other.attribute-name.multipart.nix",
1135
+ "entity.other.attribute-name.single.nix"
1136
+ ],
1137
+ settings: {
1138
+ foreground: "var(--syntax-function)"
1139
+ }
1140
+ },
1141
+ {
1142
+ scope: "variable.parameter.name.nix",
1143
+ settings: {
1144
+ foreground: "var(--syntax-fg)",
1145
+ fontStyle: ""
1146
+ }
1147
+ },
1148
+ {
1149
+ scope: "meta.embedded variable.parameter.name.nix",
1150
+ settings: {
1151
+ foreground: "var(--syntax-blue-pale)",
1152
+ fontStyle: ""
1153
+ }
1154
+ },
1155
+ {
1156
+ scope: "string.unquoted.path.nix",
1157
+ settings: {
1158
+ foreground: "var(--syntax-escape)",
1159
+ fontStyle: ""
1160
+ }
1161
+ },
1162
+ {
1163
+ scope: ["support.attribute.builtin", "meta.attribute.php"],
1164
+ settings: {
1165
+ foreground: "var(--syntax-number)"
1166
+ }
1167
+ },
1168
+ {
1169
+ scope: "meta.function.parameters.php punctuation.definition.variable.php",
1170
+ settings: {
1171
+ foreground: "var(--syntax-parameter)"
1172
+ }
1173
+ },
1174
+ {
1175
+ scope: "constant.language.php",
1176
+ settings: {
1177
+ foreground: "var(--syntax-keyword)"
1178
+ }
1179
+ },
1180
+ {
1181
+ scope: "text.html.php support.function",
1182
+ settings: {
1183
+ foreground: "var(--syntax-function)"
1184
+ }
1185
+ },
1186
+ {
1187
+ scope: "keyword.other.phpdoc.php",
1188
+ settings: {
1189
+ fontStyle: ""
1190
+ }
1191
+ },
1192
+ {
1193
+ scope: ["support.variable.magic.python", "meta.function-call.arguments.python"],
1194
+ settings: {
1195
+ foreground: "var(--syntax-fg)"
1196
+ }
1197
+ },
1198
+ {
1199
+ scope: ["support.function.magic.python"],
1200
+ settings: {
1201
+ foreground: "var(--syntax-function)"
1202
+ }
1203
+ },
1204
+ {
1205
+ scope: [
1206
+ "variable.parameter.function.language.special.self.python",
1207
+ "variable.language.special.self.python"
1208
+ ],
1209
+ settings: {
1210
+ foreground: "var(--syntax-builtin)"
1211
+ }
1212
+ },
1213
+ {
1214
+ scope: ["keyword.control.flow.python", "keyword.operator.logical.python"],
1215
+ settings: {
1216
+ foreground: "var(--syntax-keyword)"
1217
+ }
1218
+ },
1219
+ {
1220
+ scope: "storage.type.function.python",
1221
+ settings: {
1222
+ foreground: "var(--syntax-keyword)"
1223
+ }
1224
+ },
1225
+ {
1226
+ scope: [
1227
+ "support.token.decorator.python",
1228
+ "meta.function.decorator.identifier.python"
1229
+ ],
1230
+ settings: {
1231
+ foreground: "var(--syntax-function)"
1232
+ }
1233
+ },
1234
+ {
1235
+ scope: ["meta.function-call.python"],
1236
+ settings: {
1237
+ foreground: "var(--syntax-function)"
1238
+ }
1239
+ },
1240
+ {
1241
+ scope: [
1242
+ "entity.name.function.decorator.python",
1243
+ "punctuation.definition.decorator.python"
1244
+ ],
1245
+ settings: {
1246
+ foreground: "var(--syntax-number)"
1247
+ }
1248
+ },
1249
+ {
1250
+ scope: "constant.character.format.placeholder.other.python",
1251
+ settings: {
1252
+ foreground: "var(--syntax-escape)"
1253
+ }
1254
+ },
1255
+ {
1256
+ scope: ["support.type.exception.python", "support.function.builtin.python"],
1257
+ settings: {
1258
+ foreground: "var(--syntax-number)"
1259
+ }
1260
+ },
1261
+ {
1262
+ scope: ["support.type.python"],
1263
+ settings: {
1264
+ foreground: "var(--syntax-number)"
1265
+ }
1266
+ },
1267
+ {
1268
+ scope: "constant.language.python",
1269
+ settings: {
1270
+ foreground: "var(--syntax-keyword)"
1271
+ }
1272
+ },
1273
+ {
1274
+ scope: ["meta.indexed-name.python", "meta.item-access.python"],
1275
+ settings: {
1276
+ foreground: "var(--syntax-parameter)"
1277
+ }
1278
+ },
1279
+ {
1280
+ scope: "storage.type.string.python",
1281
+ settings: {
1282
+ foreground: "var(--syntax-operator)"
1283
+ }
1284
+ },
1285
+ {
1286
+ scope: "meta.function.parameters.python",
1287
+ settings: {
1288
+ fontStyle: ""
1289
+ }
1290
+ },
1291
+ {
1292
+ scope: [
1293
+ "string.regexp punctuation.definition.string.begin",
1294
+ "string.regexp punctuation.definition.string.end"
1295
+ ],
1296
+ settings: {
1297
+ foreground: "var(--syntax-escape)"
1298
+ }
1299
+ },
1300
+ {
1301
+ scope: "keyword.control.anchor.regexp",
1302
+ settings: {
1303
+ foreground: "var(--syntax-keyword)"
1304
+ }
1305
+ },
1306
+ {
1307
+ scope: "string.regexp.ts",
1308
+ settings: {
1309
+ foreground: "var(--syntax-fg)"
1310
+ }
1311
+ },
1312
+ {
1313
+ scope: [
1314
+ "punctuation.definition.group.regexp",
1315
+ "keyword.other.back-reference.regexp"
1316
+ ],
1317
+ settings: {
1318
+ foreground: "var(--syntax-operator)"
1319
+ }
1320
+ },
1321
+ {
1322
+ scope: "punctuation.definition.character-class.regexp",
1323
+ settings: {
1324
+ foreground: "var(--syntax-number)"
1325
+ }
1326
+ },
1327
+ {
1328
+ scope: "constant.other.character-class.regexp",
1329
+ settings: {
1330
+ foreground: "var(--syntax-escape)"
1331
+ }
1332
+ },
1333
+ {
1334
+ scope: "constant.other.character-class.range.regexp",
1335
+ settings: {
1336
+ foreground: "var(--syntax-rose)"
1337
+ }
1338
+ },
1339
+ {
1340
+ scope: "keyword.operator.quantifier.regexp",
1341
+ settings: {
1342
+ foreground: "var(--syntax-operator)"
1343
+ }
1344
+ },
1345
+ {
1346
+ scope: "constant.character.numeric.regexp",
1347
+ settings: {
1348
+ foreground: "var(--syntax-number)"
1349
+ }
1350
+ },
1351
+ {
1352
+ scope: [
1353
+ "punctuation.definition.group.no-capture.regexp",
1354
+ "meta.assertion.look-ahead.regexp",
1355
+ "meta.assertion.negative-look-ahead.regexp"
1356
+ ],
1357
+ settings: {
1358
+ foreground: "var(--syntax-function)"
1359
+ }
1360
+ },
1361
+ {
1362
+ scope: [
1363
+ "meta.annotation.rust",
1364
+ "meta.annotation.rust punctuation",
1365
+ "meta.attribute.rust",
1366
+ "punctuation.definition.attribute.rust"
1367
+ ],
1368
+ settings: {
1369
+ foreground: "var(--syntax-number)"
1370
+ }
1371
+ },
1372
+ {
1373
+ scope: [
1374
+ "meta.attribute.rust string.quoted.double.rust",
1375
+ "meta.attribute.rust string.quoted.single.char.rust"
1376
+ ],
1377
+ settings: {
1378
+ fontStyle: ""
1379
+ }
1380
+ },
1381
+ {
1382
+ scope: [
1383
+ "entity.name.function.macro.rules.rust",
1384
+ "storage.type.module.rust",
1385
+ "storage.modifier.rust",
1386
+ "storage.type.struct.rust",
1387
+ "storage.type.enum.rust",
1388
+ "storage.type.trait.rust",
1389
+ "storage.type.union.rust",
1390
+ "storage.type.impl.rust",
1391
+ "storage.type.rust",
1392
+ "storage.type.function.rust",
1393
+ "storage.type.type.rust"
1394
+ ],
1395
+ settings: {
1396
+ foreground: "var(--syntax-keyword)",
1397
+ fontStyle: ""
1398
+ }
1399
+ },
1400
+ {
1401
+ scope: "entity.name.type.numeric.rust",
1402
+ settings: {
1403
+ foreground: "var(--syntax-keyword)",
1404
+ fontStyle: ""
1405
+ }
1406
+ },
1407
+ {
1408
+ scope: "meta.generic.rust",
1409
+ settings: {
1410
+ foreground: "var(--syntax-number)"
1411
+ }
1412
+ },
1413
+ {
1414
+ scope: "entity.name.impl.rust",
1415
+ settings: {
1416
+ foreground: "var(--syntax-number)"
1417
+ }
1418
+ },
1419
+ {
1420
+ scope: "entity.name.module.rust",
1421
+ settings: {
1422
+ foreground: "var(--syntax-number)"
1423
+ }
1424
+ },
1425
+ {
1426
+ scope: "entity.name.trait.rust",
1427
+ settings: {
1428
+ foreground: "var(--syntax-number)"
1429
+ }
1430
+ },
1431
+ {
1432
+ scope: "storage.type.source.rust",
1433
+ settings: {
1434
+ foreground: "var(--syntax-number)"
1435
+ }
1436
+ },
1437
+ {
1438
+ scope: "entity.name.union.rust",
1439
+ settings: {
1440
+ foreground: "var(--syntax-number)"
1441
+ }
1442
+ },
1443
+ {
1444
+ scope: "meta.enum.rust storage.type.source.rust",
1445
+ settings: {
1446
+ foreground: "var(--syntax-operator)"
1447
+ }
1448
+ },
1449
+ {
1450
+ scope: [
1451
+ "support.macro.rust",
1452
+ "meta.macro.rust support.function.rust",
1453
+ "entity.name.function.macro.rust"
1454
+ ],
1455
+ settings: {
1456
+ foreground: "var(--syntax-function)"
1457
+ }
1458
+ },
1459
+ {
1460
+ scope: ["storage.modifier.lifetime.rust", "entity.name.type.lifetime"],
1461
+ settings: {
1462
+ foreground: "var(--syntax-function)"
1463
+ }
1464
+ },
1465
+ {
1466
+ scope: "string.quoted.double.rust constant.other.placeholder.rust",
1467
+ settings: {
1468
+ foreground: "var(--syntax-escape)"
1469
+ }
1470
+ },
1471
+ {
1472
+ scope: "meta.function.return-type.rust meta.generic.rust storage.type.rust",
1473
+ settings: {
1474
+ foreground: "var(--syntax-fg)"
1475
+ }
1476
+ },
1477
+ {
1478
+ scope: "meta.function.call.rust",
1479
+ settings: {
1480
+ foreground: "var(--syntax-function)"
1481
+ }
1482
+ },
1483
+ {
1484
+ scope: "punctuation.brackets.angle.rust",
1485
+ settings: {
1486
+ foreground: "var(--syntax-function)"
1487
+ }
1488
+ },
1489
+ {
1490
+ scope: "constant.other.caps.rust",
1491
+ settings: {
1492
+ foreground: "var(--syntax-number)"
1493
+ }
1494
+ },
1495
+ {
1496
+ scope: ["meta.function.definition.rust variable.other.rust"],
1497
+ settings: {
1498
+ foreground: "var(--syntax-parameter)"
1499
+ }
1500
+ },
1501
+ {
1502
+ scope: "meta.function.call.rust variable.other.rust",
1503
+ settings: {
1504
+ foreground: "var(--syntax-fg)"
1505
+ }
1506
+ },
1507
+ {
1508
+ scope: "variable.language.self.rust",
1509
+ settings: {
1510
+ foreground: "var(--syntax-builtin)"
1511
+ }
1512
+ },
1513
+ {
1514
+ scope: [
1515
+ "variable.other.metavariable.name.rust",
1516
+ "meta.macro.metavariable.rust keyword.operator.macro.dollar.rust"
1517
+ ],
1518
+ settings: {
1519
+ foreground: "var(--syntax-escape)"
1520
+ }
1521
+ },
1522
+ {
1523
+ scope: [
1524
+ "comment.line.shebang",
1525
+ "comment.line.shebang punctuation.definition.comment",
1526
+ "comment.line.shebang",
1527
+ "punctuation.definition.comment.shebang.shell",
1528
+ "meta.shebang.shell"
1529
+ ],
1530
+ settings: {
1531
+ foreground: "var(--syntax-escape)"
1532
+ }
1533
+ },
1534
+ {
1535
+ scope: "comment.line.shebang constant.language",
1536
+ settings: {
1537
+ foreground: "var(--syntax-operator)"
1538
+ }
1539
+ },
1540
+ {
1541
+ scope: [
1542
+ "meta.function-call.arguments.shell punctuation.definition.variable.shell",
1543
+ "meta.function-call.arguments.shell punctuation.section.interpolation",
1544
+ "meta.function-call.arguments.shell punctuation.definition.variable.shell",
1545
+ "meta.function-call.arguments.shell punctuation.section.interpolation"
1546
+ ],
1547
+ settings: {
1548
+ foreground: "var(--syntax-builtin)"
1549
+ }
1550
+ },
1551
+ {
1552
+ scope: "meta.string meta.interpolation.parameter.shell variable.other.readwrite",
1553
+ settings: {
1554
+ foreground: "var(--syntax-number)"
1555
+ }
1556
+ },
1557
+ {
1558
+ scope: [
1559
+ "source.shell punctuation.section.interpolation",
1560
+ "punctuation.definition.evaluation.backticks.shell"
1561
+ ],
1562
+ settings: {
1563
+ foreground: "var(--syntax-operator)"
1564
+ }
1565
+ },
1566
+ {
1567
+ scope: "entity.name.tag.heredoc.shell",
1568
+ settings: {
1569
+ foreground: "var(--syntax-keyword)"
1570
+ }
1571
+ },
1572
+ {
1573
+ scope: "string.quoted.double.shell variable.other.normal.shell",
1574
+ settings: {
1575
+ foreground: "var(--syntax-fg)"
1576
+ }
1577
+ },
1578
+ {
1579
+ scope: "token.info-token",
1580
+ settings: {
1581
+ foreground: "var(--syntax-blue)"
1582
+ }
1583
+ },
1584
+ {
1585
+ scope: "token.warn-token",
1586
+ settings: {
1587
+ foreground: "var(--syntax-amber)"
1588
+ }
1589
+ },
1590
+ {
1591
+ scope: "token.error-token",
1592
+ settings: {
1593
+ foreground: "var(--syntax-builtin)"
1594
+ }
1595
+ },
1596
+ {
1597
+ scope: "token.debug-token",
1598
+ settings: {
1599
+ foreground: "var(--syntax-purple)"
1600
+ }
1601
+ }
1602
+ ]
1603
+ };
1604
+
1605
+ export {
1606
+ oxql_tmLanguage_default,
1607
+ p4_tmLanguage_default,
1608
+ oxide_syntax_default
1609
+ };
1610
+ //# sourceMappingURL=chunk-BCMM44R6.js.map