@node-red/editor-client 2.0.4 → 2.1.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 (77) hide show
  1. package/locales/en-US/editor.json +37 -7
  2. package/locales/ko/editor.json +1 -1
  3. package/package.json +2 -2
  4. package/public/red/about +109 -0
  5. package/public/red/images/node-red-256.svg +1 -0
  6. package/public/red/keymap.json +13 -2
  7. package/public/red/red.js +6122 -3663
  8. package/public/red/red.min.js +1 -1
  9. package/public/red/style.min.css +2 -2
  10. package/public/red/tours/first-flow.js +80 -0
  11. package/public/red/tours/welcome.js +135 -0
  12. package/public/tours/first-flow.js +82 -0
  13. package/public/types/node/assert.d.ts +127 -0
  14. package/public/types/node/async_hooks.d.ts +229 -0
  15. package/public/types/node/buffer.d.ts +25 -1
  16. package/public/types/node/child_process.d.ts +514 -6
  17. package/public/types/node/cluster.d.ts +265 -0
  18. package/public/types/node/console.d.ts +136 -1
  19. package/public/types/node/crypto.d.ts +1189 -1
  20. package/public/types/node/dgram.d.ts +144 -1
  21. package/public/types/node/dns.d.ts +383 -10
  22. package/public/types/node/domain.d.ts +27 -1
  23. package/public/types/node/events.d.ts +81 -1
  24. package/public/types/node/fs.d.ts +2273 -1
  25. package/public/types/node/globals.d.ts +616 -1
  26. package/public/types/node/http.d.ts +489 -1
  27. package/public/types/node/http2.d.ts +961 -0
  28. package/public/types/node/https.d.ts +142 -0
  29. package/public/types/node/module.d.ts +55 -0
  30. package/public/types/node/net.d.ts +296 -1
  31. package/public/types/node/os.d.ts +242 -1
  32. package/public/types/node/path.d.ts +156 -1
  33. package/public/types/node/perf_hooks.d.ts +274 -0
  34. package/public/types/node/process.d.ts +412 -1
  35. package/public/types/node/querystring.d.ts +31 -1
  36. package/public/types/node/readline.d.ts +173 -0
  37. package/public/types/node/stream.d.ts +358 -0
  38. package/public/types/node/string_decoder.d.ts +10 -0
  39. package/public/types/node/timers.d.ts +19 -0
  40. package/public/types/node/tls.d.ts +783 -0
  41. package/public/types/node/trace_events.d.ts +64 -0
  42. package/public/types/node/tty.d.ts +69 -0
  43. package/public/types/node/url.d.ts +119 -1
  44. package/public/types/node/util.d.ts +210 -0
  45. package/public/types/node/v8.d.ts +190 -0
  46. package/public/types/node/vm.d.ts +155 -0
  47. package/public/types/node/wasi.d.ts +89 -0
  48. package/public/types/node/worker_threads.d.ts +241 -0
  49. package/public/types/node/zlib.d.ts +364 -0
  50. package/public/types/node-red/func.d.ts +1 -1
  51. package/public/types/node-red/util.d.ts +1 -1
  52. package/public/vendor/ace/worker-jsonata.js +1 -1
  53. package/public/vendor/monaco/dist/ThirdPartyNotices.txt +192 -192
  54. package/public/vendor/monaco/dist/css.worker.js +1 -1
  55. package/public/vendor/monaco/dist/editor.js +2 -2
  56. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  57. package/public/vendor/monaco/dist/html.worker.js +1 -1
  58. package/public/vendor/monaco/dist/json.worker.js +1 -1
  59. package/public/vendor/monaco/dist/locale/cs.js +44 -10
  60. package/public/vendor/monaco/dist/locale/de.js +46 -12
  61. package/public/vendor/monaco/dist/locale/es.js +46 -12
  62. package/public/vendor/monaco/dist/locale/fr.js +43 -9
  63. package/public/vendor/monaco/dist/locale/it.js +45 -11
  64. package/public/vendor/monaco/dist/locale/ja.js +45 -11
  65. package/public/vendor/monaco/dist/locale/ko.js +44 -10
  66. package/public/vendor/monaco/dist/locale/pl.js +42 -8
  67. package/public/vendor/monaco/dist/locale/pt-br.js +49 -15
  68. package/public/vendor/monaco/dist/locale/qps-ploc.js +1445 -0
  69. package/public/vendor/monaco/dist/locale/ru.js +48 -14
  70. package/public/vendor/monaco/dist/locale/tr.js +49 -15
  71. package/public/vendor/monaco/dist/locale/zh-hans.js +48 -14
  72. package/public/vendor/monaco/dist/locale/zh-hant.js +45 -11
  73. package/public/vendor/monaco/dist/theme/monoindustrial.json +228 -0
  74. package/public/vendor/monaco/dist/theme/solarized-dark.json +1082 -0
  75. package/public/vendor/monaco/dist/ts.worker.js +2 -2
  76. package/public/vendor/vendor.js +4 -4
  77. package/templates/index.mst +5 -1
