@node-red/editor-client 2.2.2 → 3.0.0-beta.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.
Files changed (143) hide show
  1. package/locales/de/editor.json +14 -11
  2. package/locales/en-US/editor.json +44 -14
  3. package/locales/ja/editor.json +50 -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 +77 -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 +2060 -610
  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 +65 -99
  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
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "F9F9F9",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "5a525f",
7
11
  "fontStyle": "italic",
@@ -0,0 +1,208 @@
1
+ {
2
+ "base": "vs-dark",
3
+ "inherit": true,
4
+ "rules": [
5
+ {
6
+ "background": "282a36",
7
+ "token": ""
8
+ },
9
+ {
10
+ "foreground": "6272a4",
11
+ "token": "comment"
12
+ },
13
+ {
14
+ "foreground": "f1fa8c",
15
+ "token": "string"
16
+ },
17
+ {
18
+ "foreground": "bd93f9",
19
+ "token": "constant.numeric"
20
+ },
21
+ {
22
+ "foreground": "bd93f9",
23
+ "token": "constant.language"
24
+ },
25
+ {
26
+ "foreground": "bd93f9",
27
+ "token": "constant.character"
28
+ },
29
+ {
30
+ "foreground": "bd93f9",
31
+ "token": "constant.other"
32
+ },
33
+ {
34
+ "foreground": "ffb86c",
35
+ "token": "variable.other.readwrite.instance"
36
+ },
37
+ {
38
+ "foreground": "ff79c6",
39
+ "token": "constant.character.escaped"
40
+ },
41
+ {
42
+ "foreground": "ff79c6",
43
+ "token": "constant.character.escape"
44
+ },
45
+ {
46
+ "foreground": "ff79c6",
47
+ "token": "string source"
48
+ },
49
+ {
50
+ "foreground": "ff79c6",
51
+ "token": "string source.ruby"
52
+ },
53
+ {
54
+ "foreground": "ff79c6",
55
+ "token": "keyword"
56
+ },
57
+ {
58
+ "foreground": "ff79c6",
59
+ "token": "storage"
60
+ },
61
+ {
62
+ "foreground": "8be9fd",
63
+ "fontStyle": "italic",
64
+ "token": "storage.type"
65
+ },
66
+ {
67
+ "foreground": "50fa7b",
68
+ "fontStyle": "underline",
69
+ "token": "entity.name.class"
70
+ },
71
+ {
72
+ "foreground": "50fa7b",
73
+ "fontStyle": "italic underline",
74
+ "token": "entity.other.inherited-class"
75
+ },
76
+ {
77
+ "foreground": "50fa7b",
78
+ "token": "entity.name.function"
79
+ },
80
+ {
81
+ "foreground": "ffb86c",
82
+ "fontStyle": "italic",
83
+ "token": "variable.parameter"
84
+ },
85
+ {
86
+ "foreground": "ff79c6",
87
+ "token": "entity.name.tag"
88
+ },
89
+ {
90
+ "foreground": "50fa7b",
91
+ "token": "entity.other.attribute-name"
92
+ },
93
+ {
94
+ "foreground": "8be9fd",
95
+ "token": "support.function"
96
+ },
97
+ {
98
+ "foreground": "6be5fd",
99
+ "token": "support.constant"
100
+ },
101
+ {
102
+ "foreground": "66d9ef",
103
+ "fontStyle": " italic",
104
+ "token": "support.type"
105
+ },
106
+ {
107
+ "foreground": "66d9ef",
108
+ "fontStyle": " italic",
109
+ "token": "support.class"
110
+ },
111
+ {
112
+ "foreground": "f8f8f0",
113
+ "background": "ff79c6",
114
+ "token": "invalid"
115
+ },
116
+ {
117
+ "foreground": "f8f8f0",
118
+ "background": "bd93f9",
119
+ "token": "invalid.deprecated"
120
+ },
121
+ {
122
+ "foreground": "cfcfc2",
123
+ "token": "meta.structure.dictionary.json string.quoted.double.json"
124
+ },
125
+ {
126
+ "foreground": "6272a4",
127
+ "token": "meta.diff"
128
+ },
129
+ {
130
+ "foreground": "6272a4",
131
+ "token": "meta.diff.header"
132
+ },
133
+ {
134
+ "foreground": "ff79c6",
135
+ "token": "markup.deleted"
136
+ },
137
+ {
138
+ "foreground": "50fa7b",
139
+ "token": "markup.inserted"
140
+ },
141
+ {
142
+ "foreground": "e6db74",
143
+ "token": "markup.changed"
144
+ },
145
+ {
146
+ "foreground": "bd93f9",
147
+ "token": "constant.numeric.line-number.find-in-files - match"
148
+ },
149
+ {
150
+ "foreground": "e6db74",
151
+ "token": "entity.name.filename"
152
+ },
153
+ {
154
+ "foreground": "f83333",
155
+ "token": "message.error"
156
+ },
157
+ {
158
+ "foreground": "eeeeee",
159
+ "token": "punctuation.definition.string.begin.json - meta.structure.dictionary.value.json"
160
+ },
161
+ {
162
+ "foreground": "eeeeee",
163
+ "token": "punctuation.definition.string.end.json - meta.structure.dictionary.value.json"
164
+ },
165
+ {
166
+ "foreground": "8be9fd",
167
+ "token": "meta.structure.dictionary.json string.quoted.double.json"
168
+ },
169
+ {
170
+ "foreground": "f1fa8c",
171
+ "token": "meta.structure.dictionary.value.json string.quoted.double.json"
172
+ },
173
+ {
174
+ "foreground": "50fa7b",
175
+ "token": "meta meta meta meta meta meta meta.structure.dictionary.value string"
176
+ },
177
+ {
178
+ "foreground": "ffb86c",
179
+ "token": "meta meta meta meta meta meta.structure.dictionary.value string"
180
+ },
181
+ {
182
+ "foreground": "ff79c6",
183
+ "token": "meta meta meta meta meta.structure.dictionary.value string"
184
+ },
185
+ {
186
+ "foreground": "bd93f9",
187
+ "token": "meta meta meta meta.structure.dictionary.value string"
188
+ },
189
+ {
190
+ "foreground": "50fa7b",
191
+ "token": "meta meta meta.structure.dictionary.value string"
192
+ },
193
+ {
194
+ "foreground": "ffb86c",
195
+ "token": "meta meta.structure.dictionary.value string"
196
+ }
197
+ ],
198
+ "colors": {
199
+ "editor.foreground": "#f8f8f2",
200
+ "editor.background": "#282a36",
201
+ "editor.selectionBackground": "#44475a",
202
+ "editor.lineHighlightBackground": "#44475a",
203
+ "editorCursor.foreground": "#f8f8f0",
204
+ "editorWhitespace.foreground": "#3B3A32",
205
+ "editorIndentGuide.activeBackground": "#9D550FB0",
206
+ "editor.selectionHighlightBorder": "#222218"
207
+ }
208
+ }
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "000000",
7
11
  "token": "text"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "00b418",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "2A211C",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "0066ff",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "F8F8FF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "999988",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "919191",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "323232",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "ffffff",
