@node-red/editor-client 2.2.1 → 3.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +45 -14
  3. package/locales/ja/editor.json +53 -17
  4. package/locales/ko/editor.json +5 -2
  5. package/locales/ru/editor.json +14 -11
  6. package/locales/zh-CN/editor.json +14 -11
  7. package/locales/zh-TW/editor.json +14 -11
  8. package/package.json +1 -1
  9. package/public/red/about +119 -0
  10. package/public/red/images/grip-horizontal.svg +1 -0
  11. package/public/red/images/grip.svg +1 -0
  12. package/public/red/keymap.json +5 -1
  13. package/public/red/red.js +2161 -674
  14. package/public/red/red.min.js +2 -2
  15. package/public/red/style.min.css +2 -2
  16. package/public/red/tours/images/continuous-search.png +0 -0
  17. package/public/red/tours/images/debug-path-tooltip.png +0 -0
  18. package/public/red/tours/images/junction-quick-add.png +0 -0
  19. package/public/red/tours/images/junction-slice.gif +0 -0
  20. package/public/red/tours/images/split-wire-with-links.gif +0 -0
  21. package/public/red/tours/welcome.js +80 -97
  22. package/public/types/node/assert.d.ts +5 -1
  23. package/public/types/node/async_hooks.d.ts +4 -1
  24. package/public/types/node/buffer.d.ts +68 -1
  25. package/public/types/node/child_process.d.ts +4 -1
  26. package/public/types/node/cluster.d.ts +4 -1
  27. package/public/types/node/console.d.ts +10 -1
  28. package/public/types/node/crypto.d.ts +6 -3
  29. package/public/types/node/dgram.d.ts +12 -9
  30. package/public/types/node/dns.d.ts +8 -1
  31. package/public/types/node/domain.d.ts +4 -1
  32. package/public/types/node/events.d.ts +5 -1
  33. package/public/types/node/fs.d.ts +10 -7
  34. package/public/types/node/globals.d.ts +140 -7
  35. package/public/types/node/http.d.ts +10 -4
  36. package/public/types/node/http2.d.ts +8 -5
  37. package/public/types/node/https.d.ts +4 -1
  38. package/public/types/node/module.d.ts +5 -1
  39. package/public/types/node/net.d.ts +7 -4
  40. package/public/types/node/os.d.ts +4 -1
  41. package/public/types/node/path.d.ts +5 -1
  42. package/public/types/node/perf_hooks.d.ts +4 -1
  43. package/public/types/node/process.d.ts +6 -2
  44. package/public/types/node/querystring.d.ts +4 -1
  45. package/public/types/node/readline.d.ts +5 -1
  46. package/public/types/node/stream.d.ts +13 -9
  47. package/public/types/node/string_decoder.d.ts +4 -1
  48. package/public/types/node/timers.d.ts +4 -1
  49. package/public/types/node/tls.d.ts +6 -2
  50. package/public/types/node/trace_events.d.ts +4 -1
  51. package/public/types/node/tty.d.ts +4 -1
  52. package/public/types/node/url.d.ts +35 -2
  53. package/public/types/node/util.d.ts +11 -2
  54. package/public/types/node/v8.d.ts +4 -1
  55. package/public/types/node/vm.d.ts +4 -1
  56. package/public/types/node/wasi.d.ts +4 -1
  57. package/public/types/node/worker_threads.d.ts +4 -1
  58. package/public/types/node/zlib.d.ts +4 -1
  59. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +382 -217
  60. package/public/vendor/monaco/dist/ade705761eb7e702770d.ttf +0 -0
  61. package/public/vendor/monaco/dist/css.worker.js +2 -1
  62. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +6 -0
  63. package/public/vendor/monaco/dist/editor.js +2 -5
  64. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +8 -0
  65. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  66. package/public/vendor/monaco/dist/html.worker.js +2 -1
  67. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +6 -0
  68. package/public/vendor/monaco/dist/json.worker.js +2 -1
  69. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +6 -0
  70. package/public/vendor/monaco/dist/locale/cs.js +1550 -1445
  71. package/public/vendor/monaco/dist/locale/de.js +1550 -1445
  72. package/public/vendor/monaco/dist/locale/es.js +1550 -1445
  73. package/public/vendor/monaco/dist/locale/fr.js +1550 -1445
  74. package/public/vendor/monaco/dist/locale/it.js +1550 -1445
  75. package/public/vendor/monaco/dist/locale/ja.js +1550 -1445
  76. package/public/vendor/monaco/dist/locale/ko.js +1550 -1445
  77. package/public/vendor/monaco/dist/locale/pl.js +1550 -1445
  78. package/public/vendor/monaco/dist/locale/pt-br.js +1550 -1445
  79. package/public/vendor/monaco/dist/locale/qps-ploc.js +1550 -1445
  80. package/public/vendor/monaco/dist/locale/ru.js +1550 -1445
  81. package/public/vendor/monaco/dist/locale/tr.js +1550 -1445
  82. package/public/vendor/monaco/dist/locale/zh-hans.js +1550 -1445
  83. package/public/vendor/monaco/dist/locale/zh-hant.js +1550 -1445
  84. package/public/vendor/monaco/dist/theme/ace.json +197 -0
  85. package/public/vendor/monaco/dist/theme/active4d.json +4 -0
  86. package/public/vendor/monaco/dist/theme/all-hallows-eve.json +4 -0
  87. package/public/vendor/monaco/dist/theme/amy.json +4 -0
  88. package/public/vendor/monaco/dist/theme/birds-of-paradise.json +4 -0
  89. package/public/vendor/monaco/dist/theme/blackboard.json +4 -0
  90. package/public/vendor/monaco/dist/theme/brilliance-black.json +4 -0
  91. package/public/vendor/monaco/dist/theme/brilliance-dull.json +4 -0
  92. package/public/vendor/monaco/dist/theme/chrome-devtools.json +4 -0
  93. package/public/vendor/monaco/dist/theme/clouds-midnight.json +4 -0
  94. package/public/vendor/monaco/dist/theme/clouds.json +4 -0
  95. package/public/vendor/monaco/dist/theme/cobalt.json +4 -0
  96. package/public/vendor/monaco/dist/theme/cobalt2.json +859 -0
  97. package/public/vendor/monaco/dist/theme/dawn.json +4 -0
  98. package/public/vendor/monaco/dist/theme/dracula.json +208 -0
  99. package/public/vendor/monaco/dist/theme/dreamweaver.json +4 -0
  100. package/public/vendor/monaco/dist/theme/eiffel.json +4 -0
  101. package/public/vendor/monaco/dist/theme/espresso-libre.json +4 -0
  102. package/public/vendor/monaco/dist/theme/github.json +4 -0
  103. package/public/vendor/monaco/dist/theme/idle.json +4 -0
  104. package/public/vendor/monaco/dist/theme/idlefingers.json +4 -0
  105. package/public/vendor/monaco/dist/theme/iplastic.json +4 -0
  106. package/public/vendor/monaco/dist/theme/katzenmilch.json +4 -0
  107. package/public/vendor/monaco/dist/theme/krtheme.json +4 -0
  108. package/public/vendor/monaco/dist/theme/kuroir-theme.json +4 -0
  109. package/public/vendor/monaco/dist/theme/lazy.json +4 -0
  110. package/public/vendor/monaco/dist/theme/magicwb-amiga.json +4 -0
  111. package/public/vendor/monaco/dist/theme/merbivore-soft.json +4 -0
  112. package/public/vendor/monaco/dist/theme/merbivore.json +4 -0
  113. package/public/vendor/monaco/dist/theme/monoindustrial.json +4 -0
  114. package/public/vendor/monaco/dist/theme/monokai-bright.json +4 -0
  115. package/public/vendor/monaco/dist/theme/monokai.json +4 -0
  116. package/public/vendor/monaco/dist/theme/night-owl.json +4 -0
  117. package/public/vendor/monaco/dist/theme/oceanic-next.json +4 -0
  118. package/public/vendor/monaco/dist/theme/pastels-on-dark.json +4 -0
  119. package/public/vendor/monaco/dist/theme/slush-and-poppies.json +4 -0
  120. package/public/vendor/monaco/dist/theme/solarized-dark.json +4 -0
  121. package/public/vendor/monaco/dist/theme/solarized-light.json +4 -0
  122. package/public/vendor/monaco/dist/theme/spacecadet.json +4 -0
  123. package/public/vendor/monaco/dist/theme/sunburst.json +4 -0
  124. package/public/vendor/monaco/dist/theme/textmate-mac-classic.json +4 -0
  125. package/public/vendor/monaco/dist/theme/tomorrow-night-blue.json +4 -0
  126. package/public/vendor/monaco/dist/theme/tomorrow-night-bright.json +4 -0
  127. package/public/vendor/monaco/dist/theme/tomorrow-night-eighties.json +4 -0
  128. package/public/vendor/monaco/dist/theme/tomorrow-night.json +4 -0
  129. package/public/vendor/monaco/dist/theme/tomorrow.json +4 -0
  130. package/public/vendor/monaco/dist/theme/twilight.json +4 -0
  131. package/public/vendor/monaco/dist/theme/upstream-sunburst.json +4 -0
  132. package/public/vendor/monaco/dist/theme/vibrant-ink.json +4 -0
  133. package/public/vendor/monaco/dist/theme/xcode_default.json +4 -0
  134. package/public/vendor/monaco/dist/theme/zenburnesque.json +4 -0
  135. package/public/vendor/monaco/dist/ts.worker.js +2 -16
  136. package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +6 -0
  137. package/public/vendor/vendor.js +4 -4
  138. package/public/red/images/grip-horizontal.png +0 -0
  139. package/public/red/images/grip.png +0 -0
  140. package/public/red/tours/images/delete-repair.gif +0 -0
  141. package/public/red/tours/images/detach-repair.gif +0 -0
  142. package/public/red/tours/images/slice.gif +0 -0
  143. package/public/red/tours/images/subflow-labels.png +0 -0
