@node-red/editor-client 3.1.0-beta.1 → 3.1.0-beta.3
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.
- package/locales/de/editor.json +2 -0
- package/locales/en-US/editor.json +9 -2
- package/locales/fr/editor.json +1238 -0
- package/locales/fr/infotips.json +23 -0
- package/locales/fr/jsonata.json +274 -0
- package/locales/ja/editor.json +15 -3
- package/locales/ko/editor.json +233 -31
- package/locales/pt-BR/editor.json +1208 -0
- package/locales/pt-BR/infotips.json +23 -0
- package/locales/pt-BR/jsonata.json +274 -0
- package/locales/ru/editor.json +2 -0
- package/locales/zh-CN/editor.json +1175 -1049
- package/locales/zh-TW/editor.json +3 -0
- package/package.json +1 -1
- package/public/red/about +85 -1
- package/public/red/red.js +1250 -1092
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/3.0/welcome.js +6 -6
- package/public/red/tours/images/node-help.png +0 -0
- package/public/red/tours/images/tab-changes.png +0 -0
- package/public/red/tours/welcome.js +82 -7
- package/public/types/node/assert/strict.d.ts +11 -0
- package/public/types/node/assert.d.ts +898 -64
- package/public/types/node/async_hooks.d.ts +362 -94
- package/public/types/node/buffer.d.ts +2158 -14
- package/public/types/node/child_process.d.ts +1109 -257
- package/public/types/node/cluster.d.ts +349 -200
- package/public/types/node/console.d.ts +313 -43
- package/public/types/node/crypto.d.ts +3338 -658
- package/public/types/node/dgram.d.ts +459 -58
- package/public/types/node/diagnostics_channel.d.ts +155 -0
- package/public/types/node/dns/promises.d.ts +371 -0
- package/public/types/node/dns.d.ts +532 -265
- package/public/types/node/domain.d.ts +159 -16
- package/public/types/node/events.d.ts +589 -30
- package/public/types/node/fs/promises.d.ts +1097 -0
- package/public/types/node/fs.d.ts +2484 -958
- package/public/types/node/globals.d.ts +44 -504
- package/public/types/node/http.d.ts +1156 -145
- package/public/types/node/http2.d.ts +1610 -470
- package/public/types/node/https.d.ts +462 -72
- package/public/types/node/module.d.ts +72 -13
- package/public/types/node/net.d.ts +663 -131
- package/public/types/node/os.d.ts +238 -25
- package/public/types/node/path.d.ts +57 -23
- package/public/types/node/perf_hooks.d.ts +424 -112
- package/public/types/node/process.d.ts +1261 -193
- package/public/types/node/querystring.d.ts +107 -7
- package/public/types/node/readline.d.ts +443 -74
- package/public/types/node/stream/consumers.d.ts +15 -0
- package/public/types/node/stream/promises.d.ts +45 -0
- package/public/types/node/stream/web.d.ts +395 -0
- package/public/types/node/stream.d.ts +1180 -177
- package/public/types/node/string_decoder.d.ts +57 -0
- package/public/types/node/test.d.ts +193 -0
- package/public/types/node/timers/promises.d.ts +96 -0
- package/public/types/node/timers.d.ts +87 -12
- package/public/types/node/tls.d.ts +457 -222
- package/public/types/node/trace_events.d.ts +107 -10
- package/public/types/node/tty.d.ts +158 -23
- package/public/types/node/url.d.ts +734 -28
- package/public/types/node/util.d.ts +1542 -164
- package/public/types/node/v8.d.ts +261 -73
- package/public/types/node/vm.d.ts +384 -32
- package/public/types/node/wasi.d.ts +92 -23
- package/public/types/node/worker_threads.d.ts +531 -123
- package/public/types/node/zlib.d.ts +216 -63
- package/public/types/node-red/func.d.ts +2 -3
- package/public/vendor/jquery/css/base/images/ui-icons_444444_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_555555_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777620_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_777777_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_cc0000_256x240.png +0 -0
- package/public/vendor/jquery/css/base/images/ui-icons_ffffff_256x240.png +0 -0
- package/public/vendor/jquery/css/base/jquery-ui.min.css +4 -4
- package/public/vendor/mermaid/mermaid.min.js +713 -417
- package/public/vendor/monaco/dist/{ade705761eb7e702770d.ttf → 7064e66c3890a12c47b4.ttf} +0 -0
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.js +29 -1
- package/public/vendor/monaco/dist/editor.js.LICENSE.txt +5 -1
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/fa2cc0ab9f0bec2b3365.ttf +0 -0
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +393 -84
- package/public/vendor/monaco/dist/locale/de.js +397 -88
- package/public/vendor/monaco/dist/locale/es.js +392 -83
- package/public/vendor/monaco/dist/locale/fr.js +401 -92
- package/public/vendor/monaco/dist/locale/it.js +399 -90
- package/public/vendor/monaco/dist/locale/ja.js +411 -102
- package/public/vendor/monaco/dist/locale/ko.js +398 -89
- package/public/vendor/monaco/dist/locale/pl.js +396 -87
- package/public/vendor/monaco/dist/locale/pt-br.js +397 -88
- package/public/vendor/monaco/dist/locale/qps-ploc.js +1643 -1334
- package/public/vendor/monaco/dist/locale/ru.js +398 -89
- package/public/vendor/monaco/dist/locale/tr.js +400 -91
- package/public/vendor/monaco/dist/locale/zh-hans.js +403 -94
- package/public/vendor/monaco/dist/locale/zh-hant.js +395 -86
- package/public/vendor/monaco/dist/theme/forge-dark.json +213 -0
- package/public/vendor/monaco/dist/theme/forge-light.json +227 -0
- package/public/vendor/monaco/dist/theme/forge.json +236 -0
- package/public/vendor/monaco/dist/theme/github-dark.json +348 -0
- package/public/vendor/monaco/dist/theme/github-light.json +348 -0
- package/public/vendor/monaco/dist/theme/nord.json +93 -0
- package/public/vendor/monaco/dist/ts.worker.js +6 -1
- package/public/vendor/monaco/dist/ts.worker.js.LICENSE.txt +14 -6
- package/public/vendor/vendor.js +6 -13
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs-dark",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"background": "1f2937",
|
|
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": "#1f2937",
|
|
201
|
+
"editorCursor.foreground": "#f8f8f0",
|
|
202
|
+
"dropdown.background": "#44475a",
|
|
203
|
+
"editor.selectionBackground": "#44475a70",
|
|
204
|
+
"editor.inactiveSelectionBackground": "#44475a30",
|
|
205
|
+
"editorWidget.background": "#44475a",
|
|
206
|
+
"list.hoverForeground": "#44475a",
|
|
207
|
+
"list.hoverBackground": "#F7F8FC",
|
|
208
|
+
"list.focusForeground": "#44475a",
|
|
209
|
+
"list.focusBackground": "#F7F8FC",
|
|
210
|
+
"list.activeSelectionForeground": "#44475a",
|
|
211
|
+
"list.activeSelectionBackground": "#F7F8FC"
|
|
212
|
+
}
|
|
213
|
+
}
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"background": "f2f3fb",
|
|
7
|
+
"token": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"foreground": "8e908c",
|
|
11
|
+
"token": "comment"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"foreground": "31959A",
|
|
15
|
+
"token": "keyword.operator.class"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"foreground": "31959A",
|
|
19
|
+
"token": "constant.other"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"foreground": "c82829",
|
|
23
|
+
"token": "variable"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"foreground": "c82829",
|
|
27
|
+
"token": "support.other.variable"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"foreground": "c82829",
|
|
31
|
+
"token": "string.other.link"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"foreground": "c82829",
|
|
35
|
+
"token": "string.regexp"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"foreground": "c82829",
|
|
39
|
+
"token": "entity.name.tag"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"foreground": "c82829",
|
|
43
|
+
"token": "entity.other.attribute-name"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"foreground": "c82829",
|
|
47
|
+
"token": "meta.tag"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"foreground": "c82829",
|
|
51
|
+
"token": "declaration.tag"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"foreground": "c82829",
|
|
55
|
+
"token": "markup.deleted.git_gutter"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"foreground": "f5871f",
|
|
59
|
+
"token": "constant.numeric"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"foreground": "f5871f",
|
|
63
|
+
"token": "constant.language"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"foreground": "f5871f",
|
|
67
|
+
"token": "support.constant"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"foreground": "f5871f",
|
|
71
|
+
"token": "constant.character"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"foreground": "f5871f",
|
|
75
|
+
"token": "variable.parameter"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"foreground": "f5871f",
|
|
79
|
+
"token": "punctuation.section.embedded"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"foreground": "f5871f",
|
|
83
|
+
"token": "keyword.other.unit"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"foreground": "c99e00",
|
|
87
|
+
"token": "entity.name.class"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"foreground": "c99e00",
|
|
91
|
+
"token": "entity.name.type.class"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"foreground": "c99e00",
|
|
95
|
+
"token": "support.type"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"foreground": "c99e00",
|
|
99
|
+
"token": "support.class"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"foreground": "ED4E4E",
|
|
103
|
+
"token": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"foreground": "ED4E4E",
|
|
107
|
+
"token": "constant.other.symbol"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"foreground": "ED4E4E",
|
|
111
|
+
"token": "entity.other.inherited-class"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"foreground": "ED4E4E",
|
|
115
|
+
"token": "markup.heading"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"foreground": "718c00",
|
|
119
|
+
"token": "markup.inserted.git_gutter"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"foreground": "31959A",
|
|
123
|
+
"token": "keyword.operator"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"foreground": "31959A",
|
|
127
|
+
"token": "constant.other.color"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"foreground": "4271ae",
|
|
131
|
+
"token": "entity.name.function"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"foreground": "4271ae",
|
|
135
|
+
"token": "meta.function-call"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"foreground": "4271ae",
|
|
139
|
+
"token": "support.function"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"foreground": "4271ae",
|
|
143
|
+
"token": "keyword.other.special-method"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"foreground": "4271ae",
|
|
147
|
+
"token": "meta.block-level"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"foreground": "4271ae",
|
|
151
|
+
"token": "markup.changed.git_gutter"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"foreground": "31959A",
|
|
155
|
+
"token": "keyword"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"foreground": "8959a8",
|
|
159
|
+
"token": "storage"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"foreground": "8959a8",
|
|
163
|
+
"token": "storage.type"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"foreground": "f12229",
|
|
167
|
+
"token": "invalid"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"foreground": "ffffff",
|
|
171
|
+
"background": "4271ae",
|
|
172
|
+
"token": "meta.separator"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"foreground": "f12229",
|
|
176
|
+
"background": "8959a8",
|
|
177
|
+
"token": "invalid.deprecated"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"background": "718c00",
|
|
181
|
+
"token": "markup.inserted.diff"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"background": "718c00",
|
|
185
|
+
"token": "meta.diff.header.to-file"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"background": "c82829",
|
|
189
|
+
"token": "markup.deleted.diff"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"background": "c82829",
|
|
193
|
+
"token": "meta.diff.header.from-file"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"foreground": "ffffff",
|
|
197
|
+
"background": "4271ae",
|
|
198
|
+
"token": "meta.diff.header.from-file"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"foreground": "ffffff",
|
|
202
|
+
"background": "4271ae",
|
|
203
|
+
"token": "meta.diff.header.to-file"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"foreground": "31959A",
|
|
207
|
+
"fontStyle": "italic",
|
|
208
|
+
"token": "meta.diff.range"
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"colors": {
|
|
212
|
+
"editor.foreground": "#1f2937",
|
|
213
|
+
"editor.background": "#ffffff",
|
|
214
|
+
"editorCursor.foreground": "#4E4F5D",
|
|
215
|
+
"editorLineNumber.foreground": "#1f2937",
|
|
216
|
+
"dropdown.background": "#F7F8FC",
|
|
217
|
+
"editor.selectionBackground": "#65718370",
|
|
218
|
+
"editor.inactiveSelectionBackground": "#65718330",
|
|
219
|
+
"editorWidget.background":"#F7F8FC",
|
|
220
|
+
"list.hoverForeground": "#F7F8FC",
|
|
221
|
+
"list.hoverBackground": "#657183",
|
|
222
|
+
"list.focusForeground": "#F7F8FC",
|
|
223
|
+
"list.focusBackground": "#657183",
|
|
224
|
+
"list.activeSelectionForeground": "#F7F8FC",
|
|
225
|
+
"list.activeSelectionBackground": "#657183"
|
|
226
|
+
}
|
|
227
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"background": "FFFFFF",
|
|
7
|
+
"token": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"foreground": "8e908c",
|
|
11
|
+
"token": "comment"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"foreground": "31959A",
|
|
15
|
+
"token": "keyword.operator.class"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"foreground": "31959A",
|
|
19
|
+
"token": "constant.other"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"foreground": "c82829",
|
|
23
|
+
"token": "variable"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"foreground": "c82829",
|
|
27
|
+
"token": "support.other.variable"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"foreground": "c82829",
|
|
31
|
+
"token": "string.other.link"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"foreground": "c82829",
|
|
35
|
+
"token": "string.regexp"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"foreground": "c82829",
|
|
39
|
+
"token": "entity.name.tag"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"foreground": "c82829",
|
|
43
|
+
"token": "entity.other.attribute-name"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"foreground": "c82829",
|
|
47
|
+
"token": "meta.tag"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"foreground": "c82829",
|
|
51
|
+
"token": "declaration.tag"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"foreground": "c82829",
|
|
55
|
+
"token": "markup.deleted.git_gutter"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"foreground": "f5871f",
|
|
59
|
+
"token": "constant.numeric"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"foreground": "f5871f",
|
|
63
|
+
"token": "constant.language"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"foreground": "f5871f",
|
|
67
|
+
"token": "support.constant"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"foreground": "f5871f",
|
|
71
|
+
"token": "constant.character"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"foreground": "f5871f",
|
|
75
|
+
"token": "variable.parameter"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"foreground": "f5871f",
|
|
79
|
+
"token": "punctuation.section.embedded"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"foreground": "f5871f",
|
|
83
|
+
"token": "keyword.other.unit"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"foreground": "c99e00",
|
|
87
|
+
"token": "entity.name.class"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"foreground": "c99e00",
|
|
91
|
+
"token": "entity.name.type.class"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"foreground": "c99e00",
|
|
95
|
+
"token": "support.type"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"foreground": "c99e00",
|
|
99
|
+
"token": "support.class"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"foreground": "ED4E4E",
|
|
103
|
+
"token": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"foreground": "ED4E4E",
|
|
107
|
+
"token": "constant.other.symbol"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"foreground": "ED4E4E",
|
|
111
|
+
"token": "entity.other.inherited-class"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"foreground": "ED4E4E",
|
|
115
|
+
"token": "markup.heading"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"foreground": "718c00",
|
|
119
|
+
"token": "markup.inserted.git_gutter"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"foreground": "31959A",
|
|
123
|
+
"token": "keyword.operator"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"foreground": "31959A",
|
|
127
|
+
"token": "constant.other.color"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"foreground": "4271ae",
|
|
131
|
+
"token": "entity.name.function"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"foreground": "4271ae",
|
|
135
|
+
"token": "meta.function-call"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"foreground": "4271ae",
|
|
139
|
+
"token": "support.function"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"foreground": "4271ae",
|
|
143
|
+
"token": "keyword.other.special-method"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"foreground": "4271ae",
|
|
147
|
+
"token": "meta.block-level"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"foreground": "4271ae",
|
|
151
|
+
"token": "markup.changed.git_gutter"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"foreground": "31959A",
|
|
155
|
+
"token": "keyword"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"foreground": "8959a8",
|
|
159
|
+
"token": "storage"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"foreground": "8959a8",
|
|
163
|
+
"token": "storage.type"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"foreground": "ffffff",
|
|
167
|
+
"background": "c82829",
|
|
168
|
+
"token": "invalid"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"foreground": "ffffff",
|
|
172
|
+
"background": "4271ae",
|
|
173
|
+
"token": "meta.separator"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"foreground": "ffffff",
|
|
177
|
+
"background": "8959a8",
|
|
178
|
+
"token": "invalid.deprecated"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"foreground": "ffffff",
|
|
182
|
+
"token": "markup.inserted.diff"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"foreground": "ffffff",
|
|
186
|
+
"token": "markup.deleted.diff"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"foreground": "ffffff",
|
|
190
|
+
"token": "meta.diff.header.to-file"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"foreground": "ffffff",
|
|
194
|
+
"token": "meta.diff.header.from-file"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"background": "718c00",
|
|
198
|
+
"token": "markup.inserted.diff"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"background": "718c00",
|
|
202
|
+
"token": "meta.diff.header.to-file"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"background": "c82829",
|
|
206
|
+
"token": "markup.deleted.diff"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"background": "c82829",
|
|
210
|
+
"token": "meta.diff.header.from-file"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"foreground": "ffffff",
|
|
214
|
+
"background": "4271ae",
|
|
215
|
+
"token": "meta.diff.header.from-file"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"foreground": "ffffff",
|
|
219
|
+
"background": "4271ae",
|
|
220
|
+
"token": "meta.diff.header.to-file"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"foreground": "31959A",
|
|
224
|
+
"fontStyle": "italic",
|
|
225
|
+
"token": "meta.diff.range"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"colors": {
|
|
229
|
+
"editor.foreground": "#4D4D4C",
|
|
230
|
+
"editor.background": "#FFFFFF",
|
|
231
|
+
"editor.selectionBackground": "#D6D6D6",
|
|
232
|
+
"editor.lineHighlightBackground": "#EFEFEF",
|
|
233
|
+
"editorCursor.foreground": "#AEAFAD",
|
|
234
|
+
"editorWhitespace.foreground": "#D1D1D1"
|
|
235
|
+
}
|
|
236
|
+
}
|