@eggjs/mock 6.1.0-beta.3 → 6.1.0-beta.5
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/dist/_virtual/rolldown_runtime.js +24 -1
- package/dist/bootstrap.d.ts +1 -1
- package/dist/bootstrap.js +1 -1
- package/dist/index.js +0 -1
- package/dist/inject_mocha.d.ts +1 -0
- package/dist/inject_mocha.js +35 -0
- package/dist/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.js +142 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js +157 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js +97 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js +40 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/conversions.js +812 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js +50 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/route.js +68 -0
- package/dist/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js +752 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/browser.js +203 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/common.js +209 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/index.js +18 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/node.js +215 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/convert/dmp.js +24 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/convert/xml.js +33 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/array.js +29 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/base.js +185 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/character.js +23 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/css.js +26 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/json.js +83 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/line.js +51 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/sentence.js +26 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/word.js +151 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/index.js +178 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/apply.js +168 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/create.js +301 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/line-endings.js +137 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/merge.js +367 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/parse.js +91 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/reverse.js +99 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/array.js +23 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/distance-iterator.js +30 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/params.js +22 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/string.js +97 -0
- package/dist/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js +14 -0
- package/dist/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js +16 -0
- package/dist/node_modules/.pnpm/he@1.2.0/node_modules/he/he.js +4093 -0
- package/dist/node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js +14 -0
- package/dist/node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js +27 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/index.js +12 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/context.js +83 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/error-constants.js +35 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/errors.js +392 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/hook.js +86 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/bdd.js +104 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/common.js +99 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/exports.js +65 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/index.js +18 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/qunit.js +95 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/tdd.js +105 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/mocha.js +1037 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/mocharc.js +24 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/buffered-worker-pool.js +152 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/esm-utils.js +74 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/file-unloader.js +22 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/parallel-buffered-runner.js +329 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/serializer.js +314 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/pending.js +22 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/base.js +417 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/doc.js +79 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/dot.js +75 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/html.js +283 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/index.js +40 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/json-stream.js +90 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/json.js +145 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/landing.js +107 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/list.js +77 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/markdown.js +106 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/min.js +57 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/nyan.js +233 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/progress.js +92 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/spec.js +91 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/tap.js +261 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/xunit.js +166 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/runnable.js +346 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/runner.js +922 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/stats-collector.js +72 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/suite.js +517 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/test.js +105 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/utils.js +505 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/package.js +225 -0
- package/dist/node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js +124 -0
- package/dist/node_modules/.pnpm/randombytes@2.1.0/node_modules/randombytes/index.js +11 -0
- package/dist/node_modules/.pnpm/serialize-javascript@6.0.2/node_modules/serialize-javascript/index.js +114 -0
- package/dist/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js +76 -0
- package/dist/node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color/index.js +89 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/Pool.js +366 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/Promise.js +248 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/WorkerHandler.js +419 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/debug-port-allocator.js +27 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/environment.js +18 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/generated/embeddedWorker.js +16 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/index.js +63 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/transfer.js +21 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/validateOptions.js +9 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/worker.js +277 -0
- package/dist/register.d.ts +0 -2
- package/dist/register.js +1 -26
- package/package.json +10 -8
|
@@ -0,0 +1,752 @@
|
|
|
1
|
+
import { __commonJS } from "../../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js
|
|
4
|
+
var require_color_name = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js": ((exports, module) => {
|
|
5
|
+
module.exports = {
|
|
6
|
+
"aliceblue": [
|
|
7
|
+
240,
|
|
8
|
+
248,
|
|
9
|
+
255
|
|
10
|
+
],
|
|
11
|
+
"antiquewhite": [
|
|
12
|
+
250,
|
|
13
|
+
235,
|
|
14
|
+
215
|
|
15
|
+
],
|
|
16
|
+
"aqua": [
|
|
17
|
+
0,
|
|
18
|
+
255,
|
|
19
|
+
255
|
|
20
|
+
],
|
|
21
|
+
"aquamarine": [
|
|
22
|
+
127,
|
|
23
|
+
255,
|
|
24
|
+
212
|
|
25
|
+
],
|
|
26
|
+
"azure": [
|
|
27
|
+
240,
|
|
28
|
+
255,
|
|
29
|
+
255
|
|
30
|
+
],
|
|
31
|
+
"beige": [
|
|
32
|
+
245,
|
|
33
|
+
245,
|
|
34
|
+
220
|
|
35
|
+
],
|
|
36
|
+
"bisque": [
|
|
37
|
+
255,
|
|
38
|
+
228,
|
|
39
|
+
196
|
|
40
|
+
],
|
|
41
|
+
"black": [
|
|
42
|
+
0,
|
|
43
|
+
0,
|
|
44
|
+
0
|
|
45
|
+
],
|
|
46
|
+
"blanchedalmond": [
|
|
47
|
+
255,
|
|
48
|
+
235,
|
|
49
|
+
205
|
|
50
|
+
],
|
|
51
|
+
"blue": [
|
|
52
|
+
0,
|
|
53
|
+
0,
|
|
54
|
+
255
|
|
55
|
+
],
|
|
56
|
+
"blueviolet": [
|
|
57
|
+
138,
|
|
58
|
+
43,
|
|
59
|
+
226
|
|
60
|
+
],
|
|
61
|
+
"brown": [
|
|
62
|
+
165,
|
|
63
|
+
42,
|
|
64
|
+
42
|
|
65
|
+
],
|
|
66
|
+
"burlywood": [
|
|
67
|
+
222,
|
|
68
|
+
184,
|
|
69
|
+
135
|
|
70
|
+
],
|
|
71
|
+
"cadetblue": [
|
|
72
|
+
95,
|
|
73
|
+
158,
|
|
74
|
+
160
|
|
75
|
+
],
|
|
76
|
+
"chartreuse": [
|
|
77
|
+
127,
|
|
78
|
+
255,
|
|
79
|
+
0
|
|
80
|
+
],
|
|
81
|
+
"chocolate": [
|
|
82
|
+
210,
|
|
83
|
+
105,
|
|
84
|
+
30
|
|
85
|
+
],
|
|
86
|
+
"coral": [
|
|
87
|
+
255,
|
|
88
|
+
127,
|
|
89
|
+
80
|
|
90
|
+
],
|
|
91
|
+
"cornflowerblue": [
|
|
92
|
+
100,
|
|
93
|
+
149,
|
|
94
|
+
237
|
|
95
|
+
],
|
|
96
|
+
"cornsilk": [
|
|
97
|
+
255,
|
|
98
|
+
248,
|
|
99
|
+
220
|
|
100
|
+
],
|
|
101
|
+
"crimson": [
|
|
102
|
+
220,
|
|
103
|
+
20,
|
|
104
|
+
60
|
|
105
|
+
],
|
|
106
|
+
"cyan": [
|
|
107
|
+
0,
|
|
108
|
+
255,
|
|
109
|
+
255
|
|
110
|
+
],
|
|
111
|
+
"darkblue": [
|
|
112
|
+
0,
|
|
113
|
+
0,
|
|
114
|
+
139
|
|
115
|
+
],
|
|
116
|
+
"darkcyan": [
|
|
117
|
+
0,
|
|
118
|
+
139,
|
|
119
|
+
139
|
|
120
|
+
],
|
|
121
|
+
"darkgoldenrod": [
|
|
122
|
+
184,
|
|
123
|
+
134,
|
|
124
|
+
11
|
|
125
|
+
],
|
|
126
|
+
"darkgray": [
|
|
127
|
+
169,
|
|
128
|
+
169,
|
|
129
|
+
169
|
|
130
|
+
],
|
|
131
|
+
"darkgreen": [
|
|
132
|
+
0,
|
|
133
|
+
100,
|
|
134
|
+
0
|
|
135
|
+
],
|
|
136
|
+
"darkgrey": [
|
|
137
|
+
169,
|
|
138
|
+
169,
|
|
139
|
+
169
|
|
140
|
+
],
|
|
141
|
+
"darkkhaki": [
|
|
142
|
+
189,
|
|
143
|
+
183,
|
|
144
|
+
107
|
|
145
|
+
],
|
|
146
|
+
"darkmagenta": [
|
|
147
|
+
139,
|
|
148
|
+
0,
|
|
149
|
+
139
|
|
150
|
+
],
|
|
151
|
+
"darkolivegreen": [
|
|
152
|
+
85,
|
|
153
|
+
107,
|
|
154
|
+
47
|
|
155
|
+
],
|
|
156
|
+
"darkorange": [
|
|
157
|
+
255,
|
|
158
|
+
140,
|
|
159
|
+
0
|
|
160
|
+
],
|
|
161
|
+
"darkorchid": [
|
|
162
|
+
153,
|
|
163
|
+
50,
|
|
164
|
+
204
|
|
165
|
+
],
|
|
166
|
+
"darkred": [
|
|
167
|
+
139,
|
|
168
|
+
0,
|
|
169
|
+
0
|
|
170
|
+
],
|
|
171
|
+
"darksalmon": [
|
|
172
|
+
233,
|
|
173
|
+
150,
|
|
174
|
+
122
|
|
175
|
+
],
|
|
176
|
+
"darkseagreen": [
|
|
177
|
+
143,
|
|
178
|
+
188,
|
|
179
|
+
143
|
|
180
|
+
],
|
|
181
|
+
"darkslateblue": [
|
|
182
|
+
72,
|
|
183
|
+
61,
|
|
184
|
+
139
|
|
185
|
+
],
|
|
186
|
+
"darkslategray": [
|
|
187
|
+
47,
|
|
188
|
+
79,
|
|
189
|
+
79
|
|
190
|
+
],
|
|
191
|
+
"darkslategrey": [
|
|
192
|
+
47,
|
|
193
|
+
79,
|
|
194
|
+
79
|
|
195
|
+
],
|
|
196
|
+
"darkturquoise": [
|
|
197
|
+
0,
|
|
198
|
+
206,
|
|
199
|
+
209
|
|
200
|
+
],
|
|
201
|
+
"darkviolet": [
|
|
202
|
+
148,
|
|
203
|
+
0,
|
|
204
|
+
211
|
|
205
|
+
],
|
|
206
|
+
"deeppink": [
|
|
207
|
+
255,
|
|
208
|
+
20,
|
|
209
|
+
147
|
|
210
|
+
],
|
|
211
|
+
"deepskyblue": [
|
|
212
|
+
0,
|
|
213
|
+
191,
|
|
214
|
+
255
|
|
215
|
+
],
|
|
216
|
+
"dimgray": [
|
|
217
|
+
105,
|
|
218
|
+
105,
|
|
219
|
+
105
|
|
220
|
+
],
|
|
221
|
+
"dimgrey": [
|
|
222
|
+
105,
|
|
223
|
+
105,
|
|
224
|
+
105
|
|
225
|
+
],
|
|
226
|
+
"dodgerblue": [
|
|
227
|
+
30,
|
|
228
|
+
144,
|
|
229
|
+
255
|
|
230
|
+
],
|
|
231
|
+
"firebrick": [
|
|
232
|
+
178,
|
|
233
|
+
34,
|
|
234
|
+
34
|
|
235
|
+
],
|
|
236
|
+
"floralwhite": [
|
|
237
|
+
255,
|
|
238
|
+
250,
|
|
239
|
+
240
|
|
240
|
+
],
|
|
241
|
+
"forestgreen": [
|
|
242
|
+
34,
|
|
243
|
+
139,
|
|
244
|
+
34
|
|
245
|
+
],
|
|
246
|
+
"fuchsia": [
|
|
247
|
+
255,
|
|
248
|
+
0,
|
|
249
|
+
255
|
|
250
|
+
],
|
|
251
|
+
"gainsboro": [
|
|
252
|
+
220,
|
|
253
|
+
220,
|
|
254
|
+
220
|
|
255
|
+
],
|
|
256
|
+
"ghostwhite": [
|
|
257
|
+
248,
|
|
258
|
+
248,
|
|
259
|
+
255
|
|
260
|
+
],
|
|
261
|
+
"gold": [
|
|
262
|
+
255,
|
|
263
|
+
215,
|
|
264
|
+
0
|
|
265
|
+
],
|
|
266
|
+
"goldenrod": [
|
|
267
|
+
218,
|
|
268
|
+
165,
|
|
269
|
+
32
|
|
270
|
+
],
|
|
271
|
+
"gray": [
|
|
272
|
+
128,
|
|
273
|
+
128,
|
|
274
|
+
128
|
|
275
|
+
],
|
|
276
|
+
"green": [
|
|
277
|
+
0,
|
|
278
|
+
128,
|
|
279
|
+
0
|
|
280
|
+
],
|
|
281
|
+
"greenyellow": [
|
|
282
|
+
173,
|
|
283
|
+
255,
|
|
284
|
+
47
|
|
285
|
+
],
|
|
286
|
+
"grey": [
|
|
287
|
+
128,
|
|
288
|
+
128,
|
|
289
|
+
128
|
|
290
|
+
],
|
|
291
|
+
"honeydew": [
|
|
292
|
+
240,
|
|
293
|
+
255,
|
|
294
|
+
240
|
|
295
|
+
],
|
|
296
|
+
"hotpink": [
|
|
297
|
+
255,
|
|
298
|
+
105,
|
|
299
|
+
180
|
|
300
|
+
],
|
|
301
|
+
"indianred": [
|
|
302
|
+
205,
|
|
303
|
+
92,
|
|
304
|
+
92
|
|
305
|
+
],
|
|
306
|
+
"indigo": [
|
|
307
|
+
75,
|
|
308
|
+
0,
|
|
309
|
+
130
|
|
310
|
+
],
|
|
311
|
+
"ivory": [
|
|
312
|
+
255,
|
|
313
|
+
255,
|
|
314
|
+
240
|
|
315
|
+
],
|
|
316
|
+
"khaki": [
|
|
317
|
+
240,
|
|
318
|
+
230,
|
|
319
|
+
140
|
|
320
|
+
],
|
|
321
|
+
"lavender": [
|
|
322
|
+
230,
|
|
323
|
+
230,
|
|
324
|
+
250
|
|
325
|
+
],
|
|
326
|
+
"lavenderblush": [
|
|
327
|
+
255,
|
|
328
|
+
240,
|
|
329
|
+
245
|
|
330
|
+
],
|
|
331
|
+
"lawngreen": [
|
|
332
|
+
124,
|
|
333
|
+
252,
|
|
334
|
+
0
|
|
335
|
+
],
|
|
336
|
+
"lemonchiffon": [
|
|
337
|
+
255,
|
|
338
|
+
250,
|
|
339
|
+
205
|
|
340
|
+
],
|
|
341
|
+
"lightblue": [
|
|
342
|
+
173,
|
|
343
|
+
216,
|
|
344
|
+
230
|
|
345
|
+
],
|
|
346
|
+
"lightcoral": [
|
|
347
|
+
240,
|
|
348
|
+
128,
|
|
349
|
+
128
|
|
350
|
+
],
|
|
351
|
+
"lightcyan": [
|
|
352
|
+
224,
|
|
353
|
+
255,
|
|
354
|
+
255
|
|
355
|
+
],
|
|
356
|
+
"lightgoldenrodyellow": [
|
|
357
|
+
250,
|
|
358
|
+
250,
|
|
359
|
+
210
|
|
360
|
+
],
|
|
361
|
+
"lightgray": [
|
|
362
|
+
211,
|
|
363
|
+
211,
|
|
364
|
+
211
|
|
365
|
+
],
|
|
366
|
+
"lightgreen": [
|
|
367
|
+
144,
|
|
368
|
+
238,
|
|
369
|
+
144
|
|
370
|
+
],
|
|
371
|
+
"lightgrey": [
|
|
372
|
+
211,
|
|
373
|
+
211,
|
|
374
|
+
211
|
|
375
|
+
],
|
|
376
|
+
"lightpink": [
|
|
377
|
+
255,
|
|
378
|
+
182,
|
|
379
|
+
193
|
|
380
|
+
],
|
|
381
|
+
"lightsalmon": [
|
|
382
|
+
255,
|
|
383
|
+
160,
|
|
384
|
+
122
|
|
385
|
+
],
|
|
386
|
+
"lightseagreen": [
|
|
387
|
+
32,
|
|
388
|
+
178,
|
|
389
|
+
170
|
|
390
|
+
],
|
|
391
|
+
"lightskyblue": [
|
|
392
|
+
135,
|
|
393
|
+
206,
|
|
394
|
+
250
|
|
395
|
+
],
|
|
396
|
+
"lightslategray": [
|
|
397
|
+
119,
|
|
398
|
+
136,
|
|
399
|
+
153
|
|
400
|
+
],
|
|
401
|
+
"lightslategrey": [
|
|
402
|
+
119,
|
|
403
|
+
136,
|
|
404
|
+
153
|
|
405
|
+
],
|
|
406
|
+
"lightsteelblue": [
|
|
407
|
+
176,
|
|
408
|
+
196,
|
|
409
|
+
222
|
|
410
|
+
],
|
|
411
|
+
"lightyellow": [
|
|
412
|
+
255,
|
|
413
|
+
255,
|
|
414
|
+
224
|
|
415
|
+
],
|
|
416
|
+
"lime": [
|
|
417
|
+
0,
|
|
418
|
+
255,
|
|
419
|
+
0
|
|
420
|
+
],
|
|
421
|
+
"limegreen": [
|
|
422
|
+
50,
|
|
423
|
+
205,
|
|
424
|
+
50
|
|
425
|
+
],
|
|
426
|
+
"linen": [
|
|
427
|
+
250,
|
|
428
|
+
240,
|
|
429
|
+
230
|
|
430
|
+
],
|
|
431
|
+
"magenta": [
|
|
432
|
+
255,
|
|
433
|
+
0,
|
|
434
|
+
255
|
|
435
|
+
],
|
|
436
|
+
"maroon": [
|
|
437
|
+
128,
|
|
438
|
+
0,
|
|
439
|
+
0
|
|
440
|
+
],
|
|
441
|
+
"mediumaquamarine": [
|
|
442
|
+
102,
|
|
443
|
+
205,
|
|
444
|
+
170
|
|
445
|
+
],
|
|
446
|
+
"mediumblue": [
|
|
447
|
+
0,
|
|
448
|
+
0,
|
|
449
|
+
205
|
|
450
|
+
],
|
|
451
|
+
"mediumorchid": [
|
|
452
|
+
186,
|
|
453
|
+
85,
|
|
454
|
+
211
|
|
455
|
+
],
|
|
456
|
+
"mediumpurple": [
|
|
457
|
+
147,
|
|
458
|
+
112,
|
|
459
|
+
219
|
|
460
|
+
],
|
|
461
|
+
"mediumseagreen": [
|
|
462
|
+
60,
|
|
463
|
+
179,
|
|
464
|
+
113
|
|
465
|
+
],
|
|
466
|
+
"mediumslateblue": [
|
|
467
|
+
123,
|
|
468
|
+
104,
|
|
469
|
+
238
|
|
470
|
+
],
|
|
471
|
+
"mediumspringgreen": [
|
|
472
|
+
0,
|
|
473
|
+
250,
|
|
474
|
+
154
|
|
475
|
+
],
|
|
476
|
+
"mediumturquoise": [
|
|
477
|
+
72,
|
|
478
|
+
209,
|
|
479
|
+
204
|
|
480
|
+
],
|
|
481
|
+
"mediumvioletred": [
|
|
482
|
+
199,
|
|
483
|
+
21,
|
|
484
|
+
133
|
|
485
|
+
],
|
|
486
|
+
"midnightblue": [
|
|
487
|
+
25,
|
|
488
|
+
25,
|
|
489
|
+
112
|
|
490
|
+
],
|
|
491
|
+
"mintcream": [
|
|
492
|
+
245,
|
|
493
|
+
255,
|
|
494
|
+
250
|
|
495
|
+
],
|
|
496
|
+
"mistyrose": [
|
|
497
|
+
255,
|
|
498
|
+
228,
|
|
499
|
+
225
|
|
500
|
+
],
|
|
501
|
+
"moccasin": [
|
|
502
|
+
255,
|
|
503
|
+
228,
|
|
504
|
+
181
|
|
505
|
+
],
|
|
506
|
+
"navajowhite": [
|
|
507
|
+
255,
|
|
508
|
+
222,
|
|
509
|
+
173
|
|
510
|
+
],
|
|
511
|
+
"navy": [
|
|
512
|
+
0,
|
|
513
|
+
0,
|
|
514
|
+
128
|
|
515
|
+
],
|
|
516
|
+
"oldlace": [
|
|
517
|
+
253,
|
|
518
|
+
245,
|
|
519
|
+
230
|
|
520
|
+
],
|
|
521
|
+
"olive": [
|
|
522
|
+
128,
|
|
523
|
+
128,
|
|
524
|
+
0
|
|
525
|
+
],
|
|
526
|
+
"olivedrab": [
|
|
527
|
+
107,
|
|
528
|
+
142,
|
|
529
|
+
35
|
|
530
|
+
],
|
|
531
|
+
"orange": [
|
|
532
|
+
255,
|
|
533
|
+
165,
|
|
534
|
+
0
|
|
535
|
+
],
|
|
536
|
+
"orangered": [
|
|
537
|
+
255,
|
|
538
|
+
69,
|
|
539
|
+
0
|
|
540
|
+
],
|
|
541
|
+
"orchid": [
|
|
542
|
+
218,
|
|
543
|
+
112,
|
|
544
|
+
214
|
|
545
|
+
],
|
|
546
|
+
"palegoldenrod": [
|
|
547
|
+
238,
|
|
548
|
+
232,
|
|
549
|
+
170
|
|
550
|
+
],
|
|
551
|
+
"palegreen": [
|
|
552
|
+
152,
|
|
553
|
+
251,
|
|
554
|
+
152
|
|
555
|
+
],
|
|
556
|
+
"paleturquoise": [
|
|
557
|
+
175,
|
|
558
|
+
238,
|
|
559
|
+
238
|
|
560
|
+
],
|
|
561
|
+
"palevioletred": [
|
|
562
|
+
219,
|
|
563
|
+
112,
|
|
564
|
+
147
|
|
565
|
+
],
|
|
566
|
+
"papayawhip": [
|
|
567
|
+
255,
|
|
568
|
+
239,
|
|
569
|
+
213
|
|
570
|
+
],
|
|
571
|
+
"peachpuff": [
|
|
572
|
+
255,
|
|
573
|
+
218,
|
|
574
|
+
185
|
|
575
|
+
],
|
|
576
|
+
"peru": [
|
|
577
|
+
205,
|
|
578
|
+
133,
|
|
579
|
+
63
|
|
580
|
+
],
|
|
581
|
+
"pink": [
|
|
582
|
+
255,
|
|
583
|
+
192,
|
|
584
|
+
203
|
|
585
|
+
],
|
|
586
|
+
"plum": [
|
|
587
|
+
221,
|
|
588
|
+
160,
|
|
589
|
+
221
|
|
590
|
+
],
|
|
591
|
+
"powderblue": [
|
|
592
|
+
176,
|
|
593
|
+
224,
|
|
594
|
+
230
|
|
595
|
+
],
|
|
596
|
+
"purple": [
|
|
597
|
+
128,
|
|
598
|
+
0,
|
|
599
|
+
128
|
|
600
|
+
],
|
|
601
|
+
"rebeccapurple": [
|
|
602
|
+
102,
|
|
603
|
+
51,
|
|
604
|
+
153
|
|
605
|
+
],
|
|
606
|
+
"red": [
|
|
607
|
+
255,
|
|
608
|
+
0,
|
|
609
|
+
0
|
|
610
|
+
],
|
|
611
|
+
"rosybrown": [
|
|
612
|
+
188,
|
|
613
|
+
143,
|
|
614
|
+
143
|
|
615
|
+
],
|
|
616
|
+
"royalblue": [
|
|
617
|
+
65,
|
|
618
|
+
105,
|
|
619
|
+
225
|
|
620
|
+
],
|
|
621
|
+
"saddlebrown": [
|
|
622
|
+
139,
|
|
623
|
+
69,
|
|
624
|
+
19
|
|
625
|
+
],
|
|
626
|
+
"salmon": [
|
|
627
|
+
250,
|
|
628
|
+
128,
|
|
629
|
+
114
|
|
630
|
+
],
|
|
631
|
+
"sandybrown": [
|
|
632
|
+
244,
|
|
633
|
+
164,
|
|
634
|
+
96
|
|
635
|
+
],
|
|
636
|
+
"seagreen": [
|
|
637
|
+
46,
|
|
638
|
+
139,
|
|
639
|
+
87
|
|
640
|
+
],
|
|
641
|
+
"seashell": [
|
|
642
|
+
255,
|
|
643
|
+
245,
|
|
644
|
+
238
|
|
645
|
+
],
|
|
646
|
+
"sienna": [
|
|
647
|
+
160,
|
|
648
|
+
82,
|
|
649
|
+
45
|
|
650
|
+
],
|
|
651
|
+
"silver": [
|
|
652
|
+
192,
|
|
653
|
+
192,
|
|
654
|
+
192
|
|
655
|
+
],
|
|
656
|
+
"skyblue": [
|
|
657
|
+
135,
|
|
658
|
+
206,
|
|
659
|
+
235
|
|
660
|
+
],
|
|
661
|
+
"slateblue": [
|
|
662
|
+
106,
|
|
663
|
+
90,
|
|
664
|
+
205
|
|
665
|
+
],
|
|
666
|
+
"slategray": [
|
|
667
|
+
112,
|
|
668
|
+
128,
|
|
669
|
+
144
|
|
670
|
+
],
|
|
671
|
+
"slategrey": [
|
|
672
|
+
112,
|
|
673
|
+
128,
|
|
674
|
+
144
|
|
675
|
+
],
|
|
676
|
+
"snow": [
|
|
677
|
+
255,
|
|
678
|
+
250,
|
|
679
|
+
250
|
|
680
|
+
],
|
|
681
|
+
"springgreen": [
|
|
682
|
+
0,
|
|
683
|
+
255,
|
|
684
|
+
127
|
|
685
|
+
],
|
|
686
|
+
"steelblue": [
|
|
687
|
+
70,
|
|
688
|
+
130,
|
|
689
|
+
180
|
|
690
|
+
],
|
|
691
|
+
"tan": [
|
|
692
|
+
210,
|
|
693
|
+
180,
|
|
694
|
+
140
|
|
695
|
+
],
|
|
696
|
+
"teal": [
|
|
697
|
+
0,
|
|
698
|
+
128,
|
|
699
|
+
128
|
|
700
|
+
],
|
|
701
|
+
"thistle": [
|
|
702
|
+
216,
|
|
703
|
+
191,
|
|
704
|
+
216
|
|
705
|
+
],
|
|
706
|
+
"tomato": [
|
|
707
|
+
255,
|
|
708
|
+
99,
|
|
709
|
+
71
|
|
710
|
+
],
|
|
711
|
+
"turquoise": [
|
|
712
|
+
64,
|
|
713
|
+
224,
|
|
714
|
+
208
|
|
715
|
+
],
|
|
716
|
+
"violet": [
|
|
717
|
+
238,
|
|
718
|
+
130,
|
|
719
|
+
238
|
|
720
|
+
],
|
|
721
|
+
"wheat": [
|
|
722
|
+
245,
|
|
723
|
+
222,
|
|
724
|
+
179
|
|
725
|
+
],
|
|
726
|
+
"white": [
|
|
727
|
+
255,
|
|
728
|
+
255,
|
|
729
|
+
255
|
|
730
|
+
],
|
|
731
|
+
"whitesmoke": [
|
|
732
|
+
245,
|
|
733
|
+
245,
|
|
734
|
+
245
|
|
735
|
+
],
|
|
736
|
+
"yellow": [
|
|
737
|
+
255,
|
|
738
|
+
255,
|
|
739
|
+
0
|
|
740
|
+
],
|
|
741
|
+
"yellowgreen": [
|
|
742
|
+
154,
|
|
743
|
+
205,
|
|
744
|
+
50
|
|
745
|
+
]
|
|
746
|
+
};
|
|
747
|
+
}) });
|
|
748
|
+
|
|
749
|
+
//#endregion
|
|
750
|
+
export default require_color_name();
|
|
751
|
+
|
|
752
|
+
export { require_color_name };
|