7
11
  "token": "text"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "EEEEEEEB",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "009933",
7
11
  "token": "string"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "E8E9E8",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "949494e8",
7
11
  "background": "dcdcdc8f",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "0B0A09",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "d27518c2",
7
11
  "token": "constant"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "E8E9E8",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "949494e8",
7
11
  "background": "dcdcdc8f",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "8c868f",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "969696",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "8d2e75",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "161616",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "ad2ea4",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "161616",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "ad2ea4",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "222C28",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "666c68",
7
11
  "background": "151c19",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "272822",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "75715e",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "272822",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "75715e",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "011627",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "637777",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "1B2B34",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "65737e",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "211E1E",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "555555",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "F1F1F1",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "406040",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "002B36",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "586e75",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FDF6E3",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "93a1a1",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "0D0D0D",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "473c45",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "000000",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "aeaeae",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "0066ff",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "002451",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "7285b7",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "000000",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "969896",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "2D2D2D",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "999999",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "1D1F21",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "969896",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "8e908c",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "141414",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "5f5a60",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "000000F7",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "3d3d3d",
7
11
  "fontStyle": "italic",
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "000000",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "ffffff",
7
11
  "background": "0f0f0f",
@@ -2,6 +2,10 @@
2
2
  "base": "vs",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "FFFFFF",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "008e00",
7
11
  "token": "comment"
@@ -2,6 +2,10 @@
2
2
  "base": "vs-dark",
3
3
  "inherit": true,
4
4
  "rules": [
5
+ {
6
+ "background": "404040",
7
+ "token": ""
8
+ },
5
9
  {
6
10
  "foreground": "709070",
7
11
  "fontStyle": "italic",