@finos/legend-lego 0.1.12 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. package/{src/code-editor/CodeEditorConfig.ts → lib/application/ActivityBar.d.ts} +7 -16
  2. package/lib/application/ActivityBar.d.ts.map +1 -0
  3. package/lib/application/ActivityBar.js +19 -0
  4. package/lib/application/ActivityBar.js.map +1 -0
  5. package/lib/application/index.d.ts +1 -0
  6. package/lib/application/index.d.ts.map +1 -1
  7. package/lib/application/index.js +1 -0
  8. package/lib/application/index.js.map +1 -1
  9. package/lib/code-editor/CodeDiffView.d.ts +1 -1
  10. package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
  11. package/lib/code-editor/CodeDiffView.js +4 -11
  12. package/lib/code-editor/CodeDiffView.js.map +1 -1
  13. package/lib/code-editor/CodeEditor.d.ts +5 -2
  14. package/lib/code-editor/CodeEditor.d.ts.map +1 -1
  15. package/lib/code-editor/CodeEditor.js +15 -17
  16. package/lib/code-editor/CodeEditor.js.map +1 -1
  17. package/lib/code-editor/CodeEditorTheme.d.ts +39 -0
  18. package/lib/code-editor/CodeEditorTheme.d.ts.map +1 -0
  19. package/lib/code-editor/CodeEditorTheme.js +72 -0
  20. package/lib/code-editor/CodeEditorTheme.js.map +1 -0
  21. package/lib/code-editor/CodeEditorUtils.d.ts +11 -0
  22. package/lib/code-editor/CodeEditorUtils.d.ts.map +1 -1
  23. package/lib/code-editor/CodeEditorUtils.js +23 -0
  24. package/lib/code-editor/CodeEditorUtils.js.map +1 -1
  25. package/lib/code-editor/PureLanguage.d.ts +38 -0
  26. package/lib/code-editor/PureLanguage.d.ts.map +1 -0
  27. package/lib/code-editor/PureLanguage.js +39 -0
  28. package/lib/code-editor/PureLanguage.js.map +1 -0
  29. package/lib/code-editor/PureLanguageService.d.ts +0 -22
  30. package/lib/code-editor/PureLanguageService.d.ts.map +1 -1
  31. package/lib/code-editor/PureLanguageService.js +3 -48
  32. package/lib/code-editor/PureLanguageService.js.map +1 -1
  33. package/lib/code-editor/index.d.ts +3 -2
  34. package/lib/code-editor/index.d.ts.map +1 -1
  35. package/lib/code-editor/index.js +3 -2
  36. package/lib/code-editor/index.js.map +1 -1
  37. package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
  38. package/lib/code-editor/themes/Github-Theme-dark.json +513 -0
  39. package/lib/code-editor/themes/Material-Theme-Darker.json +816 -0
  40. package/lib/code-editor/themes/Material-Theme-Default.json +816 -0
  41. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +31 -0
  42. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +1 -0
  43. package/lib/code-editor/themes/MonacoEditorThemeUtils.js +88 -0
  44. package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +1 -0
  45. package/lib/code-editor/themes/OneDark-Pro-darker.json +2061 -0
  46. package/lib/code-editor/themes/OneDark-Pro.json +2090 -0
  47. package/lib/code-editor/themes/solarized-dark-color-theme.json +398 -0
  48. package/lib/data-grid/DataGrid.d.ts.map +1 -1
  49. package/lib/data-grid/DataGrid.js +13 -1
  50. package/lib/data-grid/DataGrid.js.map +1 -1
  51. package/lib/index.css +2 -2
  52. package/lib/index.css.map +1 -1
  53. package/package.json +7 -7
  54. package/{lib/code-editor/CodeEditorConfig.d.ts → src/application/ActivityBar.tsx} +16 -15
  55. package/src/application/index.ts +1 -0
  56. package/src/code-editor/CodeDiffView.tsx +4 -12
  57. package/src/code-editor/CodeEditor.tsx +25 -22
  58. package/src/code-editor/CodeEditorTheme.ts +118 -0
  59. package/src/code-editor/CodeEditorUtils.ts +55 -0
  60. package/src/code-editor/PureLanguage.ts +42 -0
  61. package/src/code-editor/PureLanguageService.ts +3 -56
  62. package/src/code-editor/index.ts +3 -5
  63. package/src/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
  64. package/src/code-editor/themes/Github-Theme-dark.json +513 -0
  65. package/src/code-editor/themes/Material-Theme-Darker.json +816 -0
  66. package/src/code-editor/themes/Material-Theme-Default.json +816 -0
  67. package/src/code-editor/themes/MonacoEditorThemeUtils.ts +128 -0
  68. package/src/code-editor/themes/OneDark-Pro-darker.json +2061 -0
  69. package/src/code-editor/themes/OneDark-Pro.json +2090 -0
  70. package/src/code-editor/themes/README.md +8 -0
  71. package/src/code-editor/themes/solarized-dark-color-theme.json +423 -0
  72. package/src/data-grid/DataGrid.tsx +12 -1
  73. package/tsconfig.json +12 -2
  74. package/lib/code-editor/CodeEditorConfig.d.ts.map +0 -1
  75. package/lib/code-editor/CodeEditorConfig.js +0 -33
  76. package/lib/code-editor/CodeEditorConfig.js.map +0 -1
