Bug 1890689 accumulate input in LargerReceiverBlockSizeThanDesiredBuffering GTest...
[gecko.git] / devtools / client / shared / test / helper_color_data.js
blob6429c95530f1dc874401722fc438ac6c3c8f7782
1 "use strict";
3 // This is used to test color.js in browser_css_color.js
5 /* eslint-disable max-len */
6 function getFixtureColorData() {
7   return [
8     {
9       authored: "aliceblue",
10       name: "aliceblue",
11       hex: "#f0f8ff",
12       hsl: "hsl(208, 100%, 97.1%)",
13       rgb: "rgb(240, 248, 255)",
14       hwb: "hwb(208 94.1% 0%)",
15       cycle: 5,
16     },
17     {
18       authored: "antiquewhite",
19       name: "antiquewhite",
20       hex: "#faebd7",
21       hsl: "hsl(34.3, 77.8%, 91.2%)",
22       rgb: "rgb(250, 235, 215)",
23       hwb: "hwb(34.3 84.3% 2%)",
24       cycle: 5,
25     },
26     {
27       authored: "aqua",
28       name: "aqua",
29       hex: "#0ff",
30       hsl: "hsl(180, 100%, 50%)",
31       rgb: "rgb(0, 255, 255)",
32       hwb: "hwb(180 0% 0%)",
33       cycle: 5,
34     },
35     {
36       authored: "aquamarine",
37       name: "aquamarine",
38       hex: "#7fffd4",
39       hsl: "hsl(159.8, 100%, 74.9%)",
40       rgb: "rgb(127, 255, 212)",
41       hwb: "hwb(159.8 49.8% 0%)",
42       cycle: 5,
43     },
44     {
45       authored: "azure",
46       name: "azure",
47       hex: "#f0ffff",
48       hsl: "hsl(180, 100%, 97.1%)",
49       rgb: "rgb(240, 255, 255)",
50       hwb: "hwb(180 94.1% 0%)",
51       cycle: 5,
52     },
53     {
54       authored: "beige",
55       name: "beige",
56       hex: "#f5f5dc",
57       hsl: "hsl(60, 55.6%, 91.2%)",
58       rgb: "rgb(245, 245, 220)",
59       hwb: "hwb(60 86.3% 3.9%)",
60       cycle: 5,
61     },
62     {
63       authored: "bisque",
64       name: "bisque",
65       hex: "#ffe4c4",
66       hsl: "hsl(32.5, 100%, 88.4%)",
67       rgb: "rgb(255, 228, 196)",
68       hwb: "hwb(32.5 76.9% 0%)",
69       cycle: 5,
70     },
71     {
72       authored: "black",
73       name: "black",
74       hex: "#000",
75       hsl: "hsl(0, 0%, 0%)",
76       rgb: "rgb(0, 0, 0)",
77       hwb: "hwb(0 0% 100%)",
78       cycle: 5,
79     },
80     {
81       authored: "blanchedalmond",
82       name: "blanchedalmond",
83       hex: "#ffebcd",
84       hsl: "hsl(36, 100%, 90.2%)",
85       rgb: "rgb(255, 235, 205)",
86       hwb: "hwb(36 80.4% 0%)",
87       cycle: 5,
88     },
89     {
90       authored: "blue",
91       name: "blue",
92       hex: "#00f",
93       hsl: "hsl(240, 100%, 50%)",
94       rgb: "rgb(0, 0, 255)",
95       hwb: "hwb(240 0% 0%)",
96       cycle: 5,
97     },
98     {
99       authored: "blueviolet",
100       name: "blueviolet",
101       hex: "#8a2be2",
102       hsl: "hsl(271.1, 75.9%, 52.7%)",
103       rgb: "rgb(138, 43, 226)",
104       hwb: "hwb(271.1 16.9% 11.4%)",
105       cycle: 5,
106     },
107     {
108       authored: "brown",
109       name: "brown",
110       hex: "#a52a2a",
111       hsl: "hsl(0, 59.4%, 40.6%)",
112       rgb: "rgb(165, 42, 42)",
113       hwb: "hwb(0 16.5% 35.3%)",
114       cycle: 5,
115     },
116     {
117       authored: "burlywood",
118       name: "burlywood",
119       hex: "#deb887",
120       hsl: "hsl(33.8, 56.9%, 70%)",
121       rgb: "rgb(222, 184, 135)",
122       hwb: "hwb(33.8 52.9% 12.9%)",
123       cycle: 5,
124     },
125     {
126       authored: "cadetblue",
127       name: "cadetblue",
128       hex: "#5f9ea0",
129       hsl: "hsl(181.8, 25.5%, 50%)",
130       rgb: "rgb(95, 158, 160)",
131       hwb: "hwb(181.8 37.3% 37.3%)",
132       cycle: 5,
133     },
134     {
135       authored: "chartreuse",
136       name: "chartreuse",
137       hex: "#7fff00",
138       hsl: "hsl(90.1, 100%, 50%)",
139       rgb: "rgb(127, 255, 0)",
140       hwb: "hwb(90.1 0% 0%)",
141       cycle: 5,
142     },
143     {
144       authored: "chocolate",
145       name: "chocolate",
146       hex: "#d2691e",
147       hsl: "hsl(25, 75%, 47.1%)",
148       rgb: "rgb(210, 105, 30)",
149       hwb: "hwb(25 11.8% 17.6%)",
150       cycle: 5,
151     },
152     {
153       authored: "coral",
154       name: "coral",
155       hex: "#ff7f50",
156       hsl: "hsl(16.1, 100%, 65.7%)",
157       rgb: "rgb(255, 127, 80)",
158       hwb: "hwb(16.1 31.4% 0%)",
159       cycle: 5,
160     },
161     {
162       authored: "cornflowerblue",
163       name: "cornflowerblue",
164       hex: "#6495ed",
165       hsl: "hsl(218.5, 79.2%, 66.1%)",
166       rgb: "rgb(100, 149, 237)",
167       hwb: "hwb(218.5 39.2% 7.1%)",
168       cycle: 5,
169     },
170     {
171       authored: "cornsilk",
172       name: "cornsilk",
173       hex: "#fff8dc",
174       hsl: "hsl(48, 100%, 93.1%)",
175       rgb: "rgb(255, 248, 220)",
176       hwb: "hwb(48 86.3% 0%)",
177       cycle: 5,
178     },
179     {
180       authored: "crimson",
181       name: "crimson",
182       hex: "#dc143c",
183       hsl: "hsl(348, 83.3%, 47.1%)",
184       rgb: "rgb(220, 20, 60)",
185       hwb: "hwb(348 7.8% 13.7%)",
186       cycle: 5,
187     },
188     {
189       authored: "cyan",
190       name: "aqua",
191       hex: "#0ff",
192       hsl: "hsl(180, 100%, 50%)",
193       rgb: "rgb(0, 255, 255)",
194       hwb: "hwb(180 0% 0%)",
195       cycle: 5,
196     },
197     {
198       authored: "darkblue",
199       name: "darkblue",
200       hex: "#00008b",
201       hsl: "hsl(240, 100%, 27.3%)",
202       rgb: "rgb(0, 0, 139)",
203       hwb: "hwb(240 0% 45.5%)",
204       cycle: 5,
205     },
206     {
207       authored: "darkcyan",
208       name: "darkcyan",
209       hex: "#008b8b",
210       hsl: "hsl(180, 100%, 27.3%)",
211       rgb: "rgb(0, 139, 139)",
212       hwb: "hwb(180 0% 45.5%)",
213       cycle: 5,
214     },
215     {
216       authored: "darkgoldenrod",
217       name: "darkgoldenrod",
218       hex: "#b8860b",
219       hsl: "hsl(42.7, 88.7%, 38.2%)",
220       rgb: "rgb(184, 134, 11)",
221       hwb: "hwb(42.7 4.3% 27.8%)",
222       cycle: 5,
223     },
224     {
225       authored: "darkgray",
226       name: "darkgray",
227       hex: "#a9a9a9",
228       hsl: "hsl(0, 0%, 66.3%)",
229       rgb: "rgb(169, 169, 169)",
230       hwb: "hwb(0 66.3% 33.7%)",
231       cycle: 5,
232     },
233     {
234       authored: "darkgreen",
235       name: "darkgreen",
236       hex: "#006400",
237       hsl: "hsl(120, 100%, 19.6%)",
238       rgb: "rgb(0, 100, 0)",
239       hwb: "hwb(120 0% 60.8%)",
240       cycle: 5,
241     },
242     {
243       authored: "darkgrey",
244       name: "darkgray",
245       hex: "#a9a9a9",
246       hsl: "hsl(0, 0%, 66.3%)",
247       rgb: "rgb(169, 169, 169)",
248       hwb: "hwb(0 66.3% 33.7%)",
249       cycle: 5,
250     },
251     {
252       authored: "darkkhaki",
253       name: "darkkhaki",
254       hex: "#bdb76b",
255       hsl: "hsl(55.6, 38.3%, 58%)",
256       rgb: "rgb(189, 183, 107)",
257       hwb: "hwb(55.6 42% 25.9%)",
258       cycle: 5,
259     },
260     {
261       authored: "darkmagenta",
262       name: "darkmagenta",
263       hex: "#8b008b",
264       hsl: "hsl(300, 100%, 27.3%)",
265       rgb: "rgb(139, 0, 139)",
266       hwb: "hwb(300 0% 45.5%)",
267       cycle: 5,
268     },
269     {
270       authored: "darkolivegreen",
271       name: "darkolivegreen",
272       hex: "#556b2f",
273       hsl: "hsl(82, 39%, 30.2%)",
274       rgb: "rgb(85, 107, 47)",
275       hwb: "hwb(82 18.4% 58%)",
276       cycle: 5,
277     },
278     {
279       authored: "darkorange",
280       name: "darkorange",
281       hex: "#ff8c00",
282       hsl: "hsl(32.9, 100%, 50%)",
283       rgb: "rgb(255, 140, 0)",
284       hwb: "hwb(32.9 0% 0%)",
285       cycle: 5,
286     },
287     {
288       authored: "darkorchid",
289       name: "darkorchid",
290       hex: "#9932cc",
291       hsl: "hsl(280.1, 60.6%, 49.8%)",
292       rgb: "rgb(153, 50, 204)",
293       hwb: "hwb(280.1 19.6% 20%)",
294       cycle: 5,
295     },
296     {
297       authored: "darkred",
298       name: "darkred",
299       hex: "#8b0000",
300       hsl: "hsl(0, 100%, 27.3%)",
301       rgb: "rgb(139, 0, 0)",
302       hwb: "hwb(0 0% 45.5%)",
303       cycle: 5,
304     },
305     {
306       authored: "darksalmon",
307       name: "darksalmon",
308       hex: "#e9967a",
309       hsl: "hsl(15.1, 71.6%, 69.6%)",
310       rgb: "rgb(233, 150, 122)",
311       hwb: "hwb(15.1 47.8% 8.6%)",
312       cycle: 5,
313     },
314     {
315       authored: "darkseagreen",
316       name: "darkseagreen",
317       hex: "#8fbc8f",
318       hsl: "hsl(120, 25.1%, 64.9%)",
319       rgb: "rgb(143, 188, 143)",
320       hwb: "hwb(120 56.1% 26.3%)",
321       cycle: 5,
322     },
323     {
324       authored: "darkslateblue",
325       name: "darkslateblue",
326       hex: "#483d8b",
327       hsl: "hsl(248.5, 39%, 39.2%)",
328       rgb: "rgb(72, 61, 139)",
329       hwb: "hwb(248.5 23.9% 45.5%)",
330       cycle: 5,
331     },
332     {
333       authored: "darkslategray",
334       name: "darkslategray",
335       hex: "#2f4f4f",
336       hsl: "hsl(180, 25.4%, 24.7%)",
337       rgb: "rgb(47, 79, 79)",
338       hwb: "hwb(180 18.4% 69%)",
339       cycle: 5,
340     },
341     {
342       authored: "darkslategrey",
343       name: "darkslategray",
344       hex: "#2f4f4f",
345       hsl: "hsl(180, 25.4%, 24.7%)",
346       rgb: "rgb(47, 79, 79)",
347       hwb: "hwb(180 18.4% 69%)",
348       cycle: 5,
349     },
350     {
351       authored: "darkturquoise",
352       name: "darkturquoise",
353       hex: "#00ced1",
354       hsl: "hsl(180.9, 100%, 41%)",
355       rgb: "rgb(0, 206, 209)",
356       hwb: "hwb(180.9 0% 18%)",
357       cycle: 5,
358     },
359     {
360       authored: "darkviolet",
361       name: "darkviolet",
362       hex: "#9400d3",
363       hsl: "hsl(282.1, 100%, 41.4%)",
364       rgb: "rgb(148, 0, 211)",
365       hwb: "hwb(282.1 0% 17.3%)",
366       cycle: 5,
367     },
368     {
369       authored: "deeppink",
370       name: "deeppink",
371       hex: "#ff1493",
372       hsl: "hsl(327.6, 100%, 53.9%)",
373       rgb: "rgb(255, 20, 147)",
374       hwb: "hwb(327.6 7.8% 0%)",
375       cycle: 5,
376     },
377     {
378       authored: "deepskyblue",
379       name: "deepskyblue",
380       hex: "#00bfff",
381       hsl: "hsl(195.1, 100%, 50%)",
382       rgb: "rgb(0, 191, 255)",
383       hwb: "hwb(195.1 0% 0%)",
384       cycle: 5,
385     },
386     {
387       authored: "dimgray",
388       name: "dimgray",
389       hex: "#696969",
390       hsl: "hsl(0, 0%, 41.2%)",
391       rgb: "rgb(105, 105, 105)",
392       hwb: "hwb(0 41.2% 58.8%)",
393       cycle: 5,
394     },
395     {
396       authored: "dodgerblue",
397       name: "dodgerblue",
398       hex: "#1e90ff",
399       hsl: "hsl(209.6, 100%, 55.9%)",
400       rgb: "rgb(30, 144, 255)",
401       hwb: "hwb(209.6 11.8% 0%)",
402       cycle: 5,
403     },
404     {
405       authored: "firebrick",
406       name: "firebrick",
407       hex: "#b22222",
408       hsl: "hsl(0, 67.9%, 41.6%)",
409       rgb: "rgb(178, 34, 34)",
410       hwb: "hwb(0 13.3% 30.2%)",
411       cycle: 5,
412     },
413     {
414       authored: "floralwhite",
415       name: "floralwhite",
416       hex: "#fffaf0",
417       hsl: "hsl(40, 100%, 97.1%)",
418       rgb: "rgb(255, 250, 240)",
419       hwb: "hwb(40 94.1% 0%)",
420       cycle: 5,
421     },
422     {
423       authored: "forestgreen",
424       name: "forestgreen",
425       hex: "#228b22",
426       hsl: "hsl(120, 60.7%, 33.9%)",
427       rgb: "rgb(34, 139, 34)",
428       hwb: "hwb(120 13.3% 45.5%)",
429       cycle: 5,
430     },
431     {
432       authored: "fuchsia",
433       name: "fuchsia",
434       hex: "#f0f",
435       hsl: "hsl(300, 100%, 50%)",
436       rgb: "rgb(255, 0, 255)",
437       hwb: "hwb(300 0% 0%)",
438       cycle: 5,
439     },
440     {
441       authored: "gainsboro",
442       name: "gainsboro",
443       hex: "#dcdcdc",
444       hsl: "hsl(0, 0%, 86.3%)",
445       rgb: "rgb(220, 220, 220)",
446       hwb: "hwb(0 86.3% 13.7%)",
447       cycle: 5,
448     },
449     {
450       authored: "ghostwhite",
451       name: "ghostwhite",
452       hex: "#f8f8ff",
453       hsl: "hsl(240, 100%, 98.6%)",
454       rgb: "rgb(248, 248, 255)",
455       hwb: "hwb(240 97.3% 0%)",
456       cycle: 5,
457     },
458     {
459       authored: "gold",
460       name: "gold",
461       hex: "#ffd700",
462       hsl: "hsl(50.6, 100%, 50%)",
463       rgb: "rgb(255, 215, 0)",
464       hwb: "hwb(50.6 0% 0%)",
465       cycle: 5,
466     },
467     {
468       authored: "goldenrod",
469       name: "goldenrod",
470       hex: "#daa520",
471       hsl: "hsl(42.9, 74.4%, 49%)",
472       rgb: "rgb(218, 165, 32)",
473       hwb: "hwb(42.9 12.5% 14.5%)",
474       cycle: 5,
475     },
476     {
477       authored: "gray",
478       name: "gray",
479       hex: "#808080",
480       hsl: "hsl(0, 0%, 50.2%)",
481       rgb: "rgb(128, 128, 128)",
482       hwb: "hwb(0 50.2% 49.8%)",
483       cycle: 5,
484     },
485     {
486       authored: "green",
487       name: "green",
488       hex: "#008000",
489       hsl: "hsl(120, 100%, 25.1%)",
490       rgb: "rgb(0, 128, 0)",
491       hwb: "hwb(120 0% 49.8%)",
492       cycle: 5,
493     },
494     {
495       authored: "greenyellow",
496       name: "greenyellow",
497       hex: "#adff2f",
498       hsl: "hsl(83.7, 100%, 59.2%)",
499       rgb: "rgb(173, 255, 47)",
500       hwb: "hwb(83.7 18.4% 0%)",
501       cycle: 5,
502     },
503     {
504       authored: "grey",
505       name: "gray",
506       hex: "#808080",
507       hsl: "hsl(0, 0%, 50.2%)",
508       rgb: "rgb(128, 128, 128)",
509       hwb: "hwb(0 50.2% 49.8%)",
510       cycle: 5,
511     },
512     {
513       authored: "honeydew",
514       name: "honeydew",
515       hex: "#f0fff0",
516       hsl: "hsl(120, 100%, 97.1%)",
517       rgb: "rgb(240, 255, 240)",
518       hwb: "hwb(120 94.1% 0%)",
519       cycle: 5,
520     },
521     {
522       authored: "hotpink",
523       name: "hotpink",
524       hex: "#ff69b4",
525       hsl: "hsl(330, 100%, 70.6%)",
526       rgb: "rgb(255, 105, 180)",
527       hwb: "hwb(330 41.2% 0%)",
528       cycle: 5,
529     },
530     {
531       authored: "indianred",
532       name: "indianred",
533       hex: "#cd5c5c",
534       hsl: "hsl(0, 53.1%, 58.2%)",
535       rgb: "rgb(205, 92, 92)",
536       hwb: "hwb(0 36.1% 19.6%)",
537       cycle: 5,
538     },
539     {
540       authored: "indigo",
541       name: "indigo",
542       hex: "#4b0082",
543       hsl: "hsl(274.6, 100%, 25.5%)",
544       rgb: "rgb(75, 0, 130)",
545       hwb: "hwb(274.6 0% 49%)",
546       cycle: 5,
547     },
548     {
549       authored: "ivory",
550       name: "ivory",
551       hex: "#fffff0",
552       hsl: "hsl(60, 100%, 97.1%)",
553       rgb: "rgb(255, 255, 240)",
554       hwb: "hwb(60 94.1% 0%)",
555       cycle: 5,
556     },
557     {
558       authored: "khaki",
559       name: "khaki",
560       hex: "#f0e68c",
561       hsl: "hsl(54, 76.9%, 74.5%)",
562       rgb: "rgb(240, 230, 140)",
563       hwb: "hwb(54 54.9% 5.9%)",
564       cycle: 5,
565     },
566     {
567       authored: "lavender",
568       name: "lavender",
569       hex: "#e6e6fa",
570       hsl: "hsl(240, 66.7%, 94.1%)",
571       rgb: "rgb(230, 230, 250)",
572       hwb: "hwb(240 90.2% 2%)",
573       cycle: 5,
574     },
575     {
576       authored: "lavenderblush",
577       name: "lavenderblush",
578       hex: "#fff0f5",
579       hsl: "hsl(340, 100%, 97.1%)",
580       rgb: "rgb(255, 240, 245)",
581       hwb: "hwb(340 94.1% 0%)",
582       cycle: 5,
583     },
584     {
585       authored: "lawngreen",
586       name: "lawngreen",
587       hex: "#7cfc00",
588       hsl: "hsl(90.5, 100%, 49.4%)",
589       rgb: "rgb(124, 252, 0)",
590       hwb: "hwb(90.5 0% 1.2%)",
591       cycle: 5,
592     },
593     {
594       authored: "lemonchiffon",
595       name: "lemonchiffon",
596       hex: "#fffacd",
597       hsl: "hsl(54, 100%, 90.2%)",
598       rgb: "rgb(255, 250, 205)",
599       hwb: "hwb(54 80.4% 0%)",
600       cycle: 5,
601     },
602     {
603       authored: "lightblue",
604       name: "lightblue",
605       hex: "#add8e6",
606       hsl: "hsl(194.7, 53.3%, 79%)",
607       rgb: "rgb(173, 216, 230)",
608       hwb: "hwb(194.7 67.8% 9.8%)",
609       cycle: 5,
610     },
611     {
612       authored: "lightcoral",
613       name: "lightcoral",
614       hex: "#f08080",
615       hsl: "hsl(0, 78.9%, 72.2%)",
616       rgb: "rgb(240, 128, 128)",
617       hwb: "hwb(0 50.2% 5.9%)",
618       cycle: 5,
619     },
620     {
621       authored: "lightcyan",
622       name: "lightcyan",
623       hex: "#e0ffff",
624       hsl: "hsl(180, 100%, 93.9%)",
625       rgb: "rgb(224, 255, 255)",
626       hwb: "hwb(180 87.8% 0%)",
627       cycle: 5,
628     },
629     {
630       authored: "lightgoldenrodyellow",
631       name: "lightgoldenrodyellow",
632       hex: "#fafad2",
633       hsl: "hsl(60, 80%, 90.2%)",
634       rgb: "rgb(250, 250, 210)",
635       hwb: "hwb(60 82.4% 2%)",
636       cycle: 5,
637     },
638     {
639       authored: "lightgray",
640       name: "lightgray",
641       hex: "#d3d3d3",
642       hsl: "hsl(0, 0%, 82.7%)",
643       rgb: "rgb(211, 211, 211)",
644       hwb: "hwb(0 82.7% 17.3%)",
645       cycle: 5,
646     },
647     {
648       authored: "lightgreen",
649       name: "lightgreen",
650       hex: "#90ee90",
651       hsl: "hsl(120, 73.4%, 74.9%)",
652       rgb: "rgb(144, 238, 144)",
653       hwb: "hwb(120 56.5% 6.7%)",
654       cycle: 5,
655     },
656     {
657       authored: "lightgrey",
658       name: "lightgray",
659       hex: "#d3d3d3",
660       hsl: "hsl(0, 0%, 82.7%)",
661       rgb: "rgb(211, 211, 211)",
662       hwb: "hwb(0 82.7% 17.3%)",
663       cycle: 5,
664     },
665     {
666       authored: "lightpink",
667       name: "lightpink",
668       hex: "#ffb6c1",
669       hsl: "hsl(351, 100%, 85.7%)",
670       rgb: "rgb(255, 182, 193)",
671       hwb: "hwb(351 71.4% 0%)",
672       cycle: 5,
673     },
674     {
675       authored: "lightsalmon",
676       name: "lightsalmon",
677       hex: "#ffa07a",
678       hsl: "hsl(17.1, 100%, 73.9%)",
679       rgb: "rgb(255, 160, 122)",
680       hwb: "hwb(17.1 47.8% 0%)",
681       cycle: 5,
682     },
683     {
684       authored: "lightseagreen",
685       name: "lightseagreen",
686       hex: "#20b2aa",
687       hsl: "hsl(176.7, 69.5%, 41.2%)",
688       rgb: "rgb(32, 178, 170)",
689       hwb: "hwb(176.7 12.5% 30.2%)",
690       cycle: 5,
691     },
692     {
693       authored: "lightskyblue",
694       name: "lightskyblue",
695       hex: "#87cefa",
696       hsl: "hsl(203, 92%, 75.5%)",
697       rgb: "rgb(135, 206, 250)",
698       hwb: "hwb(203 52.9% 2%)",
699       cycle: 5,
700     },
701     {
702       authored: "lightslategray",
703       name: "lightslategray",
704       hex: "#789",
705       hsl: "hsl(210, 14.3%, 53.3%)",
706       rgb: "rgb(119, 136, 153)",
707       hwb: "hwb(210 46.7% 40%)",
708       cycle: 5,
709     },
710     {
711       authored: "lightslategrey",
712       name: "lightslategray",
713       hex: "#789",
714       hsl: "hsl(210, 14.3%, 53.3%)",
715       rgb: "rgb(119, 136, 153)",
716       hwb: "hwb(210 46.7% 40%)",
717       cycle: 5,
718     },
719     {
720       authored: "lightsteelblue",
721       name: "lightsteelblue",
722       hex: "#b0c4de",
723       hsl: "hsl(213.9, 41.1%, 78%)",
724       rgb: "rgb(176, 196, 222)",
725       hwb: "hwb(213.9 69% 12.9%)",
726       cycle: 5,
727     },
728     {
729       authored: "lightyellow",
730       name: "lightyellow",
731       hex: "#ffffe0",
732       hsl: "hsl(60, 100%, 93.9%)",
733       rgb: "rgb(255, 255, 224)",
734       hwb: "hwb(60 87.8% 0%)",
735       cycle: 5,
736     },
737     {
738       authored: "lime",
739       name: "lime",
740       hex: "#0f0",
741       hsl: "hsl(120, 100%, 50%)",
742       rgb: "rgb(0, 255, 0)",
743       hwb: "hwb(120 0% 0%)",
744       cycle: 5,
745     },
746     {
747       authored: "limegreen",
748       name: "limegreen",
749       hex: "#32cd32",
750       hsl: "hsl(120, 60.8%, 50%)",
751       rgb: "rgb(50, 205, 50)",
752       hwb: "hwb(120 19.6% 19.6%)",
753       cycle: 5,
754     },
755     {
756       authored: "linen",
757       name: "linen",
758       hex: "#faf0e6",
759       hsl: "hsl(30, 66.7%, 94.1%)",
760       rgb: "rgb(250, 240, 230)",
761       hwb: "hwb(30 90.2% 2%)",
762       cycle: 5,
763     },
764     {
765       authored: "magenta",
766       name: "fuchsia",
767       hex: "#f0f",
768       hsl: "hsl(300, 100%, 50%)",
769       rgb: "rgb(255, 0, 255)",
770       hwb: "hwb(300 0% 0%)",
771       cycle: 5,
772     },
773     {
774       authored: "maroon",
775       name: "maroon",
776       hex: "#800000",
777       hsl: "hsl(0, 100%, 25.1%)",
778       rgb: "rgb(128, 0, 0)",
779       hwb: "hwb(0 0% 49.8%)",
780       cycle: 5,
781     },
782     {
783       authored: "mediumaquamarine",
784       name: "mediumaquamarine",
785       hex: "#66cdaa",
786       hsl: "hsl(159.6, 50.7%, 60.2%)",
787       rgb: "rgb(102, 205, 170)",
788       hwb: "hwb(159.6 40% 19.6%)",
789       cycle: 5,
790     },
791     {
792       authored: "mediumblue",
793       name: "mediumblue",
794       hex: "#0000cd",
795       hsl: "hsl(240, 100%, 40.2%)",
796       rgb: "rgb(0, 0, 205)",
797       hwb: "hwb(240 0% 19.6%)",
798       cycle: 5,
799     },
800     {
801       authored: "mediumorchid",
802       name: "mediumorchid",
803       hex: "#ba55d3",
804       hsl: "hsl(288.1, 58.9%, 58%)",
805       rgb: "rgb(186, 85, 211)",
806       hwb: "hwb(288.1 33.3% 17.3%)",
807       cycle: 5,
808     },
809     {
810       authored: "mediumpurple",
811       name: "mediumpurple",
812       hex: "#9370db",
813       hsl: "hsl(259.6, 59.8%, 64.9%)",
814       rgb: "rgb(147, 112, 219)",
815       hwb: "hwb(259.6 43.9% 14.1%)",
816       cycle: 5,
817     },
818     {
819       authored: "mediumseagreen",
820       name: "mediumseagreen",
821       hex: "#3cb371",
822       hsl: "hsl(146.7, 49.8%, 46.9%)",
823       rgb: "rgb(60, 179, 113)",
824       hwb: "hwb(146.7 23.5% 29.8%)",
825       cycle: 5,
826     },
827     {
828       authored: "mediumslateblue",
829       name: "mediumslateblue",
830       hex: "#7b68ee",
831       hsl: "hsl(248.5, 79.8%, 67.1%)",
832       rgb: "rgb(123, 104, 238)",
833       hwb: "hwb(248.5 40.8% 6.7%)",
834       cycle: 5,
835     },
836     {
837       authored: "mediumspringgreen",
838       name: "mediumspringgreen",
839       hex: "#00fa9a",
840       hsl: "hsl(157, 100%, 49%)",
841       rgb: "rgb(0, 250, 154)",
842       hwb: "hwb(157 0% 2%)",
843       cycle: 5,
844     },
845     {
846       authored: "mediumturquoise",
847       name: "mediumturquoise",
848       hex: "#48d1cc",
849       hsl: "hsl(177.8, 59.8%, 55.1%)",
850       rgb: "rgb(72, 209, 204)",
851       hwb: "hwb(177.8 28.2% 18%)",
852       cycle: 5,
853     },
854     {
855       authored: "mediumvioletred",
856       name: "mediumvioletred",
857       hex: "#c71585",
858       hsl: "hsl(322.2, 80.9%, 43.1%)",
859       rgb: "rgb(199, 21, 133)",
860       hwb: "hwb(322.2 8.2% 22%)",
861       cycle: 5,
862     },
863     {
864       authored: "midnightblue",
865       name: "midnightblue",
866       hex: "#191970",
867       hsl: "hsl(240, 63.5%, 26.9%)",
868       rgb: "rgb(25, 25, 112)",
869       hwb: "hwb(240 9.8% 56.1%)",
870       cycle: 5,
871     },
872     {
873       authored: "mintcream",
874       name: "mintcream",
875       hex: "#f5fffa",
876       hsl: "hsl(150, 100%, 98%)",
877       rgb: "rgb(245, 255, 250)",
878       hwb: "hwb(150 96.1% 0%)",
879       cycle: 5,
880     },
881     {
882       authored: "mistyrose",
883       name: "mistyrose",
884       hex: "#ffe4e1",
885       hsl: "hsl(6, 100%, 94.1%)",
886       rgb: "rgb(255, 228, 225)",
887       hwb: "hwb(6 88.2% 0%)",
888       cycle: 5,
889     },
890     {
891       authored: "moccasin",
892       name: "moccasin",
893       hex: "#ffe4b5",
894       hsl: "hsl(38.1, 100%, 85.5%)",
895       rgb: "rgb(255, 228, 181)",
896       hwb: "hwb(38.1 71% 0%)",
897       cycle: 5,
898     },
899     {
900       authored: "navajowhite",
901       name: "navajowhite",
902       hex: "#ffdead",
903       hsl: "hsl(35.9, 100%, 83.9%)",
904       rgb: "rgb(255, 222, 173)",
905       hwb: "hwb(35.9 67.8% 0%)",
906       cycle: 5,
907     },
908     {
909       authored: "navy",
910       name: "navy",
911       hex: "#000080",
912       hsl: "hsl(240, 100%, 25.1%)",
913       rgb: "rgb(0, 0, 128)",
914       hwb: "hwb(240 0% 49.8%)",
915       cycle: 5,
916     },
917     {
918       authored: "oldlace",
919       name: "oldlace",
920       hex: "#fdf5e6",
921       hsl: "hsl(39.1, 85.2%, 94.7%)",
922       rgb: "rgb(253, 245, 230)",
923       hwb: "hwb(39.1 90.2% 0.8%)",
924       cycle: 5,
925     },
926     {
927       authored: "olive",
928       name: "olive",
929       hex: "#808000",
930       hsl: "hsl(60, 100%, 25.1%)",
931       rgb: "rgb(128, 128, 0)",
932       hwb: "hwb(60 0% 49.8%)",
933       cycle: 5,
934     },
935     {
936       authored: "olivedrab",
937       name: "olivedrab",
938       hex: "#6b8e23",
939       hsl: "hsl(79.6, 60.5%, 34.7%)",
940       rgb: "rgb(107, 142, 35)",
941       hwb: "hwb(79.6 13.7% 44.3%)",
942       cycle: 5,
943     },
944     {
945       authored: "orange",
946       name: "orange",
947       hex: "#ffa500",
948       hsl: "hsl(38.8, 100%, 50%)",
949       rgb: "rgb(255, 165, 0)",
950       hwb: "hwb(38.8 0% 0%)",
951       cycle: 5,
952     },
953     {
954       authored: "orangered",
955       name: "orangered",
956       hex: "#ff4500",
957       hsl: "hsl(16.2, 100%, 50%)",
958       rgb: "rgb(255, 69, 0)",
959       hwb: "hwb(16.2 0% 0%)",
960       cycle: 5,
961     },
962     {
963       authored: "orchid",
964       name: "orchid",
965       hex: "#da70d6",
966       hsl: "hsl(302.3, 58.9%, 64.7%)",
967       rgb: "rgb(218, 112, 214)",
968       hwb: "hwb(302.3 43.9% 14.5%)",
969       cycle: 5,
970     },
971     {
972       authored: "palegoldenrod",
973       name: "palegoldenrod",
974       hex: "#eee8aa",
975       hsl: "hsl(54.7, 66.7%, 80%)",
976       rgb: "rgb(238, 232, 170)",
977       hwb: "hwb(54.7 66.7% 6.7%)",
978       cycle: 5,
979     },
980     {
981       authored: "palegreen",
982       name: "palegreen",
983       hex: "#98fb98",
984       hsl: "hsl(120, 92.5%, 79%)",
985       rgb: "rgb(152, 251, 152)",
986       hwb: "hwb(120 59.6% 1.6%)",
987       cycle: 5,
988     },
989     {
990       authored: "paleturquoise",
991       name: "paleturquoise",
992       hex: "#afeeee",
993       hsl: "hsl(180, 64.9%, 81%)",
994       rgb: "rgb(175, 238, 238)",
995       hwb: "hwb(180 68.6% 6.7%)",
996       cycle: 5,
997     },
998     {
999       authored: "palevioletred",
1000       name: "palevioletred",
1001       hex: "#db7093",
1002       hsl: "hsl(340.4, 59.8%, 64.9%)",
1003       rgb: "rgb(219, 112, 147)",
1004       hwb: "hwb(340.4 43.9% 14.1%)",
1005       cycle: 5,
1006     },
1007     {
1008       authored: "papayawhip",
1009       name: "papayawhip",
1010       hex: "#ffefd5",
1011       hsl: "hsl(37.1, 100%, 91.8%)",
1012       rgb: "rgb(255, 239, 213)",
1013       hwb: "hwb(37.1 83.5% 0%)",
1014       cycle: 5,
1015     },
1016     {
1017       authored: "peachpuff",
1018       name: "peachpuff",
1019       hex: "#ffdab9",
1020       hsl: "hsl(28.3, 100%, 86.3%)",
1021       rgb: "rgb(255, 218, 185)",
1022       hwb: "hwb(28.3 72.5% 0%)",
1023       cycle: 5,
1024     },
1025     {
1026       authored: "peru",
1027       name: "peru",
1028       hex: "#cd853f",
1029       hsl: "hsl(29.6, 58.7%, 52.5%)",
1030       rgb: "rgb(205, 133, 63)",
1031       hwb: "hwb(29.6 24.7% 19.6%)",
1032       cycle: 5,
1033     },
1034     {
1035       authored: "pink",
1036       name: "pink",
1037       hex: "#ffc0cb",
1038       hsl: "hsl(349.5, 100%, 87.6%)",
1039       rgb: "rgb(255, 192, 203)",
1040       hwb: "hwb(349.5 75.3% 0%)",
1041       cycle: 5,
1042     },
1043     {
1044       authored: "plum",
1045       name: "plum",
1046       hex: "#dda0dd",
1047       hsl: "hsl(300, 47.3%, 74.7%)",
1048       rgb: "rgb(221, 160, 221)",
1049       hwb: "hwb(300 62.7% 13.3%)",
1050       cycle: 5,
1051     },
1052     {
1053       authored: "powderblue",
1054       name: "powderblue",
1055       hex: "#b0e0e6",
1056       hsl: "hsl(186.7, 51.9%, 79.6%)",
1057       rgb: "rgb(176, 224, 230)",
1058       hwb: "hwb(186.7 69% 9.8%)",
1059       cycle: 5,
1060     },
1061     {
1062       authored: "purple",
1063       name: "purple",
1064       hex: "#800080",
1065       hsl: "hsl(300, 100%, 25.1%)",
1066       rgb: "rgb(128, 0, 128)",
1067       hwb: "hwb(300 0% 49.8%)",
1068       cycle: 5,
1069     },
1070     {
1071       authored: "rebeccapurple",
1072       name: "rebeccapurple",
1073       hex: "#639",
1074       hsl: "hsl(270, 50%, 40%)",
1075       rgb: "rgb(102, 51, 153)",
1076       hwb: "hwb(270 20% 40%)",
1077       cycle: 5,
1078     },
1079     {
1080       authored: "red",
1081       name: "red",
1082       hex: "#f00",
1083       hsl: "hsl(0, 100%, 50%)",
1084       rgb: "rgb(255, 0, 0)",
1085       hwb: "hwb(0 0% 0%)",
1086       cycle: 5,
1087     },
1088     {
1089       authored: "rosybrown",
1090       name: "rosybrown",
1091       hex: "#bc8f8f",
1092       hsl: "hsl(0, 25.1%, 64.9%)",
1093       rgb: "rgb(188, 143, 143)",
1094       hwb: "hwb(0 56.1% 26.3%)",
1095       cycle: 5,
1096     },
1097     {
1098       authored: "royalblue",
1099       name: "royalblue",
1100       hex: "#4169e1",
1101       hsl: "hsl(225, 72.7%, 56.9%)",
1102       rgb: "rgb(65, 105, 225)",
1103       hwb: "hwb(225 25.5% 11.8%)",
1104       cycle: 5,
1105     },
1106     {
1107       authored: "saddlebrown",
1108       name: "saddlebrown",
1109       hex: "#8b4513",
1110       hsl: "hsl(25, 75.9%, 31%)",
1111       rgb: "rgb(139, 69, 19)",
1112       hwb: "hwb(25 7.5% 45.5%)",
1113       cycle: 5,
1114     },
1115     {
1116       authored: "salmon",
1117       name: "salmon",
1118       hex: "#fa8072",
1119       hsl: "hsl(6.2, 93.2%, 71.4%)",
1120       rgb: "rgb(250, 128, 114)",
1121       hwb: "hwb(6.2 44.7% 2%)",
1122       cycle: 5,
1123     },
1124     {
1125       authored: "sandybrown",
1126       name: "sandybrown",
1127       hex: "#f4a460",
1128       hsl: "hsl(27.6, 87.1%, 66.7%)",
1129       rgb: "rgb(244, 164, 96)",
1130       hwb: "hwb(27.6 37.6% 4.3%)",
1131       cycle: 5,
1132     },
1133     {
1134       authored: "seagreen",
1135       name: "seagreen",
1136       hex: "#2e8b57",
1137       hsl: "hsl(146.5, 50.3%, 36.3%)",
1138       rgb: "rgb(46, 139, 87)",
1139       hwb: "hwb(146.5 18% 45.5%)",
1140       cycle: 5,
1141     },
1142     {
1143       authored: "seashell",
1144       name: "seashell",
1145       hex: "#fff5ee",
1146       hsl: "hsl(24.7, 100%, 96.7%)",
1147       rgb: "rgb(255, 245, 238)",
1148       hwb: "hwb(24.7 93.3% 0%)",
1149       cycle: 5,
1150     },
1151     {
1152       authored: "sienna",
1153       name: "sienna",
1154       hex: "#a0522d",
1155       hsl: "hsl(19.3, 56.1%, 40.2%)",
1156       rgb: "rgb(160, 82, 45)",
1157       hwb: "hwb(19.3 17.6% 37.3%)",
1158       cycle: 5,
1159     },
1160     {
1161       authored: "silver",
1162       name: "silver",
1163       hex: "#c0c0c0",
1164       hsl: "hsl(0, 0%, 75.3%)",
1165       rgb: "rgb(192, 192, 192)",
1166       hwb: "hwb(0 75.3% 24.7%)",
1167       cycle: 5,
1168     },
1169     {
1170       authored: "skyblue",
1171       name: "skyblue",
1172       hex: "#87ceeb",
1173       hsl: "hsl(197.4, 71.4%, 72.5%)",
1174       rgb: "rgb(135, 206, 235)",
1175       hwb: "hwb(197.4 52.9% 7.8%)",
1176       cycle: 5,
1177     },
1178     {
1179       authored: "slateblue",
1180       name: "slateblue",
1181       hex: "#6a5acd",
1182       hsl: "hsl(248.3, 53.5%, 57.8%)",
1183       rgb: "rgb(106, 90, 205)",
1184       hwb: "hwb(248.3 35.3% 19.6%)",
1185       cycle: 5,
1186     },
1187     {
1188       authored: "slategray",
1189       name: "slategray",
1190       hex: "#708090",
1191       hsl: "hsl(210, 12.6%, 50.2%)",
1192       rgb: "rgb(112, 128, 144)",
1193       hwb: "hwb(210 43.9% 43.5%)",
1194       cycle: 5,
1195     },
1196     {
1197       authored: "slategrey",
1198       name: "slategray",
1199       hex: "#708090",
1200       hsl: "hsl(210, 12.6%, 50.2%)",
1201       rgb: "rgb(112, 128, 144)",
1202       hwb: "hwb(210 43.9% 43.5%)",
1203       cycle: 5,
1204     },
1205     {
1206       authored: "snow",
1207       name: "snow",
1208       hex: "#fffafa",
1209       hsl: "hsl(0, 100%, 99%)",
1210       rgb: "rgb(255, 250, 250)",
1211       hwb: "hwb(0 98% 0%)",
1212       cycle: 5,
1213     },
1214     {
1215       authored: "springgreen",
1216       name: "springgreen",
1217       hex: "#00ff7f",
1218       hsl: "hsl(149.9, 100%, 50%)",
1219       rgb: "rgb(0, 255, 127)",
1220       hwb: "hwb(149.9 0% 0%)",
1221       cycle: 5,
1222     },
1223     {
1224       authored: "steelblue",
1225       name: "steelblue",
1226       hex: "#4682b4",
1227       hsl: "hsl(207.3, 44%, 49%)",
1228       rgb: "rgb(70, 130, 180)",
1229       hwb: "hwb(207.3 27.5% 29.4%)",
1230       cycle: 5,
1231     },
1232     {
1233       authored: "tan",
1234       name: "tan",
1235       hex: "#d2b48c",
1236       hsl: "hsl(34.3, 43.7%, 68.6%)",
1237       rgb: "rgb(210, 180, 140)",
1238       hwb: "hwb(34.3 54.9% 17.6%)",
1239       cycle: 5,
1240     },
1241     {
1242       authored: "teal",
1243       name: "teal",
1244       hex: "#008080",
1245       hsl: "hsl(180, 100%, 25.1%)",
1246       rgb: "rgb(0, 128, 128)",
1247       hwb: "hwb(180 0% 49.8%)",
1248       cycle: 5,
1249     },
1250     {
1251       authored: "thistle",
1252       name: "thistle",
1253       hex: "#d8bfd8",
1254       hsl: "hsl(300, 24.3%, 79.8%)",
1255       rgb: "rgb(216, 191, 216)",
1256       hwb: "hwb(300 74.9% 15.3%)",
1257       cycle: 5,
1258     },
1259     {
1260       authored: "tomato",
1261       name: "tomato",
1262       hex: "#ff6347",
1263       hsl: "hsl(9.1, 100%, 63.9%)",
1264       rgb: "rgb(255, 99, 71)",
1265       hwb: "hwb(9.1 27.8% 0%)",
1266       cycle: 5,
1267     },
1268     {
1269       authored: "turquoise",
1270       name: "turquoise",
1271       hex: "#40e0d0",
1272       hsl: "hsl(174, 72.1%, 56.5%)",
1273       rgb: "rgb(64, 224, 208)",
1274       hwb: "hwb(174 25.1% 12.2%)",
1275       cycle: 5,
1276     },
1277     {
1278       authored: "violet",
1279       name: "violet",
1280       hex: "#ee82ee",
1281       hsl: "hsl(300, 76.1%, 72.2%)",
1282       rgb: "rgb(238, 130, 238)",
1283       hwb: "hwb(300 51% 6.7%)",
1284       cycle: 5,
1285     },
1286     {
1287       authored: "wheat",
1288       name: "wheat",
1289       hex: "#f5deb3",
1290       hsl: "hsl(39.1, 76.7%, 83.1%)",
1291       rgb: "rgb(245, 222, 179)",
1292       hwb: "hwb(39.1 70.2% 3.9%)",
1293       cycle: 5,
1294     },
1295     {
1296       authored: "white",
1297       name: "white",
1298       hex: "#fff",
1299       hsl: "hsl(0, 0%, 100%)",
1300       rgb: "rgb(255, 255, 255)",
1301       hwb: "hwb(0 100% 0%)",
1302       cycle: 5,
1303     },
1304     {
1305       authored: "whitesmoke",
1306       name: "whitesmoke",
1307       hex: "#f5f5f5",
1308       hsl: "hsl(0, 0%, 96.1%)",
1309       rgb: "rgb(245, 245, 245)",
1310       hwb: "hwb(0 96.1% 3.9%)",
1311       cycle: 5,
1312     },
1313     {
1314       authored: "yellow",
1315       name: "yellow",
1316       hex: "#ff0",
1317       hsl: "hsl(60, 100%, 50%)",
1318       rgb: "rgb(255, 255, 0)",
1319       hwb: "hwb(60 0% 0%)",
1320       cycle: 5,
1321     },
1322     {
1323       authored: "yellowgreen",
1324       name: "yellowgreen",
1325       hex: "#9acd32",
1326       hsl: "hsl(79.7, 60.8%, 50%)",
1327       rgb: "rgb(154, 205, 50)",
1328       hwb: "hwb(79.7 19.6% 19.6%)",
1329       cycle: 5,
1330     },
1331     {
1332       authored: "rgba(0, 0, 0, 0)",
1333       name: "#0000",
1334       hex: "#0000",
1335       hsl: "hsla(0, 0%, 0%, 0)",
1336       rgb: "rgba(0, 0, 0, 0)",
1337       hwb: "hwb(0 0% 100% / 0)",
1338       cycle: 4,
1339     },
1340     {
1341       authored: "hsla(0, 0%, 0%, 0)",
1342       name: "#0000",
1343       hex: "#0000",
1344       hsl: "hsla(0, 0%, 0%, 0)",
1345       rgb: "rgba(0, 0, 0, 0)",
1346       hwb: "hwb(0 0% 100% / 0)",
1347       cycle: 4,
1348     },
1349     {
1350       authored: "rgba(50, 60, 70, 0.5)",
1351       name: "#323c4680",
1352       hex: "#323c4680",
1353       hsl: "hsla(210, 16.7%, 23.5%, 0.5)",
1354       rgb: "rgba(50, 60, 70, 0.5)",
1355       hwb: "hwb(210 19.6% 72.5% / 0.5)",
1356       cycle: 4,
1357     },
1358     {
1359       authored: "rgba(0, 0, 0, 0.3)",
1360       name: "#0000004d",
1361       hex: "#0000004d",
1362       hsl: "hsla(0, 0%, 0%, 0.3)",
1363       rgb: "rgba(0, 0, 0, 0.3)",
1364       hwb: "hwb(0 0% 100% / 0.3)",
1365       cycle: 4,
1366     },
1367     {
1368       authored: "rgba(255, 255, 255, 0.6)",
1369       name: "#fff9",
1370       hex: "#fff9",
1371       hsl: "hsla(0, 0%, 100%, 0.6)",
1372       rgb: "rgba(255, 255, 255, 0.6)",
1373       hwb: "hwb(0 100% 0% / 0.6)",
1374       cycle: 4,
1375     },
1376     {
1377       authored: "rgba(127, 89, 45, 1)",
1378       name: "#7f592d",
1379       hex: "#7f592d",
1380       hsl: "hsl(32.2, 47.7%, 33.7%)",
1381       rgb: "rgb(127, 89, 45)",
1382       hwb: "hwb(32.2 17.6% 50.2%)",
1383       cycle: 4,
1384     },
1385     {
1386       authored: "hsla(19.304, 56%, 40%, 1)",
1387       name: "#9f522d",
1388       hex: "#9f522d",
1389       hsl: "hsl(19.5, 55.9%, 40%)",
1390       rgb: "rgb(159, 82, 45)",
1391       hwb: "hwb(19.5 17.6% 37.6%)",
1392       cycle: 4,
1393     },
1394     {
1395       authored: "#f089",
1396       name: "#f089",
1397       hex: "#f089",
1398       hsl: "hsla(328, 100%, 50%, 0.6)",
1399       rgb: "rgba(255, 0, 136, 0.6)",
1400       hwb: "hwb(328 0% 0% / 0.6)",
1401       cycle: 4,
1402     },
1403     {
1404       authored: "#00ff8080",
1405       name: "#00ff8080",
1406       hex: "#00ff8080",
1407       hsl: "hsla(150.1, 100%, 50%, 0.5)",
1408       rgb: "rgba(0, 255, 128, 0.5)",
1409       hwb: "hwb(150.1 0% 0% / 0.5)",
1410       cycle: 4,
1411     },
1412     {
1413       authored: "#aaaaaa08",
1414       name: "#aaaaaa08",
1415       hex: "#aaaaaa08",
1416       hsl: "hsla(0, 0%, 66.7%, 0.03)",
1417       rgb: "rgba(170, 170, 170, 0.03)",
1418       hwb: "hwb(0 66.7% 33.3% / 0.03)",
1419     },
1420     {
1421       authored: "currentcolor",
1422       name: "currentcolor",
1423       hex: "currentcolor",
1424       hsl: "currentcolor",
1425       rgb: "currentcolor",
1426       hwb: "currentcolor",
1427       cycle: false,
1428     },
1429     {
1430       authored: "inherit",
1431       name: "inherit",
1432       hex: "inherit",
1433       hsl: "inherit",
1434       rgb: "inherit",
1435       hwb: "inherit",
1436       cycle: false,
1437     },
1438     {
1439       authored: "initial",
1440       name: "initial",
1441       hex: "initial",
1442       hsl: "initial",
1443       rgb: "initial",
1444       hwb: "initial",
1445       cycle: false,
1446     },
1447     {
1448       authored: "invalidColor",
1449       name: "",
1450       hex: "",
1451       hsl: "",
1452       rgb: "",
1453       hwb: "",
1454       cycle: false,
1455     },
1456     {
1457       authored: "transparent",
1458       name: "transparent",
1459       hex: "transparent",
1460       hsl: "transparent",
1461       rgb: "transparent",
1462       hwb: "transparent",
1463       cycle: false,
1464     },
1465     {
1466       authored: "unset",
1467       name: "unset",
1468       hex: "unset",
1469       hsl: "unset",
1470       rgb: "unset",
1471       hwb: "unset",
1472       cycle: false,
1473     },
1474     {
1475       authored: "currentcolor",
1476       name: "currentcolor",
1477       hex: "currentcolor",
1478       hsl: "currentcolor",
1479       rgb: "currentcolor",
1480       hwb: "currentcolor",
1481       cycle: false,
1482     },
1483     {
1484       authored: "accentcolor",
1485       name: "",
1486       hex: "",
1487       hsl: "",
1488       rgb: "",
1489       hwg: "",
1490       cycle: false,
1491     },
1492   ];
1494 /* eslint-enable max-len */
1496 // Allow this function to be shared on mochitests and xpcshell tests.
1497 if (typeof module === "object") {
1498   module.exports = getFixtureColorData;