@@ -0,0 +1,1082 @@
1
+ {
2
+ "base": "vs-dark",
3
+ "inherit": true,
4
+ "rules": [
5
+ {
6
+ "foreground": "586e75",
7
+ "token": "comment"
8
+ },
9
+ {
10
+ "foreground": "2aa198",
11
+ "token": "string"
12
+ },
13
+ {
14
+ "foreground": "586e75",
15
+ "token": "string"
16
+ },
17
+ {
18
+ "foreground": "dc322f",
19
+ "token": "string.regexp"
20
+ },
21
+ {
22
+ "foreground": "d33682",
23
+ "token": "constant.numeric"
24
+ },
25
+ {
26
+ "foreground": "268bd2",
27
+ "token": "variable.language"
28
+ },
29
+ {
30
+ "foreground": "268bd2",
31
+ "token": "variable.other"
32
+ },
33
+ {
34
+ "foreground": "859900",
35
+ "token": "keyword"
36
+ },
37
+ {
38
+ "foreground": "859900",
39
+ "token": "storage"
40
+ },
41
+ {
42
+ "foreground": "268bd2",
43
+ "token": "entity.name.class"
44
+ },
45
+ {
46
+ "foreground": "268bd2",
47
+ "token": "entity.name.type.class"
48
+ },
49
+ {
50
+ "foreground": "268bd2",
51
+ "token": "entity.name.function"
52
+ },
53
+ {
54
+ "foreground": "859900",
55
+ "token": "punctuation.definition.variable"
56
+ },
57
+ {
58
+ "foreground": "dc322f",
59
+ "token": "punctuation.section.embedded.begin"
60
+ },
61
+ {
62
+ "foreground": "dc322f",
63
+ "token": "punctuation.section.embedded.end"
64
+ },
65
+ {
66
+ "foreground": "b58900",
67
+ "token": "constant.language"
68
+ },
69
+ {
70
+ "foreground": "b58900",
71
+ "token": "meta.preprocessor"
72
+ },
73
+ {
74
+ "foreground": "dc322f",
75
+ "token": "support.function.construct"
76
+ },
77
+ {
78
+ "foreground": "dc322f",
79
+ "token": "keyword.other.new"
80
+ },
81
+ {
82
+ "foreground": "cb4b16",
83
+ "token": "constant.character"
84
+ },
85
+ {
86
+ "foreground": "cb4b16",
87
+ "token": "constant.other"
88
+ },
89
+ {
90
+ "foreground": "268bd2",
91
+ "fontStyle": "bold",
92
+ "token": "entity.name.tag"
93
+ },
94
+ {
95
+ "foreground": "586e75",
96
+ "token": "punctuation.definition.tag.html"
97
+ },
98
+ {
99
+ "foreground": "586e75",
100
+ "token": "punctuation.definition.tag.begin"
101
+ },
102
+ {
103
+ "foreground": "586e75",
104
+ "token": "punctuation.definition.tag.end"
105
+ },
106
+ {
107
+ "foreground": "93a1a1",
108
+ "token": "entity.other.attribute-name"
109
+ },
110
+ {
111
+ "foreground": "268bd2",
112
+ "token": "support.function"
113
+ },
114
+ {
115
+ "foreground": "dc322f",
116
+ "token": "punctuation.separator.continuation"
117
+ },
118
+ {
119
+ "foreground": "859900",
120
+ "token": "support.type"
121
+ },
122
+ {
123
+ "foreground": "859900",
124
+ "token": "support.class"
125
+ },
126
+ {
127
+ "foreground": "cb4b16",
128
+ "token": "support.type.exception"
129
+ },
130
+ {
131
+ "foreground": "cb4b16",
132
+ "token": "keyword.other.special-method"
133
+ },
134
+ {
135
+ "foreground": "2aa198",
136
+ "token": "string.quoted.double"
137
+ },
138
+ {
139
+ "foreground": "2aa198",
140
+ "token": "string.quoted.single"
141
+ },
142
+ {
143
+ "foreground": "dc322f",
144
+ "token": "punctuation.definition.string.begin"
145
+ },
146
+ {
147
+ "foreground": "dc322f",
148
+ "token": "punctuation.definition.string.end"
149
+ },
150
+ {
151
+ "foreground": "b58900",
152
+ "token": "entity.name.tag.css"
153
+ },
154
+ {
155
+ "foreground": "b58900",
156
+ "token": "support.type.property-name.css"
157
+ },
158
+ {
159
+ "foreground": "b58900",
160
+ "token": "meta.property-name.css"
161
+ },
162
+ {
163
+ "foreground": "dc322f",
164
+ "token": "source.css"
165
+ },
166
+ {
167
+ "foreground": "586e75",
168
+ "token": "meta.selector.css"
169
+ },
170
+ {
171
+ "foreground": "6c71c4",
172
+ "token": "punctuation.section.property-list.css"
173
+ },
174
+ {
175
+ "foreground": "2aa198",
176
+ "token": "meta.property-value.css constant.numeric.css"
177
+ },
178
+ {
179
+ "foreground": "2aa198",
180
+ "token": "keyword.other.unit.css"
181
+ },
182
+ {
183
+ "foreground": "2aa198",
184
+ "token": "constant.other.color.rgb-value.css"
185
+ },
186
+ {
187
+ "foreground": "2aa198",
188
+ "token": "meta.property-value.css"
189
+ },
190
+ {
191
+ "foreground": "dc322f",
192
+ "token": "keyword.other.important.css"
193
+ },
194
+ {
195
+ "foreground": "2aa198",
196
+ "token": "support.constant.color"
197
+ },
198
+ {
199
+ "foreground": "859900",
200
+ "token": "entity.name.tag.css"
201
+ },
202
+ {
203
+ "foreground": "586e75",
204
+ "token": "punctuation.separator.key-value.css"
205
+ },
206
+ {
207
+ "foreground": "586e75",
208
+ "token": "punctuation.terminator.rule.css"
209
+ },
210
+ {
211
+ "foreground": "268bd2",
212
+ "token": "entity.other.attribute-name.class.css"
213
+ },
214
+ {
215
+ "foreground": "cb4b16",
216
+ "token": "entity.other.attribute-name.pseudo-element.css"
217
+ },
218
+ {
219
+ "foreground": "cb4b16",
220
+ "token": "entity.other.attribute-name.pseudo-class.css"
221
+ },
222
+ {
223
+ "foreground": "268bd2",
224
+ "token": "entity.other.attribute-name.id.css"
225
+ },
226
+ {
227
+ "foreground": "b58900",
228
+ "token": "meta.function.js"
229
+ },
230
+ {
231
+ "foreground": "b58900",
232
+ "token": "entity.name.function.js"
233
+ },
234
+ {
235
+ "foreground": "b58900",
236
+ "token": "support.function.dom.js"
237
+ },
238
+ {
239
+ "foreground": "b58900",
240
+ "token": "text.html.basic source.js.embedded.html"
241
+ },
242
+ {
243
+ "foreground": "268bd2",
244
+ "token": "storage.type.function.js"
245
+ },
246
+ {
247
+ "foreground": "2aa198",
248
+ "token": "constant.numeric.js"
249
+ },
250
+ {
251
+ "foreground": "268bd2",
252
+ "token": "meta.brace.square.js"
253
+ },
254
+ {
255
+ "foreground": "268bd2",
256
+ "token": "storage.type.js"
257
+ },
258
+ {
259
+ "foreground": "93a1a1",
260
+ "token": "meta.brace.round"
261
+ },
262
+ {
263
+ "foreground": "93a1a1",
264
+ "token": "punctuation.definition.parameters.begin.js"
265
+ },
266
+ {
267
+ "foreground": "93a1a1",
268
+ "token": "punctuation.definition.parameters.end.js"
269
+ },
270
+ {
271
+ "foreground": "268bd2",
272
+ "token": "meta.brace.curly.js"
273
+ },
274
+ {
275
+ "foreground": "93a1a1",
276
+ "fontStyle": "italic",
277
+ "token": "entity.name.tag.doctype.html"
278
+ },
279
+ {
280
+ "foreground": "93a1a1",
281
+ "fontStyle": "italic",
282
+ "token": "meta.tag.sgml.html"
283
+ },
284
+ {
285
+ "foreground": "93a1a1",
286
+ "fontStyle": "italic",
287
+ "token": "string.quoted.double.doctype.identifiers-and-DTDs.html"
288
+ },
289
+ {
290
+ "foreground": "839496",
291
+ "fontStyle": "italic",
292
+ "token": "comment.block.html"
293
+ },
294
+ {
295
+ "fontStyle": "italic",
296
+ "token": "entity.name.tag.script.html"
297
+ },
298
+ {
299
+ "foreground": "2aa198",
300
+ "token": "source.css.embedded.html string.quoted.double.html"
301
+ },
302
+ {
303
+ "foreground": "cb4b16",
304
+ "fontStyle": "bold",
305
+ "token": "text.html.ruby"
306
+ },
307
+ {
308
+ "foreground": "657b83",
309
+ "token": "text.html.basic meta.tag.other.html"
310
+ },
311
+ {
312
+ "foreground": "657b83",
313
+ "token": "text.html.basic meta.tag.any.html"
314
+ },
315
+ {
316
+ "foreground": "657b83",
317
+ "token": "text.html.basic meta.tag.block.any"
318
+ },
319
+ {
320
+ "foreground": "657b83",
321
+ "token": "text.html.basic meta.tag.inline.any"
322
+ },
323
+ {
324
+ "foreground": "657b83",
325
+ "token": "text.html.basic meta.tag.structure.any.html"
326
+ },
327
+ {
328
+ "foreground": "657b83",
329
+ "token": "text.html.basic source.js.embedded.html"
330
+ },
331
+ {
332
+ "foreground": "657b83",
333
+ "token": "punctuation.separator.key-value.html"
334
+ },
335
+ {
336
+ "foreground": "657b83",
337
+ "token": "text.html.basic entity.other.attribute-name.html"
338
+ },
339
+ {
340
+ "foreground": "2aa198",
341
+ "token": "text.html.basic meta.tag.structure.any.html punctuation.definition.string.begin.html"
342
+ },
343
+ {
344
+ "foreground": "2aa198",
345
+ "token": "punctuation.definition.string.begin.html"
346
+ },
347
+ {
348
+ "foreground": "2aa198",
349
+ "token": "punctuation.definition.string.end.html"
350
+ },
351
+ {
352
+ "foreground": "268bd2",
353
+ "fontStyle": "bold",
354
+ "token": "entity.name.tag.block.any.html"
355
+ },
356
+ {
357
+ "fontStyle": "italic",
358
+ "token": "source.css.embedded.html entity.name.tag.style.html"
359
+ },
360
+ {
361
+ "foreground": "839496",
362
+ "fontStyle": "italic",
363
+ "token": "source.css.embedded.html"
364
+ },
365
+ {
366
+ "foreground": "839496",
367
+ "fontStyle": "italic",
368
+ "token": "comment.block.html"
369
+ },
370
+ {
371
+ "foreground": "268bd2",
372
+ "token": "punctuation.definition.variable.ruby"
373
+ },
374
+ {
375
+ "foreground": "657b83",
376
+ "token": "meta.function.method.with-arguments.ruby"
377
+ },
378
+ {
379
+ "foreground": "2aa198",
380
+ "token": "variable.language.ruby"
381
+ },
382
+ {
383
+ "foreground": "268bd2",
384
+ "token": "entity.name.function.ruby"
385
+ },
386
+ {
387
+ "foreground": "859900",
388
+ "fontStyle": "bold",
389
+ "token": "keyword.control.ruby"
390
+ },
391
+ {
392
+ "foreground": "859900",
393
+ "fontStyle": "bold",
394
+ "token": "keyword.control.def.ruby"
395
+ },
396
+ {
397
+ "foreground": "859900",
398
+ "token": "keyword.control.class.ruby"
399
+ },
400
+ {
401
+ "foreground": "859900",
402
+ "token": "meta.class.ruby"
403
+ },
404
+ {
405
+ "foreground": "b58900",
406
+ "token": "entity.name.type.class.ruby"
407
+ },
408
+ {
409
+ "foreground": "859900",
410
+ "token": "keyword.control.ruby"
411
+ },
412
+ {
413
+ "foreground": "b58900",
414
+ "token": "support.class.ruby"
415
+ },
416
+ {
417
+ "foreground": "859900",
418
+ "token": "keyword.other.special-method.ruby"
419
+ },
420
+ {
421
+ "foreground": "2aa198",
422
+ "token": "constant.language.ruby"
423
+ },
424
+ {
425
+ "foreground": "2aa198",
426
+ "token": "constant.numeric.ruby"
427
+ },
428
+ {
429
+ "foreground": "b58900",
430
+ "token": "variable.other.constant.ruby"
431
+ },
432
+ {
433
+ "foreground": "2aa198",
434
+ "token": "constant.other.symbol.ruby"
435
+ },
436
+ {
437
+ "foreground": "dc322f",
438
+ "token": "punctuation.section.embedded.ruby"
439
+ },
440
+ {
441
+ "foreground": "dc322f",
442
+ "token": "punctuation.definition.string.begin.ruby"
443
+ },
444
+ {
445
+ "foreground": "dc322f",
446
+ "token": "punctuation.definition.string.end.ruby"
447
+ },
448
+ {
449
+ "foreground": "cb4b16",
450
+ "token": "keyword.other.special-method.ruby"
451
+ },
452
+ {
453
+ "foreground": "cb4b16",
454
+ "token": "keyword.control.import.include.php"
455
+ },
456
+ {
457
+ "foreground": "839496",
458
+ "token": "text.html.ruby meta.tag.inline.any.html"
459
+ },
460
+ {
461
+ "foreground": "2aa198",
462
+ "token": "text.html.ruby punctuation.definition.string.begin"
463
+ },
464
+ {
465
+ "foreground": "2aa198",
466
+ "token": "text.html.ruby punctuation.definition.string.end"
467
+ },
468
+ {
469
+ "foreground": "839496",
470
+ "token": "punctuation.definition.string.begin"
471
+ },
472
+ {
473
+ "foreground": "839496",
474
+ "token": "punctuation.definition.string.end"
475
+ },
476
+ {
477
+ "foreground": "839496",
478
+ "token": "support.class.php"
479
+ },
480
+ {
481
+ "foreground": "dc322f",
482
+ "token": "keyword.operator.index-start.php"
483
+ },
484
+ {
485
+ "foreground": "dc322f",
486
+ "token": "keyword.operator.index-end.php"
487
+ },
488
+ {
489
+ "foreground": "586e75",
490
+ "token": "meta.array.php"
491
+ },
492
+ {
493
+ "foreground": "b58900",
494
+ "token": "meta.array.php support.function.construct.php"
495
+ },
496
+ {
497
+ "foreground": "b58900",
498
+ "token": "meta.array.empty.php support.function.construct.php"
499
+ },
500
+ {
501
+ "foreground": "b58900",
502
+ "token": "support.function.construct.php"
503
+ },
504
+ {
505
+ "foreground": "dc322f",
506
+ "token": "punctuation.definition.array.begin"
507
+ },
508
+ {
509
+ "foreground": "dc322f",
510
+ "token": "punctuation.definition.array.end"
511
+ },
512
+ {
513
+ "foreground": "2aa198",
514
+ "token": "constant.numeric.php"
515
+ },
516
+ {
517
+ "foreground": "cb4b16",
518
+ "token": "keyword.other.new.php"
519
+ },
520
+ {
521
+ "foreground": "839496",
522
+ "token": "keyword.operator.class"
523
+ },
524
+ {
525
+ "foreground": "93a1a1",
526
+ "token": "variable.other.property.php"
527
+ },
528
+ {
529
+ "foreground": "b58900",
530
+ "token": "storage.modifier.extends.php"
531
+ },
532
+ {
533
+ "foreground": "b58900",
534
+ "token": "storage.type.class.php"
535
+ },
536
+ {
537
+ "foreground": "b58900",
538
+ "token": "keyword.operator.class.php"
539
+ },
540
+ {
541
+ "foreground": "839496",
542
+ "token": "punctuation.terminator.expression.php"
543
+ },
544
+ {
545
+ "foreground": "586e75",
546
+ "token": "meta.other.inherited-class.php"
547
+ },
548
+ {
549
+ "foreground": "859900",
550
+ "token": "storage.type.php"
551
+ },
552
+ {
553
+ "foreground": "93a1a1",
554
+ "token": "entity.name.function.php"
555
+ },
556
+ {
557
+ "foreground": "859900",
558
+ "token": "support.function.construct.php"
559
+ },
560
+ {
561
+ "foreground": "839496",
562
+ "token": "entity.name.type.class.php"
563
+ },
564
+ {
565
+ "foreground": "839496",
566
+ "token": "meta.function-call.php"
567
+ },
568
+ {
569
+ "foreground": "839496",
570
+ "token": "meta.function-call.static.php"
571
+ },
572
+ {
573
+ "foreground": "839496",
574
+ "token": "meta.function-call.object.php"
575
+ },
576
+ {
577
+ "foreground": "93a1a1",
578
+ "token": "keyword.other.phpdoc"
579
+ },
580
+ {
581
+ "foreground": "cb4b16",
582
+ "token": "source.php.embedded.block.html"
583
+ },
584
+ {
585
+ "foreground": "cb4b16",
586
+ "token": "storage.type.function.php"
587
+ },
588
+ {
589
+ "foreground": "2aa198",
590
+ "token": "constant.numeric.c"
591
+ },
592
+ {
593
+ "foreground": "cb4b16",
594
+ "token": "meta.preprocessor.c.include"
595
+ },
596
+ {
597
+ "foreground": "cb4b16",
598
+ "token": "meta.preprocessor.macro.c"
599
+ },
600
+ {
601
+ "foreground": "cb4b16",
602
+ "token": "keyword.control.import.define.c"
603
+ },
604
+ {
605
+ "foreground": "cb4b16",
606
+ "token": "keyword.control.import.include.c"
607
+ },
608
+ {
609
+ "foreground": "cb4b16",
610
+ "token": "entity.name.function.preprocessor.c"
611
+ },
612
+ {
613
+ "foreground": "2aa198",
614
+ "token": "meta.preprocessor.c.include string.quoted.other.lt-gt.include.c"
615
+ },
616
+ {
617
+ "foreground": "2aa198",
618
+ "token": "meta.preprocessor.c.include punctuation.definition.string.begin.c"
619
+ },
620
+ {
621
+ "foreground": "2aa198",
622
+ "token": "meta.preprocessor.c.include punctuation.definition.string.end.c"
623
+ },
624
+ {
625
+ "foreground": "586e75",
626
+ "token": "support.function.C99.c"
627
+ },
628
+ {
629
+ "foreground": "586e75",
630
+ "token": "support.function.any-method.c"
631
+ },
632
+ {
633
+ "foreground": "586e75",
634
+ "token": "entity.name.function.c"
635
+ },
636
+ {
637
+ "foreground": "2aa198",
638
+ "token": "punctuation.definition.string.begin.c"
639
+ },
640
+ {
641
+ "foreground": "2aa198",
642
+ "token": "punctuation.definition.string.end.c"
643
+ },
644
+ {
645
+ "foreground": "b58900",
646
+ "token": "storage.type.c"
647
+ },
648
+ {
649
+ "foreground": "e0eddd",
650
+ "background": "b58900",
651
+ "fontStyle": "italic",
652
+ "token": "meta.diff"
653
+ },
654
+ {
655
+ "foreground": "e0eddd",
656
+ "background": "b58900",
657
+ "fontStyle": "italic",
658
+ "token": "meta.diff.header"
659
+ },
660
+ {
661
+ "foreground": "dc322f",
662
+ "background": "eee8d5",
663
+ "token": "markup.deleted"
664
+ },
665
+ {
666
+ "foreground": "cb4b16",
667
+ "background": "eee8d5",
668
+ "token": "markup.changed"
669
+ },
670
+ {
671
+ "foreground": "219186",
672
+ "background": "eee8d5",
673
+ "token": "markup.inserted"
674
+ },
675
+ {
676
+ "foreground": "e0eddd",
677
+ "background": "b58900",
678
+ "token": "text.html.markdown meta.dummy.line-break"
679
+ },
680
+ {
681
+ "foreground": "2aa198",
682
+ "token": "text.html.markdown markup.raw.inline"
683
+ },
684
+ {
685
+ "foreground": "2aa198",
686
+ "token": "text.restructuredtext markup.raw"
687
+ },
688
+ {
689
+ "foreground": "dc322f",
690
+ "token": "other.package.exclude"
691
+ },
692
+ {
693
+ "foreground": "dc322f",
694
+ "token": "other.remove"
695
+ },
696
+ {
697
+ "foreground": "2aa198",
698
+ "token": "other.add"
699
+ },
700
+ {
701
+ "foreground": "dc322f",
702
+ "token": "punctuation.section.group.tex"
703
+ },
704
+ {
705
+ "foreground": "dc322f",
706
+ "token": "punctuation.definition.arguments.begin.latex"
707
+ },
708
+ {
709
+ "foreground": "dc322f",
710
+ "token": "punctuation.definition.arguments.end.latex"
711
+ },
712
+ {
713
+ "foreground": "dc322f",
714
+ "token": "punctuation.definition.arguments.latex"
715
+ },
716
+ {
717
+ "foreground": "b58900",
718
+ "token": "meta.group.braces.tex"
719
+ },
720
+ {
721
+ "foreground": "b58900",
722
+ "token": "string.other.math.tex"
723
+ },
724
+ {
725
+ "foreground": "cb4b16",
726
+ "token": "variable.parameter.function.latex"
727
+ },
728
+ {
729
+ "foreground": "dc322f",
730
+ "token": "punctuation.definition.constant.math.tex"
731
+ },
732
+ {
733
+ "foreground": "2aa198",
734
+ "token": "text.tex.latex constant.other.math.tex"
735
+ },
736
+ {
737
+ "foreground": "2aa198",
738
+ "token": "constant.other.general.math.tex"
739
+ },
740
+ {
741
+ "foreground": "2aa198",
742
+ "token": "constant.other.general.math.tex"
743
+ },
744
+ {
745
+ "foreground": "2aa198",
746
+ "token": "constant.character.math.tex"
747
+ },
748
+ {
749
+ "foreground": "b58900",
750
+ "token": "string.other.math.tex"
751
+ },
752
+ {
753
+ "foreground": "dc322f",
754
+ "token": "punctuation.definition.string.begin.tex"
755
+ },
756
+ {
757
+ "foreground": "dc322f",
758
+ "token": "punctuation.definition.string.end.tex"
759
+ },
760
+ {
761
+ "foreground": "2aa198",
762
+ "token": "keyword.control.label.latex"
763
+ },
764
+ {
765
+ "foreground": "2aa198",
766
+ "token": "text.tex.latex constant.other.general.math.tex"
767
+ },
768
+ {
769
+ "foreground": "dc322f",
770
+ "token": "variable.parameter.definition.label.latex"
771
+ },
772
+ {
773
+ "foreground": "859900",
774
+ "token": "support.function.be.latex"
775
+ },
776
+ {
777
+ "foreground": "cb4b16",
778
+ "token": "support.function.section.latex"
779
+ },
780
+ {
781
+ "foreground": "2aa198",
782
+ "token": "support.function.general.tex"
783
+ },
784
+ {
785
+ "fontStyle": "italic",
786
+ "token": "punctuation.definition.comment.tex"
787
+ },
788
+ {
789
+ "fontStyle": "italic",
790
+ "token": "comment.line.percentage.tex"
791
+ },
792
+ {
793
+ "foreground": "2aa198",
794
+ "token": "keyword.control.ref.latex"
795
+ },
796
+ {
797
+ "foreground": "586e75",
798
+ "token": "string.quoted.double.block.python"
799
+ },
800
+ {
801
+ "foreground": "859900",
802
+ "token": "storage.type.class.python"
803
+ },
804
+ {
805
+ "foreground": "859900",
806
+ "token": "storage.type.function.python"
807
+ },
808
+ {
809
+ "foreground": "859900",
810
+ "token": "storage.modifier.global.python"
811
+ },
812
+ {
813
+ "foreground": "cb4b16",
814
+ "token": "keyword.control.import.python"
815
+ },
816
+ {
817
+ "foreground": "cb4b16",
818
+ "token": "keyword.control.import.from.python"
819
+ },
820
+ {
821
+ "foreground": "b58900",
822
+ "token": "support.type.exception.python"
823
+ },
824
+ {
825
+ "foreground": "859900",
826
+ "token": "support.function.builtin.shell"
827
+ },
828
+ {
829
+ "foreground": "cb4b16",
830
+ "token": "variable.other.normal.shell"
831
+ },
832
+ {
833
+ "foreground": "268bd2",
834
+ "token": "source.shell"
835
+ },
836
+ {
837
+ "foreground": "586e75",
838
+ "token": "meta.scope.for-in-loop.shell"
839
+ },
840
+ {
841
+ "foreground": "586e75",
842
+ "token": "variable.other.loop.shell"
843
+ },
844
+ {
845
+ "foreground": "859900",
846
+ "token": "punctuation.definition.string.end.shell"
847
+ },
848
+ {
849
+ "foreground": "859900",
850
+ "token": "punctuation.definition.string.begin.shell"
851
+ },
852
+ {
853
+ "foreground": "586e75",
854
+ "token": "meta.scope.case-block.shell"
855
+ },
856
+ {
857
+ "foreground": "586e75",
858
+ "token": "meta.scope.case-body.shell"
859
+ },
860
+ {
861
+ "foreground": "dc322f",
862
+ "token": "punctuation.definition.logical-expression.shell"
863
+ },
864
+ {
865
+ "fontStyle": "italic",
866
+ "token": "comment.line.number-sign.shell"
867
+ },
868
+ {
869
+ "foreground": "cb4b16",
870
+ "token": "keyword.other.import.java"
871
+ },
872
+ {
873
+ "foreground": "586e75",
874
+ "token": "storage.modifier.import.java"
875
+ },
876
+ {
877
+ "foreground": "b58900",
878
+ "token": "meta.class.java storage.modifier.java"
879
+ },
880
+ {
881
+ "foreground": "586e75",
882
+ "token": "source.java comment.block"
883
+ },
884
+ {
885
+ "foreground": "586e75",
886
+ "token": "comment.block meta.documentation.tag.param.javadoc keyword.other.documentation.param.javadoc"
887
+ },
888
+ {
889
+ "foreground": "b58900",
890
+ "token": "punctuation.definition.variable.perl"
891
+ },
892
+ {
893
+ "foreground": "b58900",
894
+ "token": "variable.other.readwrite.global.perl"
895
+ },
896
+ {
897
+ "foreground": "b58900",
898
+ "token": "variable.other.predefined.perl"
899
+ },
900
+ {
901
+ "foreground": "b58900",
902
+ "token": "keyword.operator.comparison.perl"
903
+ },
904
+ {
905
+ "foreground": "859900",
906
+ "token": "support.function.perl"
907
+ },
908
+ {
909
+ "foreground": "586e75",
910
+ "fontStyle": "italic",
911
+ "token": "comment.line.number-sign.perl"
912
+ },
913
+ {
914
+ "foreground": "2aa198",
915
+ "token": "punctuation.definition.string.begin.perl"
916
+ },
917
+ {
918
+ "foreground": "2aa198",
919
+ "token": "punctuation.definition.string.end.perl"
920
+ },
921
+ {
922
+ "foreground": "dc322f",
923
+ "token": "constant.character.escape.perl"
924
+ },
925
+ {
926
+ "foreground": "268bd2",
927
+ "token": "markup.heading.markdown"
928
+ },
929
+ {
930
+ "foreground": "268bd2",
931
+ "token": "markup.heading.1.markdown"
932
+ },
933
+ {
934
+ "foreground": "268bd2",
935
+ "token": "markup.heading.2.markdown"
936
+ },
937
+ {
938
+ "foreground": "268bd2",
939
+ "token": "markup.heading.3.markdown"
940
+ },
941
+ {
942
+ "foreground": "268bd2",
943
+ "token": "markup.heading.4.markdown"
944
+ },
945
+ {
946
+ "foreground": "268bd2",
947
+ "token": "markup.heading.5.markdown"
948
+ },
949
+ {
950
+ "foreground": "268bd2",
951
+ "token": "markup.heading.6.markdown"
952
+ },
953
+ {
954
+ "foreground": "839496",
955
+ "fontStyle": "bold",
956
+ "token": "markup.bold.markdown"
957
+ },
958
+ {
959
+ "foreground": "839496",
960
+ "fontStyle": "italic",
961
+ "token": "markup.italic.markdown"
962
+ },
963
+ {
964
+ "foreground": "dc322f",
965
+ "token": "punctuation.definition.bold.markdown"
966
+ },
967
+ {
968
+ "foreground": "dc322f",
969
+ "token": "punctuation.definition.italic.markdown"
970
+ },
971
+ {
972
+ "foreground": "dc322f",
973
+ "token": "punctuation.definition.raw.markdown"
974
+ },
975
+ {
976
+ "foreground": "b58900",
977
+ "token": "markup.list.unnumbered.markdown"
978
+ },
979
+ {
980
+ "foreground": "859900",
981
+ "token": "markup.list.numbered.markdown"
982
+ },
983
+ {
984
+ "foreground": "2aa198",
985
+ "token": "markup.raw.block.markdown"
986
+ },
987
+ {
988
+ "foreground": "2aa198",
989
+ "token": "markup.raw.inline.markdown"
990
+ },
991
+ {
992
+ "foreground": "6c71c4",
993
+ "token": "markup.quote.markdown"
994
+ },
995
+ {
996
+ "foreground": "6c71c4",
997
+ "token": "punctuation.definition.blockquote.markdown"
998
+ },
999
+ {
1000
+ "foreground": "d33682",
1001
+ "token": "meta.separator.markdown"
1002
+ },
1003
+ {
1004
+ "foreground": "586e75",
1005
+ "fontStyle": "italic",
1006
+ "token": "meta.image.inline.markdown"
1007
+ },
1008
+ {
1009
+ "foreground": "586e75",
1010
+ "fontStyle": "italic",
1011
+ "token": "markup.underline.link.markdown"
1012
+ },
1013
+ {
1014
+ "foreground": "93a1a1",
1015
+ "token": "string.other.link.title.markdown"
1016
+ },
1017
+ {
1018
+ "foreground": "93a1a1",
1019
+ "token": "string.other.link.description.markdown"
1020
+ },
1021
+ {
1022
+ "foreground": "586e75",
1023
+ "token": "punctuation.definition.link.markdown"
1024
+ },
1025
+ {
1026
+ "foreground": "586e75",
1027
+ "token": "punctuation.definition.metadata.markdown"
1028
+ },
1029
+ {
1030
+ "foreground": "586e75",
1031
+ "token": "punctuation.definition.string.begin.markdown"
1032
+ },
1033
+ {
1034
+ "foreground": "586e75",
1035
+ "token": "punctuation.definition.string.end.markdown"
1036
+ },
1037
+ {
1038
+ "foreground": "586e75",
1039
+ "token": "punctuation.definition.constant.markdown"
1040
+ },
1041
+ {
1042
+ "foreground": "eee8d5",
1043
+ "background": "eee8d5",
1044
+ "token": "sublimelinter.notes"
1045
+ },
1046
+ {
1047
+ "foreground": "93a1a1",
1048
+ "background": "93a1a1",
1049
+ "token": "sublimelinter.outline.illegal"
1050
+ },
1051
+ {
1052
+ "background": "dc322f",
1053
+ "token": "sublimelinter.underline.illegal"
1054
+ },
1055
+ {
1056
+ "foreground": "839496",
1057
+ "background": "839496",
1058
+ "token": "sublimelinter.outline.warning"
1059
+ },
1060
+ {
1061
+ "background": "b58900",
1062
+ "token": "sublimelinter.underline.warning"
1063
+ },
1064
+ {
1065
+ "foreground": "657b83",
1066
+ "background": "657b83",
1067
+ "token": "sublimelinter.outline.violation"
1068
+ },
1069
+ {
1070
+ "background": "cb4b16",
1071
+ "token": "sublimelinter.underline.violation"
1072
+ }
1073
+ ],
1074
+ "colors": {
1075
+ "editor.foreground": "#839496",
1076
+ "editor.background": "#002B36",
1077
+ "editor.selectionBackground": "#073642",
1078
+ "editor.lineHighlightBackground": "#073642",
1079
+ "editorCursor.foreground": "#819090",
1080
+ "editorWhitespace.foreground": "#073642"
1081
+ }
1082
+ }