@@ -0,0 +1,816 @@
1
+ {
2
+ "name": "Material-Theme-Darker",
3
+ "semanticHighlighting": true,
4
+ "tokenColors": [
5
+ {
6
+ "name": "Global settings",
7
+ "settings": {
8
+ "background": "#212121",
9
+ "foreground": "#EEFFFF"
10
+ }
11
+ },
12
+ {
13
+ "name": "String",
14
+ "scope": "string",
15
+ "settings": {
16
+ "foreground": "#C3E88D"
17
+ }
18
+ },
19
+ {
20
+ "name": "Punctuation",
21
+ "scope": "punctuation, constant.other.symbol",
22
+ "settings": {
23
+ "foreground": "#89DDFF"
24
+ }
25
+ },
26
+ {
27
+ "name": "String Escape",
28
+ "scope": "constant.character.escape, text.html constant.character.entity.named",
29
+ "settings": {
30
+ "foreground": "#EEFFFF"
31
+ }
32
+ },
33
+ {
34
+ "name": "Boolean",
35
+ "scope": "constant.language.boolean",
36
+ "settings": {
37
+ "foreground": "#ff9cac"
38
+ }
39
+ },
40
+ {
41
+ "name": "Number",
42
+ "scope": "constant.numeric",
43
+ "settings": {
44
+ "foreground": "#F78C6C"
45
+ }
46
+ },
47
+ {
48
+ "name": "Variable",
49
+ "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50
+ "settings": {
51
+ "foreground": "#EEFFFF"
52
+ }
53
+ },
54
+ {
55
+ "name": "Other Keyword",
56
+ "scope": "keyword.other",
57
+ "settings": {
58
+ "foreground": "#F78C6C"
59
+ }
60
+ },
61
+ {
62
+ "name": "Keyword",
63
+ "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64
+ "settings": {
65
+ "foreground": "#89DDFF"
66
+ }
67
+ },
68
+ {
69
+ "name": "Function call",
70
+ "scope": "entity.name.function, support.function",
71
+ "settings": {
72
+ "foreground": "#82AAFF"
73
+ }
74
+ },
75
+ {
76
+ "name": "Storage",
77
+ "scope": "storage.type, storage.modifier, storage.control",
78
+ "settings": {
79
+ "foreground": "#C792EA"
80
+ }
81
+ },
82
+ {
83
+ "name": "Modules",
84
+ "scope": "support.module, support.node",
85
+ "settings": {
86
+ "foreground": "#f07178",
87
+ "fontStyle": "italic"
88
+ }
89
+ },
90
+ {
91
+ "name": "Type",
92
+ "scope": "support.type, constant.other.key",
93
+ "settings": {
94
+ "foreground": "#FFCB6B"
95
+ }
96
+ },
97
+ {
98
+ "name": "Type",
99
+ "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100
+ "settings": {
101
+ "foreground": "#FFCB6B"
102
+ }
103
+ },
104
+ {
105
+ "name": "Comment",
106
+ "scope": "comment",
107
+ "settings": {
108
+ "foreground": "#545454",
109
+ "fontStyle": "italic"
110
+ }
111
+ },
112
+ {
113
+ "name": "Comment",
114
+ "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115
+ "settings": {
116
+ "foreground": "#545454",
117
+ "fontStyle": "italic"
118
+ }
119
+ },
120
+ {
121
+ "name": "Punctuation",
122
+ "scope": "punctuation",
123
+ "settings": {
124
+ "foreground": "#89DDFF"
125
+ }
126
+ },
127
+ {
128
+ "name": "Class",
129
+ "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130
+ "settings": {
131
+ "foreground": "#FFCB6B"
132
+ }
133
+ },
134
+ {
135
+ "name": "Class variable",
136
+ "scope": "variable.object.property, meta.field.declaration entity.name.function",
137
+ "settings": {
138
+ "foreground": "#f07178"
139
+ }
140
+ },
141
+ {
142
+ "name": "Class method",
143
+ "scope": "meta.definition.method entity.name.function",
144
+ "settings": {
145
+ "foreground": "#f07178"
146
+ }
147
+ },
148
+ {
149
+ "name": "Function definition",
150
+ "scope": "meta.function entity.name.function",
151
+ "settings": {
152
+ "foreground": "#82AAFF"
153
+ }
154
+ },
155
+ {
156
+ "name": "Template expression",
157
+ "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158
+ "settings": {
159
+ "foreground": "#89DDFF"
160
+ }
161
+ },
162
+ {
163
+ "name": "Reset embedded/template expression colors",
164
+ "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165
+ "settings": {
166
+ "foreground": "#EEFFFF"
167
+ }
168
+ },
169
+ {
170
+ "name": "YAML key",
171
+ "scope": "entity.name.tag.yaml",
172
+ "settings": {
173
+ "foreground": "#f07178"
174
+ }
175
+ },
176
+ {
177
+ "name": "JSON key",
178
+ "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179
+ "settings": {
180
+ "foreground": "#f07178"
181
+ }
182
+ },
183
+ {
184
+ "name": "JSON constant",
185
+ "scope": "constant.language.json",
186
+ "settings": {
187
+ "foreground": "#89DDFF"
188
+ }
189
+ },
190
+ {
191
+ "name": "CSS class",
192
+ "scope": "entity.other.attribute-name.class",
193
+ "settings": {
194
+ "foreground": "#FFCB6B"
195
+ }
196
+ },
197
+ {
198
+ "name": "CSS ID",
199
+ "scope": "entity.other.attribute-name.id",
200
+ "settings": {
201
+ "foreground": "#F78C6C"
202
+ }
203
+ },
204
+ {
205
+ "name": "CSS tag",
206
+ "scope": "source.css entity.name.tag",
207
+ "settings": {
208
+ "foreground": "#FFCB6B"
209
+ }
210
+ },
211
+ {
212
+ "name": "CSS properties",
213
+ "scope": "support.type.property-name.css",
214
+ "settings": {
215
+ "foreground": "#B2CCD6"
216
+ }
217
+ },
218
+ {
219
+ "name": "HTML tag outer",
220
+ "scope": "meta.tag, punctuation.definition.tag",
221
+ "settings": {
222
+ "foreground": "#89DDFF"
223
+ }
224
+ },
225
+ {
226
+ "name": "HTML tag inner",
227
+ "scope": "entity.name.tag",
228
+ "settings": {
229
+ "foreground": "#f07178"
230
+ }
231
+ },
232
+ {
233
+ "name": "HTML tag attribute",
234
+ "scope": "entity.other.attribute-name",
235
+ "settings": {
236
+ "foreground": "#C792EA"
237
+ }
238
+ },
239
+ {
240
+ "name": "HTML entities",
241
+ "scope": "punctuation.definition.entity.html",
242
+ "settings": {
243
+ "foreground": "#EEFFFF"
244
+ }
245
+ },
246
+ {
247
+ "name": "Markdown heading",
248
+ "scope": "markup.heading",
249
+ "settings": {
250
+ "foreground": "#89DDFF"
251
+ }
252
+ },
253
+ {
254
+ "name": "Markdown link text",
255
+ "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256
+ "settings": {
257
+ "foreground": "#f07178"
258
+ }
259
+ },
260
+ {
261
+ "name": "Markdown list item",
262
+ "scope": "text.html.markdown beginning.punctuation.definition.list",
263
+ "settings": {
264
+ "foreground": "#89DDFF"
265
+ }
266
+ },
267
+ {
268
+ "name": "Markdown italic",
269
+ "scope": "markup.italic",
270
+ "settings": {
271
+ "foreground": "#f07178",
272
+ "fontStyle": "italic"
273
+ }
274
+ },
275
+ {
276
+ "name": "Markdown bold",
277
+ "scope": "markup.bold",
278
+ "settings": {
279
+ "foreground": "#f07178",
280
+ "fontStyle": "bold"
281
+ }
282
+ },
283
+ {
284
+ "name": "Markdown bold italic",
285
+ "scope": "markup.bold markup.italic, markup.italic markup.bold",
286
+ "settings": {
287
+ "foreground": "#f07178",
288
+ "fontStyle": "italic bold"
289
+ }
290
+ },
291
+ {
292
+ "name": "Markdown code block",
293
+ "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294
+ "settings": {
295
+ "foreground": "#C3E88D"
296
+ }
297
+ },
298
+ {
299
+ "name": "Markdown inline code",
300
+ "scope": "markup.inline.raw.string.markdown",
301
+ "settings": {
302
+ "foreground": "#C3E88D"
303
+ }
304
+ },
305
+ {
306
+ "name": "INI property name",
307
+ "scope": "keyword.other.definition.ini",
308
+ "settings": {
309
+ "foreground": "#f07178"
310
+ }
311
+ },
312
+ {
313
+ "name": "INI section title",
314
+ "scope": "entity.name.section.group-title.ini",
315
+ "settings": {
316
+ "foreground": "#89DDFF"
317
+ }
318
+ },
319
+ {
320
+ "name": "C# class",
321
+ "scope": "source.cs meta.class.identifier storage.type",
322
+ "settings": {
323
+ "foreground": "#FFCB6B"
324
+ }
325
+ },
326
+ {
327
+ "name": "C# class method",
328
+ "scope": "source.cs meta.method.identifier entity.name.function",
329
+ "settings": {
330
+ "foreground": "#f07178"
331
+ }
332
+ },
333
+ {
334
+ "name": "C# function call",
335
+ "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336
+ "settings": {
337
+ "foreground": "#82AAFF"
338
+ }
339
+ },
340
+ {
341
+ "name": "C# type",
342
+ "scope": "source.cs storage.type",
343
+ "settings": {
344
+ "foreground": "#FFCB6B"
345
+ }
346
+ },
347
+ {
348
+ "name": "C# return type",
349
+ "scope": "source.cs meta.method.return-type",
350
+ "settings": {
351
+ "foreground": "#FFCB6B"
352
+ }
353
+ },
354
+ {
355
+ "name": "C# preprocessor",
356
+ "scope": "source.cs meta.preprocessor",
357
+ "settings": {
358
+ "foreground": "#545454"
359
+ }
360
+ },
361
+ {
362
+ "name": "C# namespace",
363
+ "scope": "source.cs entity.name.type.namespace",
364
+ "settings": {
365
+ "foreground": "#EEFFFF"
366
+ }
367
+ },
368
+ {
369
+ "name": "JSX Text",
370
+ "scope": "meta.jsx.children, SXNested",
371
+ "settings": {
372
+ "foreground": "#EEFFFF"
373
+ }
374
+ },
375
+ {
376
+ "name": "JSX Components name",
377
+ "scope": "support.class.component",
378
+ "settings": {
379
+ "foreground": "#FFCB6B"
380
+ }
381
+ },
382
+ {
383
+ "name": "C-related Block Level Variables",
384
+ "scope": "source.cpp meta.block variable.other",
385
+ "settings": {
386
+ "foreground": "#EEFFFF"
387
+ }
388
+ },
389
+ {
390
+ "name": "Member Access Meta",
391
+ "scope": "source.python meta.member.access.python",
392
+ "settings": {
393
+ "foreground": "#f07178"
394
+ }
395
+ },
396
+ {
397
+ "name": "Function Call",
398
+ "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399
+ "settings": {
400
+ "foreground": "#82AAFF"
401
+ }
402
+ },
403
+ {
404
+ "name": "Blocks",
405
+ "scope": "meta.block",
406
+ "settings": {
407
+ "foreground": "#f07178"
408
+ }
409
+ },
410
+ {
411
+ "name": "Function Call",
412
+ "scope": "entity.name.function.call",
413
+ "settings": {
414
+ "foreground": "#82AAFF"
415
+ }
416
+ },
417
+ {
418
+ "name": "Namespaces",
419
+ "scope": "source.php support.other.namespace, source.php meta.use support.class",
420
+ "settings": {
421
+ "foreground": "#EEFFFF"
422
+ }
423
+ },
424
+ {
425
+ "name": "Constant keywords",
426
+ "scope": "constant.keyword",
427
+ "settings": {
428
+ "foreground": "#89DDFF",
429
+ "fontStyle": "italic"
430
+ }
431
+ },
432
+ {
433
+ "name": "Entity name",
434
+ "scope": "entity.name.function",
435
+ "settings": {
436
+ "foreground": "#82AAFF"
437
+ }
438
+ },
439
+ {
440
+ "name": "Global settings",
441
+ "settings": {
442
+ "background": "#212121",
443
+ "foreground": "#EEFFFF"
444
+ }
445
+ },
446
+ {
447
+ "name": "Markup Deleted",
448
+ "scope": ["markup.deleted"],
449
+ "settings": {
450
+ "foreground": "#f07178"
451
+ }
452
+ },
453
+ {
454
+ "name": "Markup Inserted",
455
+ "scope": ["markup.inserted"],
456
+ "settings": {
457
+ "foreground": "#C3E88D"
458
+ }
459
+ },
460
+ {
461
+ "name": "Markup Underline",
462
+ "scope": ["markup.underline"],
463
+ "settings": {
464
+ "fontStyle": "underline"
465
+ }
466
+ },
467
+ {
468
+ "name": "Keyword Control",
469
+ "scope": ["keyword.control"],
470
+ "settings": {
471
+ "foreground": "#89DDFF",
472
+ "fontStyle": "italic"
473
+ }
474
+ },
475
+ {
476
+ "name": "Parameter",
477
+ "scope": ["variable.parameter"],
478
+ "settings": {
479
+ "fontStyle": "italic"
480
+ }
481
+ },
482
+ {
483
+ "name": "Python - Self Parameter",
484
+ "scope": ["variable.parameter.function.language.special.self.python"],
485
+ "settings": {
486
+ "foreground": "#f07178",
487
+ "fontStyle": "italic"
488
+ }
489
+ },
490
+ {
491
+ "name": "Python - Format Placeholder",
492
+ "scope": ["constant.character.format.placeholder.other.python"],
493
+ "settings": {
494
+ "foreground": "#F78C6C"
495
+ }
496
+ },
497
+ {
498
+ "name": "Markdown - Blockquote",
499
+ "scope": ["markup.quote"],
500
+ "settings": {
501
+ "fontStyle": "italic",
502
+ "foreground": "#89DDFF"
503
+ }
504
+ },
505
+ {
506
+ "name": "Markdown - Fenced Language",
507
+ "scope": ["markup.fenced_code.block"],
508
+ "settings": {
509
+ "foreground": "#EEFFFF90"
510
+ }
511
+ },
512
+ {
513
+ "name": "Markdown - Blockquote Punctuation",
514
+ "scope": ["punctuation.definition.quote"],
515
+ "settings": {
516
+ "foreground": "#ff9cac"
517
+ }
518
+ },
519
+ {
520
+ "name": "JSON Key - Level 0",
521
+ "scope": [
522
+ "meta.structure.dictionary.json support.type.property-name.json"
523
+ ],
524
+ "settings": {
525
+ "foreground": "#C792EA"
526
+ }
527
+ },
528
+ {
529
+ "name": "JSON Key - Level 1",
530
+ "scope": [
531
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
532
+ ],
533
+ "settings": {
534
+ "foreground": "#FFCB6B"
535
+ }
536
+ },
537
+ {
538
+ "name": "JSON Key - Level 2",
539
+ "scope": [
540
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
541
+ ],
542
+ "settings": {
543
+ "foreground": "#F78C6C"
544
+ }
545
+ },
546
+ {
547
+ "name": "JSON Key - Level 3",
548
+ "scope": [
549
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
550
+ ],
551
+ "settings": {
552
+ "foreground": "#f07178"
553
+ }
554
+ },
555
+ {
556
+ "name": "JSON Key - Level 4",
557
+ "scope": [
558
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
559
+ ],
560
+ "settings": {
561
+ "foreground": "#916b53"
562
+ }
563
+ },
564
+ {
565
+ "name": "JSON Key - Level 5",
566
+ "scope": [
567
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
568
+ ],
569
+ "settings": {
570
+ "foreground": "#82AAFF"
571
+ }
572
+ },
573
+ {
574
+ "name": "JSON Key - Level 6",
575
+ "scope": [
576
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
577
+ ],
578
+ "settings": {
579
+ "foreground": "#ff9cac"
580
+ }
581
+ },
582
+ {
583
+ "name": "JSON Key - Level 7",
584
+ "scope": [
585
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
586
+ ],
587
+ "settings": {
588
+ "foreground": "#C792EA"
589
+ }
590
+ },
591
+ {
592
+ "name": "JSON Key - Level 8",
593
+ "scope": [
594
+ "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
595
+ ],
596
+ "settings": {
597
+ "foreground": "#C3E88D"
598
+ }
599
+ }
600
+ ],
601
+ "colors": {
602
+ "focusBorder": "#FFFFFF00",
603
+ "foreground": "#EEFFFF",
604
+ "button.background": "#61616150",
605
+ "button.foreground": "#ffffff",
606
+ "dropdown.background": "#212121",
607
+ "input.background": "#2B2B2B",
608
+ "inputOption.activeBorder": "#EEFFFF30",
609
+ "list.activeSelectionBackground": "#212121",
610
+ "list.activeSelectionForeground": "#80CBC4",
611
+ "list.dropBackground": "#f0717880",
612
+ "list.focusBackground": "#EEFFFF20",
613
+ "list.focusForeground": "#EEFFFF",
614
+ "list.highlightForeground": "#80CBC4",
615
+ "list.hoverBackground": "#212121",
616
+ "list.inactiveSelectionBackground": "#00000030",
617
+ "activityBar.background": "#212121",
618
+ "activityBar.dropBackground": "#f0717880",
619
+ "activityBarBadge.background": "#80CBC4",
620
+ "activityBarBadge.foreground": "#000000",
621
+ "badge.background": "#00000030",
622
+ "badge.foreground": "#545454",
623
+ "sideBar.background": "#212121",
624
+ "sideBarSectionHeader.background": "#212121",
625
+ "editorGroup.dropBackground": "#f0717880",
626
+ "editorGroup.focusedEmptyBorder": "#f07178",
627
+ "editorGroupHeader.tabsBackground": "#212121",
628
+ "tab.border": "#212121",
629
+ "tab.activeBorder": "#80CBC4",
630
+ "tab.inactiveBackground": "#212121",
631
+ "tab.activeModifiedBorder": "#616161",
632
+ "tab.inactiveModifiedBorder": "#904348",
633
+ "tab.unfocusedActiveModifiedBorder": "#c05a60",
634
+ "tab.unfocusedInactiveModifiedBorder": "#904348",
635
+ "editor.background": "#212121",
636
+ "editor.foreground": "#EEFFFF",
637
+ "editorLineNumber.foreground": "#424242",
638
+ "editorLineNumber.activeForeground": "#616161",
639
+ "editorCursor.foreground": "#FFCC00",
640
+ "editor.selectionBackground": "#61616150",
641
+ "editor.selectionHighlightBackground": "#FFCC0020",
642
+ "editor.wordHighlightBackground": "#ff9cac30",
643
+ "editor.wordHighlightStrongBackground": "#C3E88D30",
644
+ "editor.findMatchHighlight": "#EEFFFF",
645
+ "editor.findRangeHighlightBackground": "#FFCB6B30",
646
+ "editor.lineHighlightBorder": "#00000000",
647
+ "editor.rangeHighlightBackground": "#FFFFFF0d",
648
+ "editorWhitespace.foreground": "#EEFFFF40",
649
+ "editorWidget.background": "#212121",
650
+ "editorHoverWidget.background": "#212121",
651
+ "editorMarkerNavigation.background": "#EEFFFF05",
652
+ "peekView.border": "#00000030",
653
+ "peekViewEditor.background": "#EEFFFF05",
654
+ "peekViewResult.background": "#EEFFFF05",
655
+ "peekViewTitle.background": "#EEFFFF05",
656
+ "panel.background": "#212121",
657
+ "panel.border": "#21212160",
658
+ "panelTitle.activeBorder": "#80CBC4",
659
+ "panelTitle.inactiveForeground": "#EEFFFF",
660
+ "notebook.focusedCellBorder": "#80CBC4",
661
+ "notebook.inactiveFocusedCellBorder": "#80CBC450",
662
+ "statusBar.background": "#212121",
663
+ "statusBar.debuggingBackground": "#C792EA",
664
+ "statusBar.debuggingForeground": "#ffffff",
665
+ "statusBar.noFolderBackground": "#212121",
666
+ "statusBarItem.activeBackground": "#f0717880",
667
+ "statusBarItem.hoverBackground": "#54545420",
668
+ "statusBarItem.remoteBackground": "#80CBC4",
669
+ "statusBarItem.remoteForeground": "#000000",
670
+ "titleBar.activeBackground": "#212121",
671
+ "pickerGroup.border": "#FFFFFF1a",
672
+ "terminal.ansiBlack": "#000000",
673
+ "terminal.ansiBlue": "#82AAFF",
674
+ "terminal.ansiBrightBlack": "#545454",
675
+ "terminal.ansiBrightBlue": "#82AAFF",
676
+ "terminal.ansiBrightCyan": "#89DDFF",
677
+ "terminal.ansiBrightGreen": "#C3E88D",
678
+ "terminal.ansiBrightMagenta": "#C792EA",
679
+ "terminal.ansiBrightRed": "#f07178",
680
+ "terminal.ansiBrightWhite": "#ffffff",
681
+ "terminal.ansiBrightYellow": "#FFCB6B",
682
+ "terminal.ansiCyan": "#89DDFF",
683
+ "terminal.ansiGreen": "#C3E88D",
684
+ "terminal.ansiMagenta": "#C792EA",
685
+ "terminal.ansiRed": "#f07178",
686
+ "terminal.ansiWhite": "#ffffff",
687
+ "terminal.ansiYellow": "#FFCB6B",
688
+ "debugToolBar.background": "#212121",
689
+ "debugConsole.errorForeground": "#f07178",
690
+ "debugConsole.infoForeground": "#89DDFF",
691
+ "debugConsole.warningForeground": "#FFCB6B",
692
+ "selection.background": "#00000080",
693
+ "editorRuler.foreground": "#424242",
694
+ "widget.shadow": "#00000030",
695
+ "scrollbar.shadow": "#00000030",
696
+ "editorLink.activeForeground": "#EEFFFF",
697
+ "progressBar.background": "#80CBC4",
698
+ "pickerGroup.foreground": "#80CBC4",
699
+ "tree.indentGuidesStroke": "#424242",
700
+ "terminalCursor.foreground": "#FFCB6B",
701
+ "terminalCursor.background": "#000000",
702
+ "inputOption.activeBackground": "#EEFFFF30",
703
+ "textLink.foreground": "#80CBC4",
704
+ "textLink.activeForeground": "#EEFFFF",
705
+ "sideBar.foreground": "#616161",
706
+ "sideBar.border": "#21212160",
707
+ "sideBarTitle.foreground": "#EEFFFF",
708
+ "sideBarSectionHeader.border": "#21212160",
709
+ "panel.dropBackground": "#EEFFFF",
710
+ "panelTitle.activeForeground": "#FFFFFF",
711
+ "editor.lineHighlightBackground": "#00000050",
712
+ "editor.findMatchBackground": "#000000",
713
+ "editor.findMatchHighlightBackground": "#00000050",
714
+ "editor.findMatchBorder": "#80CBC4",
715
+ "editor.findMatchHighlightBorder": "#ffffff30",
716
+ "editorIndentGuide.background": "#42424270",
717
+ "editorIndentGuide.activeBackground": "#424242",
718
+ "editorGroup.border": "#00000030",
719
+ "editorGutter.modifiedBackground": "#82AAFF60",
720
+ "editorGutter.addedBackground": "#C3E88D60",
721
+ "editorGutter.deletedBackground": "#f0717860",
722
+ "activityBar.border": "#21212160",
723
+ "activityBar.foreground": "#EEFFFF",
724
+ "activityBar.activeBorder": "#80CBC4",
725
+ "extensionBadge.remoteForeground": "#EEFFFF",
726
+ "scrollbarSlider.background": "#EEFFFF20",
727
+ "scrollbarSlider.hoverBackground": "#EEFFFF10",
728
+ "scrollbarSlider.activeBackground": "#80CBC4",
729
+ "tab.unfocusedActiveBorder": "#545454",
730
+ "tab.activeForeground": "#FFFFFF",
731
+ "tab.inactiveForeground": "#616161",
732
+ "tab.activeBackground": "#212121",
733
+ "tab.unfocusedActiveForeground": "#EEFFFF",
734
+ "editorWidget.resizeBorder": "#80CBC4",
735
+ "editorWidget.border": "#80CBC4",
736
+ "statusBar.border": "#21212160",
737
+ "statusBar.foreground": "#616161",
738
+ "editorBracketMatch.border": "#FFCC0050",
739
+ "editorBracketMatch.background": "#212121",
740
+ "editorOverviewRuler.findMatchForeground": "#80CBC4",
741
+ "editorOverviewRuler.border": "#212121",
742
+ "editorOverviewRuler.errorForeground": "#f0717840",
743
+ "editorOverviewRuler.infoForeground": "#82AAFF40",
744
+ "editorOverviewRuler.warningForeground": "#FFCB6B40",
745
+ "editorInfo.foreground": "#82AAFF70",
746
+ "editorWarning.foreground": "#FFCB6B70",
747
+ "editorError.foreground": "#f0717870",
748
+ "editorHoverWidget.border": "#FFFFFF10",
749
+ "titleBar.activeForeground": "#EEFFFF",
750
+ "titleBar.inactiveBackground": "#212121",
751
+ "titleBar.inactiveForeground": "#616161",
752
+ "titleBar.border": "#21212160",
753
+ "input.foreground": "#EEFFFF",
754
+ "input.placeholderForeground": "#EEFFFF60",
755
+ "input.border": "#FFFFFF10",
756
+ "inputValidation.errorBorder": "#f07178",
757
+ "inputValidation.infoBorder": "#82AAFF",
758
+ "inputValidation.warningBorder": "#FFCB6B",
759
+ "dropdown.border": "#FFFFFF10",
760
+ "quickInput.background": "#212121",
761
+ "quickInput.foreground": "#616161",
762
+ "list.hoverForeground": "#FFFFFF",
763
+ "list.inactiveSelectionForeground": "#80CBC4",
764
+ "quickInput.list.focusBackground": "#EEFFFF20",
765
+ "editorSuggestWidget.background": "#212121",
766
+ "editorSuggestWidget.foreground": "#EEFFFF",
767
+ "editorSuggestWidget.highlightForeground": "#80CBC4",
768
+ "editorSuggestWidget.selectedBackground": "#00000050",
769
+ "editorSuggestWidget.border": "#FFFFFF10",
770
+ "diffEditor.insertedTextBackground": "#89DDFF20",
771
+ "diffEditor.removedTextBackground": "#ff9cac20",
772
+ "notifications.background": "#212121",
773
+ "notifications.foreground": "#EEFFFF",
774
+ "notificationLink.foreground": "#80CBC4",
775
+ "extensionButton.prominentBackground": "#C3E88D90",
776
+ "extensionButton.prominentHoverBackground": "#C3E88D",
777
+ "extensionButton.prominentForeground": "#000000",
778
+ "peekViewEditorGutter.background": "#EEFFFF05",
779
+ "peekViewTitleDescription.foreground": "#EEFFFF60",
780
+ "peekViewResult.matchHighlightBackground": "#61616150",
781
+ "peekViewEditor.matchHighlightBackground": "#61616150",
782
+ "peekViewResult.selectionBackground": "#61616170",
783
+ "gitDecoration.deletedResourceForeground": "#f0717890",
784
+ "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
785
+ "gitDecoration.modifiedResourceForeground": "#82AAFF90",
786
+ "gitDecoration.untrackedResourceForeground": "#C3E88D90",
787
+ "gitDecoration.ignoredResourceForeground": "#61616190",
788
+ "breadcrumb.background": "#212121",
789
+ "breadcrumb.foreground": "#616161",
790
+ "breadcrumb.focusForeground": "#EEFFFF",
791
+ "breadcrumb.activeSelectionForeground": "#80CBC4",
792
+ "breadcrumbPicker.background": "#212121",
793
+ "menu.background": "#212121",
794
+ "menu.foreground": "#EEFFFF",
795
+ "menu.selectionBackground": "#00000050",
796
+ "menu.selectionForeground": "#80CBC4",
797
+ "menu.selectionBorder": "#00000030",
798
+ "menu.separatorBackground": "#EEFFFF",
799
+ "menubar.selectionBackground": "#00000030",
800
+ "menubar.selectionForeground": "#80CBC4",
801
+ "menubar.selectionBorder": "#00000030",
802
+ "settings.dropdownForeground": "#EEFFFF",
803
+ "settings.dropdownBackground": "#212121",
804
+ "settings.numberInputForeground": "#EEFFFF",
805
+ "settings.numberInputBackground": "#212121",
806
+ "settings.textInputForeground": "#EEFFFF",
807
+ "settings.textInputBackground": "#212121",
808
+ "settings.headerForeground": "#80CBC4",
809
+ "settings.modifiedItemIndicator": "#80CBC4",
810
+ "settings.checkboxBackground": "#212121",
811
+ "settings.checkboxForeground": "#EEFFFF",
812
+ "listFilterWidget.background": "#00000030",
813
+ "listFilterWidget.outline": "#00000030",
814
+ "listFilterWidget.noMatchesOutline": "#00000030"
815
+ }
816
+ }