@@ -0,0 +1,859 @@
1
+ {
2
+ "base": "vs-dark",
3
+ "inherit": true,
4
+ "rules": [
5
+ {
6
+ "background": "193549",
7
+ "token": ""
8
+ },
9
+ {
10
+ "foreground": "e1efff",
11
+ "token": "punctuation - (punctuation.definition.string || punctuation.definition.comment)"
12
+ },
13
+ {
14
+ "foreground": "ff628c",
15
+ "token": "constant"
16
+ },
17
+ {
18
+ "foreground": "ffc600",
19
+ "token": "entity"
20
+ },
21
+ {
22
+ "foreground": "ff9d00",
23
+ "token": "keyword"
24
+ },
25
+ {
26
+ "foreground": "ffc600",
27
+ "token": "storage"
28
+ },
29
+ {
30
+ "foreground": "3ad900",
31
+ "token": "string -string.unquoted.old-plist -string.unquoted.heredoc"
32
+ },
33
+ {
34
+ "foreground": "3ad900",
35
+ "token": "string.unquoted.heredoc string"
36
+ },
37
+ {
38
+ "foreground": "0088ff",
39
+ "fontStyle": "italic",
40
+ "token": "comment"
41
+ },
42
+ {
43
+ "foreground": "80ffbb",
44
+ "token": "support"
45
+ },
46
+ {
47
+ "foreground": "cccccc",
48
+ "background": "0d3a58",
49
+ "token": "variable"
50
+ },
51
+ {
52
+ "foreground": "ff80e1",
53
+ "token": "variable.language"
54
+ },
55
+ {
56
+ "foreground": "ffee80",
57
+ "token": "meta.function-call"
58
+ },
59
+ {
60
+ "foreground": "f8f8f8",
61
+ "background": "800f00",
62
+ "token": "invalid"
63
+ },
64
+ {
65
+ "foreground": "80fcff",
66
+ "fontStyle": "italic",
67
+ "token": "entity.other.inherited-class"
68
+ },
69
+ {
70
+ "foreground": "9eff80",
71
+ "token": "string.quoted source"
72
+ },
73
+ {
74
+ "foreground": "9eff80",
75
+ "token": "string.quoted"
76
+ },
77
+ {
78
+ "foreground": "80ff82",
79
+ "token": "string constant"
80
+ },
81
+ {
82
+ "foreground": "80ffc2",
83
+ "token": "string.regexp"
84
+ },
85
+ {
86
+ "foreground": "edef7d",
87
+ "token": "string variable"
88
+ },
89
+ {
90
+ "foreground": "ffb054",
91
+ "token": "support.function"
92
+ },
93
+ {
94
+ "foreground": "eb939a",
95
+ "token": "support.constant"
96
+ },
97
+ {
98
+ "foreground": "ff1e00",
99
+ "token": "support.type.exception"
100
+ },
101
+ {
102
+ "foreground": "8996a8",
103
+ "token": "meta.preprocessor.c"
104
+ },
105
+ {
106
+ "foreground": "afc4db",
107
+ "token": "meta.preprocessor.c keyword"
108
+ },
109
+ {
110
+ "foreground": "73817d",
111
+ "token": "meta.sgml.html meta.doctype"
112
+ },
113
+ {
114
+ "foreground": "73817d",
115
+ "token": "meta.sgml.html meta.doctype entity"
116
+ },
117
+ {
118
+ "foreground": "73817d",
119
+ "token": "meta.sgml.html meta.doctype string"
120
+ },
121
+ {
122
+ "foreground": "73817d",
123
+ "token": "meta.xml-processing"
124
+ },
125
+ {
126
+ "foreground": "73817d",
127
+ "token": "meta.xml-processing entity"
128
+ },
129
+ {
130
+ "foreground": "73817d",
131
+ "token": "meta.xml-processing string"
132
+ },
133
+ {
134
+ "foreground": "9effff",
135
+ "token": "meta.tag"
136
+ },
137
+ {
138
+ "foreground": "9effff",
139
+ "token": "meta.tag entity"
140
+ },
141
+ {
142
+ "foreground": "9effff",
143
+ "token": "meta.selector.css entity.name.tag"
144
+ },
145
+ {
146
+ "foreground": "ffb454",
147
+ "token": "meta.selector.css entity.other.attribute-name.id"
148
+ },
149
+ {
150
+ "foreground": "5fe461",
151
+ "token": "meta.selector.css entity.other.attribute-name.class"
152
+ },
153
+ {
154
+ "foreground": "9df39f",
155
+ "token": "support.type.property-name.css"
156
+ },
157
+ {
158
+ "foreground": "f6f080",
159
+ "token": "meta.property-group support.constant.property-value.css"
160
+ },
161
+ {
162
+ "foreground": "f6f080",
163
+ "token": "meta.property-value support.constant.property-value.css"
164
+ },
165
+ {
166
+ "foreground": "f6aa11",
167
+ "token": "meta.preprocessor.at-rule keyword.control.at-rule"
168
+ },
169
+ {
170
+ "foreground": "edf080",
171
+ "token": "meta.property-value support.constant.named-color.css"
172
+ },
173
+ {
174
+ "foreground": "edf080",
175
+ "token": "meta.property-value constant"
176
+ },
177
+ {
178
+ "foreground": "eb939a",
179
+ "token": "meta.constructor.argument.css"
180
+ },
181
+ {
182
+ "foreground": "f8f8f8",
183
+ "background": "000e1a",
184
+ "token": "meta.diff"
185
+ },
186
+ {
187
+ "foreground": "f8f8f8",
188
+ "background": "000e1a",
189
+ "token": "meta.diff.header"
190
+ },
191
+ {
192
+ "foreground": "f8f8f8",
193
+ "background": "ee3a43",
194
+ "token": "markup.deleted"
195
+ },
196
+ {
197
+ "foreground": "f8f8f8",
198
+ "background": "806f00",
199
+ "token": "markup.changed"
200
+ },
201
+ {
202
+ "foreground": "f8f8f8",
203
+ "background": "154f00",
204
+ "token": "markup.inserted"
205
+ },
206
+ {
207
+ "background": "8fddf630",
208
+ "token": "markup.raw"
209
+ },
210
+ {
211
+ "background": "004480",
212
+ "token": "markup.quote"
213
+ },
214
+ {
215
+ "background": "1d425d",
216
+ "token": "markup.list"
217
+ },
218
+ {
219
+ "foreground": "c1afff",
220
+ "fontStyle": "bold",
221
+ "token": "markup.bold"
222
+ },
223
+ {
224
+ "foreground": "b8ffd9",
225
+ "fontStyle": "italic",
226
+ "token": "markup.italic"
227
+ },
228
+ {
229
+ "foreground": "c8e4fd",
230
+ "background": "001221",
231
+ "fontStyle": "bold",
232
+ "token": "markup.heading"
233
+ },
234
+ {
235
+ "foreground": "ffffff",
236
+ "background": "ffffaa",
237
+ "token": "sublimelinter.annotations"
238
+ },
239
+ {
240
+ "foreground": "da2000",
241
+ "token": "sublimelinter.mark.error"
242
+ },
243
+ {
244
+ "foreground": "ffffff",
245
+ "background": "ff4a52",
246
+ "token": "sublimelinter.outline.illegal"
247
+ },
248
+ {
249
+ "background": "ff0000",
250
+ "token": "sublimelinter.underline.illegal"
251
+ },
252
+ {
253
+ "foreground": "ffffff",
254
+ "token": "sublimelinter.gutter-mark"
255
+ },
256
+ {
257
+ "foreground": "edba00",
258
+ "token": "sublimelinter.mark.warning"
259
+ },
260
+ {
261
+ "foreground": "ffffff",
262
+ "background": "df9400",
263
+ "token": "sublimelinter.outline.warning"
264
+ },
265
+ {
266
+ "background": "ff0000",
267
+ "token": "sublimelinter.underline.warning"
268
+ },
269
+ {
270
+ "foreground": "ffffff",
271
+ "background": "ffffff",
272
+ "token": "sublimelinter.outline.violation"
273
+ },
274
+ {
275
+ "background": "ff0000",
276
+ "token": "sublimelinter.underline.violation"
277
+ },
278
+ {
279
+ "foreground": "80ffc2",
280
+ "token": ""
281
+ },
282
+ {
283
+ "foreground": "80ffc2",
284
+ "token": "entity.name.class.php"
285
+ },
286
+ {
287
+ "foreground": "80ffc2",
288
+ "token": ""
289
+ },
290
+ {
291
+ "foreground": "80ffc2",
292
+ "token": "entity.name.type.class.php"
293
+ },
294
+ {
295
+ "foreground": "80ffc2",
296
+ "token": ""
297
+ },
298
+ {
299
+ "background": "333333",
300
+ "token": "entity.name.function.php"
301
+ },
302
+ {
303
+ "foreground": "f92672",
304
+ "token": "markup.deleted.git_gutter"
305
+ },
306
+ {
307
+ "foreground": "a6e22e",
308
+ "token": "markup.inserted.git_gutter"
309
+ },
310
+ {
311
+ "foreground": "967efb",
312
+ "token": "markup.changed.git_gutter"
313
+ },
314
+ {
315
+ "foreground": "565656",
316
+ "token": "markup.ignored.git_gutter"
317
+ },
318
+ {
319
+ "foreground": "565656",
320
+ "token": "markup.untracked.git_gutter"
321
+ },
322
+ {
323
+ "foreground": "1f4662",
324
+ "token": "brackethighlighter.tag"
325
+ },
326
+ {
327
+ "foreground": "ffc600",
328
+ "token": "brackethighlighter.curly"
329
+ },
330
+ {
331
+ "foreground": "ffc600",
332
+ "token": "brackethighlighter.round"
333
+ },
334
+ {
335
+ "foreground": "ffc600",
336
+ "token": "brackethighlighter.square"
337
+ },
338
+ {
339
+ "foreground": "ffdd00",
340
+ "token": "brackethighlighter.angle"
341
+ },
342
+ {
343
+ "foreground": "ffc600",
344
+ "token": "brackethighlighter.quote"
345
+ },
346
+ {
347
+ "foreground": "f92672",
348
+ "token": "brackethighlighter.unmatched"
349
+ },
350
+ {
351
+ "foreground": "ffa5f3",
352
+ "background": "1d3c52",
353
+ "token": "storage.type.function.js"
354
+ },
355
+ {
356
+ "foreground": "2eff00",
357
+ "token": ""
358
+ },
359
+ {
360
+ "foreground": "2eff00",
361
+ "token": "punctuation.definition.string.begin.js"
362
+ },
363
+ {
364
+ "foreground": "2eff00",
365
+ "token": ""
366
+ },
367
+ {
368
+ "foreground": "2eff00",
369
+ "token": "punctuation.definition.string.end.js"
370
+ },
371
+ {
372
+ "foreground": "2eff00",
373
+ "token": ""
374
+ },
375
+ {
376
+ "foreground": "2affdf",
377
+ "token": ""
378
+ },
379
+ {
380
+ "foreground": "2affdf",
381
+ "token": "string.unquoted.label.js"
382
+ },
383
+ {
384
+ "foreground": "2affdf",
385
+ "token": ""
386
+ },
387
+ {
388
+ "foreground": "2affdf",
389
+ "token": "meta.object-literal.key.js"
390
+ },
391
+ {
392
+ "foreground": "2affdf",
393
+ "token": ""
394
+ },
395
+ {
396
+ "foreground": "80ffbb",
397
+ "token": "meta.object-literal.key.string.quoted"
398
+ },
399
+ {
400
+ "foreground": "ffc600",
401
+ "token": "meta.object-literal.key.entity"
402
+ },
403
+ {
404
+ "foreground": "ffffff",
405
+ "token": "meta.object-literal.key.punctuation"
406
+ },
407
+ {
408
+ "foreground": "2eff00",
409
+ "token": ""
410
+ },
411
+ {
412
+ "foreground": "2eff00",
413
+ "token": "punctuation.definition.string.template.begin.js"
414
+ },
415
+ {
416
+ "foreground": "2eff00",
417
+ "token": ""
418
+ },
419
+ {
420
+ "foreground": "2eff00",
421
+ "token": "punctuation.definition.string.template.end.js"
422
+ },
423
+ {
424
+ "foreground": "2eff00",
425
+ "token": ""
426
+ },
427
+ {
428
+ "foreground": "9eff80",
429
+ "token": "string.template.js"
430
+ },
431
+ {
432
+ "foreground": "ffffff",
433
+ "token": ""
434
+ },
435
+ {
436
+ "foreground": "ffffff",
437
+ "token": "string.template.js punctuation"
438
+ },
439
+ {
440
+ "foreground": "ffffff",
441
+ "token": ""
442
+ },
443
+ {
444
+ "foreground": "ffc600",
445
+ "token": "template.entity"
446
+ },
447
+ {
448
+ "foreground": "ff80e1",
449
+ "token": "string.template variable"
450
+ },
451
+ {
452
+ "foreground": "ffa5f3",
453
+ "background": "1d3c52",
454
+ "token": "storage.type.function.jsx"
455
+ },
456
+ {
457
+ "foreground": "2eff00",
458
+ "token": ""
459
+ },
460
+ {
461
+ "foreground": "2eff00",
462
+ "token": "punctuation.definition.string.begin.jsx"
463
+ },
464
+ {
465
+ "foreground": "2eff00",
466
+ "token": ""
467
+ },
468
+ {
469
+ "foreground": "2eff00",
470
+ "token": "punctuation.definition.string.end.jsx"
471
+ },
472
+ {
473
+ "foreground": "2eff00",
474
+ "token": ""
475
+ },
476
+ {
477
+ "foreground": "2affdf",
478
+ "token": ""
479
+ },
480
+ {
481
+ "foreground": "2affdf",
482
+ "token": "string.unquoted.label.jsx"
483
+ },
484
+ {
485
+ "foreground": "2affdf",
486
+ "token": ""
487
+ },
488
+ {
489
+ "foreground": "2affdf",
490
+ "token": "meta.object-literal.key.jsx"
491
+ },
492
+ {
493
+ "foreground": "2affdf",
494
+ "token": ""
495
+ },
496
+ {
497
+ "foreground": "80ffbb",
498
+ "token": "meta.object-literal.key.string.quoted"
499
+ },
500
+ {
501
+ "foreground": "ffc600",
502
+ "token": "meta.object-literal.key.entity"
503
+ },
504
+ {
505
+ "foreground": "2eff00",
506
+ "token": ""
507
+ },
508
+ {
509
+ "foreground": "2eff00",
510
+ "token": "punctuation.definition.string.template.begin.jsx"
511
+ },
512
+ {
513
+ "foreground": "2eff00",
514
+ "token": ""
515
+ },
516
+ {
517
+ "foreground": "2eff00",
518
+ "token": "punctuation.definition.string.template.end.jsx"
519
+ },
520
+ {
521
+ "foreground": "2eff00",
522
+ "token": ""
523
+ },
524
+ {
525
+ "foreground": "9eff80",
526
+ "token": "string.template.jsx"
527
+ },
528
+ {
529
+ "foreground": "ffffff",
530
+ "token": ""
531
+ },
532
+ {
533
+ "foreground": "ffffff",
534
+ "token": "string.template.jsx punctuation"
535
+ },
536
+ {
537
+ "foreground": "ffffff",
538
+ "token": ""
539
+ },
540
+ {
541
+ "foreground": "ffa5f3",
542
+ "background": "1d3c52",
543
+ "token": "storage.type.function.ts"
544
+ },
545
+ {
546
+ "foreground": "2eff00",
547
+ "token": ""
548
+ },
549
+ {
550
+ "foreground": "2eff00",
551
+ "token": "punctuation.definition.string.begin.ts"
552
+ },
553
+ {
554
+ "foreground": "2eff00",
555
+ "token": ""
556
+ },
557
+ {
558
+ "foreground": "2eff00",
559
+ "token": "punctuation.definition.string.end.ts"
560
+ },
561
+ {
562
+ "foreground": "2eff00",
563
+ "token": ""
564
+ },
565
+ {
566
+ "foreground": "2eff00",
567
+ "token": ""
568
+ },
569
+ {
570
+ "foreground": "2eff00",
571
+ "token": "punctuation.definition.string.template.begin.ts"
572
+ },
573
+ {
574
+ "foreground": "2eff00",
575
+ "token": ""
576
+ },
577
+ {
578
+ "foreground": "2eff00",
579
+ "token": "punctuation.definition.string.template.end.ts"
580
+ },
581
+ {
582
+ "foreground": "2eff00",
583
+ "token": ""
584
+ },
585
+ {
586
+ "foreground": "9eff80",
587
+ "token": "string.template.ts"
588
+ },
589
+ {
590
+ "foreground": "ffffff",
591
+ "token": ""
592
+ },
593
+ {
594
+ "foreground": "ffffff",
595
+ "token": "string.template.ts punctuation"
596
+ },
597
+ {
598
+ "foreground": "ffffff",
599
+ "token": ""
600
+ },
601
+ {
602
+ "foreground": "2affdf",
603
+ "token": ""
604
+ },
605
+ {
606
+ "foreground": "2affdf",
607
+ "token": "string.unquoted.label.ts"
608
+ },
609
+ {
610
+ "foreground": "2affdf",
611
+ "token": ""
612
+ },
613
+ {
614
+ "foreground": "2affdf",
615
+ "token": "meta.object-literal.key.ts"
616
+ },
617
+ {
618
+ "foreground": "2affdf",
619
+ "token": ""
620
+ },
621
+ {
622
+ "foreground": "fb94ff",
623
+ "token": ""
624
+ },
625
+ {
626
+ "foreground": "fb94ff",
627
+ "token": "entity.name.class.js"
628
+ },
629
+ {
630
+ "foreground": "fb94ff",
631
+ "token": ""
632
+ },
633
+ {
634
+ "foreground": "fb94ff",
635
+ "token": "entity.name.type.class.js"
636
+ },
637
+ {
638
+ "foreground": "fb94ff",
639
+ "token": ""
640
+ },
641
+ {
642
+ "foreground": "fb94ff",
643
+ "token": "entity.name.class.jsx"
644
+ },
645
+ {
646
+ "foreground": "fb94ff",
647
+ "token": ""
648
+ },
649
+ {
650
+ "foreground": "fb94ff",
651
+ "token": "entity.name.type.class.jsx"
652
+ },
653
+ {
654
+ "foreground": "fb94ff",
655
+ "token": ""
656
+ },
657
+ {
658
+ "foreground": "ff9d00",
659
+ "token": ""
660
+ },
661
+ {
662
+ "foreground": "ff9d00",
663
+ "token": "storage.type.class.js"
664
+ },
665
+ {
666
+ "foreground": "ff9d00",
667
+ "token": ""
668
+ },
669
+ {
670
+ "foreground": "ff9d00",
671
+ "token": "storage.type.class.jsx"
672
+ },
673
+ {
674
+ "foreground": "ff9d00",
675
+ "token": ""
676
+ },
677
+ {
678
+ "fontStyle": "italic",
679
+ "token": ""
680
+ },
681
+ {
682
+ "fontStyle": "italic",
683
+ "token": "storage.type.extends.js"
684
+ },
685
+ {
686
+ "fontStyle": "italic",
687
+ "token": ""
688
+ },
689
+ {
690
+ "fontStyle": "italic",
691
+ "token": "storage.modifier.extends.js"
692
+ },
693
+ {
694
+ "fontStyle": "italic",
695
+ "token": ""
696
+ },
697
+ {
698
+ "fontStyle": "italic",
699
+ "token": "storage.type.extends.jsx"
700
+ },
701
+ {
702
+ "fontStyle": "italic",
703
+ "token": ""
704
+ },
705
+ {
706
+ "fontStyle": "italic",
707
+ "token": "storage.modifier.extends.jsx"
708
+ },
709
+ {
710
+ "fontStyle": "italic",
711
+ "token": ""
712
+ },
713
+ {
714
+ "foreground": "ffc600",
715
+ "token": "punctuation.separator.key-value.css"
716
+ },
717
+ {
718
+ "foreground": "0088ff",
719
+ "background": "17344a",
720
+ "token": "invalid.illegal.bad-comments-or-CDATA.html"
721
+ },
722
+ {
723
+ "foreground": "ffc600",
724
+ "token": ""
725
+ },
726
+ {
727
+ "foreground": "ffc600",
728
+ "token": "punctuation.definition.list_item.markdown"
729
+ },
730
+ {
731
+ "foreground": "ffc600",
732
+ "token": ""
733
+ },
734
+ {
735
+ "foreground": "ffc600",
736
+ "token": "punctuation.definition.blockquote.markdown"
737
+ },
738
+ {
739
+ "foreground": "ffc600",
740
+ "token": ""
741
+ },
742
+ {
743
+ "foreground": "ffc600",
744
+ "token": "punctuation.definition.string.begin.markdown"
745
+ },
746
+ {
747
+ "foreground": "ffc600",
748
+ "token": ""
749
+ },
750
+ {
751
+ "foreground": "ffc600",
752
+ "token": "punctuation.definition.string.end.markdown"
753
+ },
754
+ {
755
+ "foreground": "ffc600",
756
+ "token": ""
757
+ },
758
+ {
759
+ "foreground": "ffc600",
760
+ "fontStyle": "italic",
761
+ "token": "markup.underline.link.image.markdown"
762
+ },
763
+ {
764
+ "foreground": "ffc600",
765
+ "fontStyle": "italic",
766
+ "token": ""
767
+ },
768
+ {
769
+ "foreground": "ffc600",
770
+ "fontStyle": "italic",
771
+ "token": "entity.other.attribute-name.html"
772
+ },
773
+ {
774
+ "foreground": "ffc600",
775
+ "fontStyle": "italic",
776
+ "token": ""
777
+ },
778
+ {
779
+ "foreground": "ffc600",
780
+ "fontStyle": "italic",
781
+ "token": "entity.other.attribute-name.event.html"
782
+ },
783
+ {
784
+ "foreground": "ffc600",
785
+ "fontStyle": "italic",
786
+ "token": ""
787
+ },
788
+ {
789
+ "foreground": "ffc600",
790
+ "fontStyle": "italic",
791
+ "token": "entity.other.attribute-name.class.html"
792
+ },
793
+ {
794
+ "foreground": "ffc600",
795
+ "fontStyle": "italic",
796
+ "token": ""
797
+ },
798
+ {
799
+ "foreground": "ffc600",
800
+ "fontStyle": "italic",
801
+ "token": "entity.other.attribute-name.style.html"
802
+ },
803
+ {
804
+ "foreground": "ffc600",
805
+ "fontStyle": "italic",
806
+ "token": ""
807
+ },
808
+ {
809
+ "foreground": "ffc600",
810
+ "fontStyle": "italic",
811
+ "token": "entity.other.attribute-name.id.html"
812
+ },
813
+ {
814
+ "foreground": "ffc600",
815
+ "fontStyle": "italic",
816
+ "token": ""
817
+ },
818
+ {
819
+ "foreground": "ffc600",
820
+ "fontStyle": "italic",
821
+ "token": "entity.other.attribute-name.tag.jade"
822
+ },
823
+ {
824
+ "foreground": "ffc600",
825
+ "fontStyle": "italic",
826
+ "token": ""
827
+ },
828
+ {
829
+ "foreground": "ffc600",
830
+ "fontStyle": "italic",
831
+ "token": "constant.other.symbol.ruby"
832
+ },
833
+ {
834
+ "foreground": "ffc600",
835
+ "fontStyle": "italic",
836
+ "token": ""
837
+ },
838
+ {
839
+ "foreground": "ffc600",
840
+ "fontStyle": "italic",
841
+ "token": "entity.other.attribute-name.jsx"
842
+ },
843
+ {
844
+ "foreground": "ffc600",
845
+ "fontStyle": "italic",
846
+ "token": ""
847
+ }
848
+ ],
849
+ "colors": {
850
+ "editor.foreground": "#FFFFFF",
851
+ "editor.background": "#193549",
852
+ "editor.selectionBackground": "#0050a4",
853
+ "editor.lineHighlightBackground": "#1f4662",
854
+ "editorCursor.foreground": "#ffc600",
855
+ "editorWhitespace.foreground": "#7f7f7fb2",
856
+ "editorIndentGuide.background": "#3b5364",
857
+ "editorIndentGuide.activeBackground": "#ffc600"
858
+ }
859
+ }