@automattic/vip-design-system 1.2.3 → 1.3.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 (232) hide show
  1. package/.eslintignore +2 -1
  2. package/.prettierignore +1 -0
  3. package/.storybook/decorators/withBoundingBox.tsx +30 -4
  4. package/.storybook/decorators/withColorMode.tsx +5 -5
  5. package/CONTRIBUTING.md +1 -1
  6. package/build/system/Accordion/Accordion.js +6 -6
  7. package/build/system/Accordion/Accordion.stories.js +1 -1
  8. package/build/system/Accordion/Accordion.test.js +7 -5
  9. package/build/system/Avatar/Avatar.js +3 -2
  10. package/build/system/Badge/Badge.js +1 -0
  11. package/build/system/Button/Button.d.ts +11 -0
  12. package/build/system/Button/Button.js +12 -1
  13. package/build/system/Button/Button.stories.d.ts +2 -1
  14. package/build/system/Button/Button.stories.js +1 -2
  15. package/build/system/Button/Button.test.js +72 -45
  16. package/build/system/Button/ButtonSubmit.d.ts +17 -1
  17. package/build/system/Button/ButtonSubmit.js +58 -65
  18. package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
  19. package/build/system/Button/ButtonSubmit.stories.js +52 -0
  20. package/build/system/Button/ButtonSubmit.test.js +55 -35
  21. package/build/system/Button/index.d.ts +7 -3
  22. package/build/system/Button/index.js +8 -7
  23. package/build/system/Dropdown/DropdownContent.js +1 -1
  24. package/build/system/Dropdown/DropdownItem.js +1 -1
  25. package/build/system/Dropdown/DropdownLabel.js +1 -1
  26. package/build/system/Form/Checkbox.d.ts +9 -9
  27. package/build/system/Form/Checkbox.js +56 -61
  28. package/build/system/Form/Checkbox.stories.d.ts +6 -6
  29. package/build/system/Form/Checkbox.stories.js +71 -0
  30. package/build/system/Form/Input.d.ts +14 -1
  31. package/build/system/Form/Input.js +59 -72
  32. package/build/system/Form/Input.stories.d.ts +6 -4
  33. package/build/system/Form/Input.stories.js +53 -0
  34. package/build/system/Form/Input.styles.d.ts +23 -14
  35. package/build/system/Form/Input.styles.js +40 -28
  36. package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
  37. package/build/system/Form/Label.d.ts +19 -8
  38. package/build/system/Form/Label.js +39 -43
  39. package/build/system/Form/Label.stories.d.ts +7 -5
  40. package/build/system/Form/Label.stories.js +32 -0
  41. package/build/system/Form/Radio.js +4 -4
  42. package/build/system/Form/Radio.stories.jsx +1 -1
  43. package/build/system/Form/RadioBoxGroup.js +1 -1
  44. package/build/system/Form/RequiredLabel.d.ts +2 -1
  45. package/build/system/Form/RequiredLabel.js +16 -7
  46. package/build/system/Form/Toggle.js +2 -2
  47. package/build/system/Form/Validation.d.ts +8 -13
  48. package/build/system/Form/Validation.js +39 -35
  49. package/build/system/Heading/Heading.stories.js +3 -0
  50. package/build/system/Link/Link.js +1 -1
  51. package/build/system/NewDialog/DialogClose.js +2 -2
  52. package/build/system/NewDialog/DialogContent.js +3 -3
  53. package/build/system/NewDialog/DialogTitle.js +3 -1
  54. package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
  55. package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
  56. package/build/system/NewForm/Fieldset.d.ts +12 -1
  57. package/build/system/NewForm/Fieldset.js +38 -40
  58. package/build/system/NewForm/Form.d.ts +8 -1
  59. package/build/system/NewForm/Form.js +24 -23
  60. package/build/system/NewForm/FormAutocomplete.css +0 -11
  61. package/build/system/NewForm/FormAutocomplete.js +8 -8
  62. package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  63. package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  64. package/build/system/NewForm/FormSelect.js +1 -1
  65. package/build/system/NewForm/FormSelectArrow.js +1 -1
  66. package/build/system/NewForm/FormSelectInline.js +1 -1
  67. package/build/system/NewForm/FormSelectLoading.js +1 -1
  68. package/build/system/NewForm/FormSelectSearch.js +2 -2
  69. package/build/system/NewForm/Legend.d.ts +12 -1
  70. package/build/system/NewForm/Legend.js +32 -34
  71. package/build/system/NewForm/index.d.ts +1 -1
  72. package/build/system/OptionRow/OptionRow.js +1 -1
  73. package/build/system/Progress/Progress.d.ts +9 -2
  74. package/build/system/Progress/Progress.js +75 -70
  75. package/build/system/Progress/Progress.stories.d.ts +9 -7
  76. package/build/system/Progress/Progress.stories.js +34 -0
  77. package/build/system/Progress/Progress.test.d.ts +1 -0
  78. package/build/system/Progress/Progress.test.js +65 -0
  79. package/build/system/Progress/index.d.ts +4 -2
  80. package/build/system/Progress/index.js +5 -5
  81. package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
  82. package/build/system/Tabs/TabsTrigger.js +0 -1
  83. package/build/system/Text/Text.js +1 -1
  84. package/build/system/Text/Text.stories.js +36 -0
  85. package/build/system/Tooltip/Tooltip.css +6 -2
  86. package/build/system/Tooltip/Tooltip.stories.js +2 -2
  87. package/build/system/Wizard/Wizard.d.ts +14 -1
  88. package/build/system/Wizard/Wizard.js +62 -93
  89. package/build/system/Wizard/Wizard.stories.d.ts +11 -8
  90. package/build/system/Wizard/Wizard.stories.js +167 -0
  91. package/build/system/Wizard/WizardStep.d.ts +24 -1
  92. package/build/system/Wizard/WizardStep.js +180 -190
  93. package/build/system/Wizard/index.d.ts +4 -2
  94. package/build/system/Wizard/index.js +6 -7
  95. package/build/system/index.d.ts +2 -2
  96. package/build/system/index.js +2 -1
  97. package/build/system/theme/generated/valet-theme-dark.json +1219 -476
  98. package/build/system/theme/generated/valet-theme-light.json +1217 -474
  99. package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
  100. package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
  101. package/build/system/theme/index.d.ts +20 -65
  102. package/build/system/theme/index.js +27 -57
  103. package/package.json +4 -4
  104. package/src/system/Accordion/Accordion.stories.tsx +1 -1
  105. package/src/system/Accordion/Accordion.test.tsx +3 -0
  106. package/src/system/Accordion/Accordion.tsx +6 -6
  107. package/src/system/Avatar/Avatar.tsx +3 -3
  108. package/src/system/Badge/Badge.tsx +1 -1
  109. package/src/system/Button/Button.stories.tsx +2 -3
  110. package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
  111. package/src/system/Button/Button.tsx +12 -0
  112. package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
  113. package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
  114. package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
  115. package/src/system/Button/index.ts +8 -0
  116. package/src/system/Dropdown/DropdownContent.js +1 -1
  117. package/src/system/Dropdown/DropdownItem.js +1 -1
  118. package/src/system/Dropdown/DropdownLabel.js +1 -1
  119. package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
  120. package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
  121. package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
  122. package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
  123. package/src/system/Form/{Input.js → Input.tsx} +10 -19
  124. package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
  125. package/src/system/Form/{Label.js → Label.tsx} +8 -13
  126. package/src/system/Form/Radio.js +4 -4
  127. package/src/system/Form/Radio.stories.jsx +1 -1
  128. package/src/system/Form/RadioBoxGroup.js +1 -1
  129. package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
  130. package/src/system/Form/Toggle.js +2 -2
  131. package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
  132. package/src/system/Heading/Heading.stories.tsx +1 -0
  133. package/src/system/Link/Link.tsx +1 -1
  134. package/src/system/NewDialog/DialogClose.js +2 -2
  135. package/src/system/NewDialog/DialogContent.js +3 -3
  136. package/src/system/NewDialog/DialogTitle.js +3 -1
  137. package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
  138. package/src/system/NewForm/Fieldset.tsx +46 -0
  139. package/src/system/NewForm/Form.tsx +23 -0
  140. package/src/system/NewForm/FormAutocomplete.css +0 -11
  141. package/src/system/NewForm/FormAutocomplete.js +8 -8
  142. package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  143. package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  144. package/src/system/NewForm/FormSelect.js +1 -1
  145. package/src/system/NewForm/FormSelectArrow.js +1 -1
  146. package/src/system/NewForm/FormSelectInline.js +1 -1
  147. package/src/system/NewForm/FormSelectLoading.js +1 -1
  148. package/src/system/NewForm/FormSelectSearch.js +2 -2
  149. package/src/system/NewForm/Legend.tsx +40 -0
  150. package/src/system/OptionRow/OptionRow.js +1 -1
  151. package/src/system/Progress/Progress.test.tsx +33 -0
  152. package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
  153. package/src/system/Progress/index.ts +4 -0
  154. package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
  155. package/src/system/Tabs/TabsTrigger.js +0 -1
  156. package/src/system/Text/Text.stories.tsx +7 -0
  157. package/src/system/Text/Text.tsx +1 -1
  158. package/src/system/Tooltip/Tooltip.css +6 -2
  159. package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
  160. package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
  161. package/src/system/Wizard/Wizard.tsx +62 -0
  162. package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
  163. package/src/system/Wizard/index.ts +7 -0
  164. package/src/system/index.js +2 -1
  165. package/src/system/theme/generated/valet-theme-dark.json +1219 -476
  166. package/src/system/theme/generated/valet-theme-light.json +1217 -474
  167. package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
  168. package/src/system/theme/index.js +27 -57
  169. package/tokens/utilities/colors/color output/blue.json +305 -0
  170. package/tokens/utilities/colors/color output/gold.json +305 -0
  171. package/tokens/utilities/colors/color output/gray.json +305 -0
  172. package/tokens/utilities/colors/color output/green.json +305 -0
  173. package/tokens/utilities/colors/color output/orange.json +305 -0
  174. package/tokens/utilities/colors/color output/pink.json +305 -0
  175. package/tokens/utilities/colors/color output/red.json +305 -0
  176. package/tokens/utilities/colors/color output/salmon.json +305 -0
  177. package/tokens/utilities/colors/color output/yellow.json +305 -0
  178. package/tokens/utilities/colors/colorOutput.json +4062 -0
  179. package/tokens/utilities/colors/color_3d_plot.js +43 -0
  180. package/tokens/utilities/colors/color_graph.js +31 -0
  181. package/tokens/utilities/colors/colors.json +1981 -0
  182. package/tokens/utilities/colors/index.js +118 -0
  183. package/tokens/utilities/colors/package-lock.json +6749 -0
  184. package/tokens/utilities/colors/package.json +21 -0
  185. package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
  186. package/tokens/valet-core/$metadata.json +19 -15
  187. package/tokens/valet-core/$themes.json +3323 -419
  188. package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
  189. package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
  190. package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
  191. package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
  192. package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
  193. package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
  194. package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
  195. package/tokens/valet-core/valet-core.json +331 -232
  196. package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
  197. package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
  198. package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
  199. package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
  200. package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
  201. package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
  202. package/tokens/valet-core/wpvip-services-web-type.json +412 -0
  203. package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
  204. package/tokens/valet-core/wpvip-web-color.json +730 -0
  205. package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
  206. package/tokens/valet-core/wpvip-web.json +1310 -0
  207. package/tsconfig.json +2 -1
  208. package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
  209. package/build/system/Button/variants.d.ts +0 -2
  210. package/build/system/Button/variants.js +0 -1
  211. package/build/system/Form/Checkbox.stories.jsx +0 -54
  212. package/build/system/Form/Input.stories.jsx +0 -38
  213. package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
  214. package/build/system/Wizard/WizardStepHorizontal.js +0 -55
  215. package/build/system/theme/textStyles.d.ts +0 -71
  216. package/build/system/theme/textStyles.js +0 -46
  217. package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
  218. package/src/system/Button/index.js +0 -8
  219. package/src/system/Button/variants.js +0 -1
  220. package/src/system/Form/Label.stories.jsx +0 -36
  221. package/src/system/NewForm/Fieldset.js +0 -47
  222. package/src/system/NewForm/Form.js +0 -26
  223. package/src/system/NewForm/Legend.js +0 -41
  224. package/src/system/Progress/Progress.stories.jsx +0 -25
  225. package/src/system/Progress/index.js +0 -6
  226. package/src/system/Wizard/Wizard.js +0 -103
  227. package/src/system/Wizard/Wizard.stories.jsx +0 -145
  228. package/src/system/Wizard/WizardStepHorizontal.js +0 -55
  229. package/src/system/Wizard/index.js +0 -8
  230. package/src/system/theme/textStyles.js +0 -46
  231. /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
  232. /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
@@ -0,0 +1,4062 @@
1
+ {
2
+ "gold": {
3
+ "0": {
4
+ "input": "#fcfafa",
5
+ "output": "#fcfafa"
6
+ },
7
+ "1": {
8
+ "input": null,
9
+ "output": "#faf7f7"
10
+ },
11
+ "2": {
12
+ "input": null,
13
+ "output": "#f7f4f4"
14
+ },
15
+ "3": {
16
+ "input": "#f5f2f1",
17
+ "output": "#f5f2f1"
18
+ },
19
+ "4": {
20
+ "input": null,
21
+ "output": "#f3f0ee"
22
+ },
23
+ "5": {
24
+ "input": null,
25
+ "output": "#f1eeeb"
26
+ },
27
+ "6": {
28
+ "input": null,
29
+ "output": "#f0ece8"
30
+ },
31
+ "7": {
32
+ "input": "#eeeae5",
33
+ "output": "#eeeae5"
34
+ },
35
+ "8": {
36
+ "input": null,
37
+ "output": "#ede8e2"
38
+ },
39
+ "9": {
40
+ "input": null,
41
+ "output": "#ebe6de"
42
+ },
43
+ "10": {
44
+ "input": "#eae3da",
45
+ "output": "#eae3da"
46
+ },
47
+ "11": {
48
+ "input": null,
49
+ "output": "#e9e0d4"
50
+ },
51
+ "12": {
52
+ "input": null,
53
+ "output": "#e7dccd"
54
+ },
55
+ "13": {
56
+ "input": null,
57
+ "output": "#e6d8c6"
58
+ },
59
+ "14": {
60
+ "input": null,
61
+ "output": "#e4d4bf"
62
+ },
63
+ "15": {
64
+ "input": "#e3d0b8",
65
+ "output": "#e3d0b8"
66
+ },
67
+ "16": {
68
+ "input": null,
69
+ "output": "#e2cdb2"
70
+ },
71
+ "17": {
72
+ "input": null,
73
+ "output": "#e1caad"
74
+ },
75
+ "18": {
76
+ "input": null,
77
+ "output": "#e0c8a8"
78
+ },
79
+ "19": {
80
+ "input": null,
81
+ "output": "#e0c5a3"
82
+ },
83
+ "20": {
84
+ "input": "#dfc39e",
85
+ "output": "#dfc39e"
86
+ },
87
+ "21": {
88
+ "input": null,
89
+ "output": "#dfc099"
90
+ },
91
+ "22": {
92
+ "input": null,
93
+ "output": "#debe93"
94
+ },
95
+ "23": {
96
+ "input": null,
97
+ "output": "#ddba8d"
98
+ },
99
+ "24": {
100
+ "input": null,
101
+ "output": "#ddb787"
102
+ },
103
+ "25": {
104
+ "input": "#dcb480",
105
+ "output": "#dcb480"
106
+ },
107
+ "26": {
108
+ "input": null,
109
+ "output": "#dbb179"
110
+ },
111
+ "27": {
112
+ "input": null,
113
+ "output": "#daad73"
114
+ },
115
+ "28": {
116
+ "input": null,
117
+ "output": "#d9aa6c"
118
+ },
119
+ "29": {
120
+ "input": null,
121
+ "output": "#d8a765"
122
+ },
123
+ "30": {
124
+ "input": "#d8a45f",
125
+ "output": "#d8a45f"
126
+ },
127
+ "31": {
128
+ "input": null,
129
+ "output": "#d8a259"
130
+ },
131
+ "32": {
132
+ "input": null,
133
+ "output": "#d99f53"
134
+ },
135
+ "33": {
136
+ "input": null,
137
+ "output": "#da9d4e"
138
+ },
139
+ "34": {
140
+ "input": null,
141
+ "output": "#da9c49"
142
+ },
143
+ "35": {
144
+ "input": "#da9a45",
145
+ "output": "#da9a45"
146
+ },
147
+ "36": {
148
+ "input": null,
149
+ "output": "#d99841"
150
+ },
151
+ "37": {
152
+ "input": null,
153
+ "output": "#d8973e"
154
+ },
155
+ "38": {
156
+ "input": null,
157
+ "output": "#d7953c"
158
+ },
159
+ "39": {
160
+ "input": null,
161
+ "output": "#d49339"
162
+ },
163
+ "40": {
164
+ "input": "#d29137",
165
+ "output": "#d29137"
166
+ },
167
+ "41": {
168
+ "input": null,
169
+ "output": "#cf8e34"
170
+ },
171
+ "42": {
172
+ "input": null,
173
+ "output": "#cd8b32"
174
+ },
175
+ "43": {
176
+ "input": null,
177
+ "output": "#ca882f"
178
+ },
179
+ "44": {
180
+ "input": null,
181
+ "output": "#c7862c"
182
+ },
183
+ "45": {
184
+ "input": "#c5832a",
185
+ "output": "#c5832a"
186
+ },
187
+ "46": {
188
+ "input": null,
189
+ "output": "#c38128"
190
+ },
191
+ "47": {
192
+ "input": null,
193
+ "output": "#c17f26"
194
+ },
195
+ "48": {
196
+ "input": null,
197
+ "output": "#bf7d24"
198
+ },
199
+ "49": {
200
+ "input": null,
201
+ "output": "#bd7b22"
202
+ },
203
+ "50": {
204
+ "input": "#ba7920",
205
+ "output": "#ba7920"
206
+ },
207
+ "51": {
208
+ "input": null,
209
+ "output": "#b6761d"
210
+ },
211
+ "52": {
212
+ "input": null,
213
+ "output": "#b2731b"
214
+ },
215
+ "53": {
216
+ "input": null,
217
+ "output": "#ae6f18"
218
+ },
219
+ "54": {
220
+ "input": null,
221
+ "output": "#aa6c16"
222
+ },
223
+ "55": {
224
+ "input": "#a66915",
225
+ "output": "#a66915"
226
+ },
227
+ "56": {
228
+ "input": null,
229
+ "output": "#a36715"
230
+ },
231
+ "57": {
232
+ "input": null,
233
+ "output": "#a06515"
234
+ },
235
+ "58": {
236
+ "input": null,
237
+ "output": "#9e6315"
238
+ },
239
+ "59": {
240
+ "input": null,
241
+ "output": "#9c6215"
242
+ },
243
+ "60": {
244
+ "input": "#9a6014",
245
+ "output": "#9a6014"
246
+ },
247
+ "61": {
248
+ "input": null,
249
+ "output": "#985e12"
250
+ },
251
+ "62": {
252
+ "input": null,
253
+ "output": "#955c0f"
254
+ },
255
+ "63": {
256
+ "input": null,
257
+ "output": "#92590c"
258
+ },
259
+ "64": {
260
+ "input": null,
261
+ "output": "#8f5609"
262
+ },
263
+ "65": {
264
+ "input": "#8c5407",
265
+ "output": "#8c5407"
266
+ },
267
+ "66": {
268
+ "input": null,
269
+ "output": "#895206"
270
+ },
271
+ "67": {
272
+ "input": null,
273
+ "output": "#854f07"
274
+ },
275
+ "68": {
276
+ "input": null,
277
+ "output": "#824d08"
278
+ },
279
+ "69": {
280
+ "input": null,
281
+ "output": "#7e4b09"
282
+ },
283
+ "70": {
284
+ "input": "#7a4909",
285
+ "output": "#7a4909"
286
+ },
287
+ "71": {
288
+ "input": null,
289
+ "output": "#764709"
290
+ },
291
+ "72": {
292
+ "input": null,
293
+ "output": "#724408"
294
+ },
295
+ "73": {
296
+ "input": "#6d4108",
297
+ "output": "#6d4108"
298
+ },
299
+ "74": {
300
+ "input": null,
301
+ "output": "#683d09"
302
+ },
303
+ "75": {
304
+ "input": "#633a0a",
305
+ "output": "#633a0a"
306
+ },
307
+ "76": {
308
+ "input": null,
309
+ "output": "#5f380b"
310
+ },
311
+ "77": {
312
+ "input": null,
313
+ "output": "#5b360b"
314
+ },
315
+ "78": {
316
+ "input": "#583409",
317
+ "output": "#583409"
318
+ },
319
+ "79": {
320
+ "input": null,
321
+ "output": "#553106"
322
+ },
323
+ "80": {
324
+ "input": "#522e03",
325
+ "output": "#522e03"
326
+ },
327
+ "81": {
328
+ "input": null,
329
+ "output": "#502c02"
330
+ },
331
+ "82": {
332
+ "input": null,
333
+ "output": "#4e2b03"
334
+ },
335
+ "83": {
336
+ "input": "#4a2903",
337
+ "output": "#4a2903"
338
+ },
339
+ "84": {
340
+ "input": null,
341
+ "output": "#452602"
342
+ },
343
+ "85": {
344
+ "input": "#3f2300",
345
+ "output": "#3f2300"
346
+ },
347
+ "86": {
348
+ "input": null,
349
+ "output": "#3a2000"
350
+ },
351
+ "87": {
352
+ "input": null,
353
+ "output": "#361e00"
354
+ },
355
+ "88": {
356
+ "input": "#331c00",
357
+ "output": "#331c00"
358
+ },
359
+ "89": {
360
+ "input": null,
361
+ "output": "#301a02"
362
+ },
363
+ "90": {
364
+ "input": "#2d1803",
365
+ "output": "#2d1803"
366
+ },
367
+ "91": {
368
+ "input": null,
369
+ "output": "#291603"
370
+ },
371
+ "92": {
372
+ "input": null,
373
+ "output": "#251402"
374
+ },
375
+ "93": {
376
+ "input": "#211202",
377
+ "output": "#211202"
378
+ },
379
+ "94": {
380
+ "input": null,
381
+ "output": "#1d1003"
382
+ },
383
+ "95": {
384
+ "input": "#1a0e04",
385
+ "output": "#1a0e04"
386
+ },
387
+ "96": {
388
+ "input": null,
389
+ "output": "#170c04"
390
+ },
391
+ "97": {
392
+ "input": null,
393
+ "output": "#150904"
394
+ },
395
+ "98": {
396
+ "input": null,
397
+ "output": "#120603"
398
+ },
399
+ "99": {
400
+ "input": null,
401
+ "output": "#110302"
402
+ },
403
+ "100": {
404
+ "input": "#0f0000",
405
+ "output": "#0f0000"
406
+ }
407
+ },
408
+ "gray": {
409
+ "0": {
410
+ "input": "#fbfbfb",
411
+ "output": "#fbfbfb"
412
+ },
413
+ "1": {
414
+ "input": null,
415
+ "output": "#f9f8f8"
416
+ },
417
+ "2": {
418
+ "input": null,
419
+ "output": "#f6f6f5"
420
+ },
421
+ "3": {
422
+ "input": "#f4f3f2",
423
+ "output": "#f4f3f2"
424
+ },
425
+ "4": {
426
+ "input": null,
427
+ "output": "#f2f1ef"
428
+ },
429
+ "5": {
430
+ "input": null,
431
+ "output": "#f0eeed"
432
+ },
433
+ "6": {
434
+ "input": null,
435
+ "output": "#edeceb"
436
+ },
437
+ "7": {
438
+ "input": "#ebe9e8",
439
+ "output": "#ebe9e8"
440
+ },
441
+ "8": {
442
+ "input": null,
443
+ "output": "#e8e6e5"
444
+ },
445
+ "9": {
446
+ "input": null,
447
+ "output": "#e6e3e2"
448
+ },
449
+ "10": {
450
+ "input": "#e3e0df",
451
+ "output": "#e3e0df"
452
+ },
453
+ "11": {
454
+ "input": null,
455
+ "output": "#e0dddc"
456
+ },
457
+ "12": {
458
+ "input": null,
459
+ "output": "#dedbda"
460
+ },
461
+ "13": {
462
+ "input": null,
463
+ "output": "#dcd9d8"
464
+ },
465
+ "14": {
466
+ "input": null,
467
+ "output": "#d9d6d5"
468
+ },
469
+ "15": {
470
+ "input": "#d7d4d3",
471
+ "output": "#d7d4d3"
472
+ },
473
+ "16": {
474
+ "input": null,
475
+ "output": "#d5d1d0"
476
+ },
477
+ "17": {
478
+ "input": null,
479
+ "output": "#d2cfce"
480
+ },
481
+ "18": {
482
+ "input": null,
483
+ "output": "#d0cccb"
484
+ },
485
+ "19": {
486
+ "input": null,
487
+ "output": "#cdc9c8"
488
+ },
489
+ "20": {
490
+ "input": "#cbc7c6",
491
+ "output": "#cbc7c6"
492
+ },
493
+ "21": {
494
+ "input": null,
495
+ "output": "#c9c5c4"
496
+ },
497
+ "22": {
498
+ "input": null,
499
+ "output": "#c6c3c2"
500
+ },
501
+ "23": {
502
+ "input": null,
503
+ "output": "#c4c0bf"
504
+ },
505
+ "24": {
506
+ "input": null,
507
+ "output": "#c1bebd"
508
+ },
509
+ "25": {
510
+ "input": "#bfbcbb",
511
+ "output": "#bfbcbb"
512
+ },
513
+ "26": {
514
+ "input": null,
515
+ "output": "#bdb9b8"
516
+ },
517
+ "27": {
518
+ "input": null,
519
+ "output": "#bab7b6"
520
+ },
521
+ "28": {
522
+ "input": null,
523
+ "output": "#b8b4b3"
524
+ },
525
+ "29": {
526
+ "input": null,
527
+ "output": "#b5b1b0"
528
+ },
529
+ "30": {
530
+ "input": "#b3afae",
531
+ "output": "#b3afae"
532
+ },
533
+ "31": {
534
+ "input": null,
535
+ "output": "#b1adac"
536
+ },
537
+ "32": {
538
+ "input": null,
539
+ "output": "#aeabaa"
540
+ },
541
+ "33": {
542
+ "input": null,
543
+ "output": "#aca8a7"
544
+ },
545
+ "34": {
546
+ "input": null,
547
+ "output": "#a9a6a5"
548
+ },
549
+ "35": {
550
+ "input": "#a7a4a3",
551
+ "output": "#a7a4a3"
552
+ },
553
+ "36": {
554
+ "input": null,
555
+ "output": "#a5a1a0"
556
+ },
557
+ "37": {
558
+ "input": null,
559
+ "output": "#a29f9e"
560
+ },
561
+ "38": {
562
+ "input": null,
563
+ "output": "#a09c9b"
564
+ },
565
+ "39": {
566
+ "input": null,
567
+ "output": "#9d9a99"
568
+ },
569
+ "40": {
570
+ "input": "#9b9796",
571
+ "output": "#9b9796"
572
+ },
573
+ "41": {
574
+ "input": null,
575
+ "output": "#999594"
576
+ },
577
+ "42": {
578
+ "input": null,
579
+ "output": "#969392"
580
+ },
581
+ "43": {
582
+ "input": null,
583
+ "output": "#94908f"
584
+ },
585
+ "44": {
586
+ "input": null,
587
+ "output": "#918e8d"
588
+ },
589
+ "45": {
590
+ "input": "#8f8c8b",
591
+ "output": "#8f8c8b"
592
+ },
593
+ "46": {
594
+ "input": null,
595
+ "output": "#8c8a89"
596
+ },
597
+ "47": {
598
+ "input": null,
599
+ "output": "#8a8786"
600
+ },
601
+ "48": {
602
+ "input": null,
603
+ "output": "#878483"
604
+ },
605
+ "49": {
606
+ "input": null,
607
+ "output": "#858281"
608
+ },
609
+ "50": {
610
+ "input": "#827f7e",
611
+ "output": "#827f7e"
612
+ },
613
+ "51": {
614
+ "input": null,
615
+ "output": "#807c7b"
616
+ },
617
+ "52": {
618
+ "input": null,
619
+ "output": "#7d7a79"
620
+ },
621
+ "53": {
622
+ "input": null,
623
+ "output": "#7b7877"
624
+ },
625
+ "54": {
626
+ "input": null,
627
+ "output": "#787574"
628
+ },
629
+ "55": {
630
+ "input": "#767372",
631
+ "output": "#767372"
632
+ },
633
+ "56": {
634
+ "input": null,
635
+ "output": "#747170"
636
+ },
637
+ "57": {
638
+ "input": null,
639
+ "output": "#716e6d"
640
+ },
641
+ "58": {
642
+ "input": null,
643
+ "output": "#6f6c6b"
644
+ },
645
+ "59": {
646
+ "input": null,
647
+ "output": "#6c6968"
648
+ },
649
+ "60": {
650
+ "input": "#6a6766",
651
+ "output": "#6a6766"
652
+ },
653
+ "61": {
654
+ "input": null,
655
+ "output": "#686564"
656
+ },
657
+ "62": {
658
+ "input": null,
659
+ "output": "#656261"
660
+ },
661
+ "63": {
662
+ "input": null,
663
+ "output": "#63605f"
664
+ },
665
+ "64": {
666
+ "input": null,
667
+ "output": "#615e5d"
668
+ },
669
+ "65": {
670
+ "input": "#5e5b5a",
671
+ "output": "#5e5b5a"
672
+ },
673
+ "66": {
674
+ "input": null,
675
+ "output": "#5b5857"
676
+ },
677
+ "67": {
678
+ "input": null,
679
+ "output": "#585554"
680
+ },
681
+ "68": {
682
+ "input": null,
683
+ "output": "#555251"
684
+ },
685
+ "69": {
686
+ "input": null,
687
+ "output": "#53504f"
688
+ },
689
+ "70": {
690
+ "input": "#514e4d",
691
+ "output": "#514e4d"
692
+ },
693
+ "71": {
694
+ "input": null,
695
+ "output": "#504d4c"
696
+ },
697
+ "72": {
698
+ "input": null,
699
+ "output": "#4f4b4a"
700
+ },
701
+ "73": {
702
+ "input": "#4c4948",
703
+ "output": "#4c4948"
704
+ },
705
+ "74": {
706
+ "input": null,
707
+ "output": "#484544"
708
+ },
709
+ "75": {
710
+ "input": "#444140",
711
+ "output": "#444140"
712
+ },
713
+ "76": {
714
+ "input": null,
715
+ "output": "#423f3e"
716
+ },
717
+ "77": {
718
+ "input": null,
719
+ "output": "#413e3d"
720
+ },
721
+ "78": {
722
+ "input": "#3f3c3b",
723
+ "output": "#3f3c3b"
724
+ },
725
+ "79": {
726
+ "input": null,
727
+ "output": "#3c3938"
728
+ },
729
+ "80": {
730
+ "input": "#383635",
731
+ "output": "#383635"
732
+ },
733
+ "81": {
734
+ "input": null,
735
+ "output": "#363433"
736
+ },
737
+ "82": {
738
+ "input": null,
739
+ "output": "#343231"
740
+ },
741
+ "83": {
742
+ "input": "#32302f",
743
+ "output": "#32302f"
744
+ },
745
+ "84": {
746
+ "input": null,
747
+ "output": "#2f2d2c"
748
+ },
749
+ "85": {
750
+ "input": "#2c2a29",
751
+ "output": "#2c2a29"
752
+ },
753
+ "86": {
754
+ "input": null,
755
+ "output": "#2b2928"
756
+ },
757
+ "87": {
758
+ "input": null,
759
+ "output": "#2a2827"
760
+ },
761
+ "88": {
762
+ "input": "#282625",
763
+ "output": "#282625"
764
+ },
765
+ "89": {
766
+ "input": null,
767
+ "output": "#242221"
768
+ },
769
+ "90": {
770
+ "input": "#201e1d",
771
+ "output": "#201e1d"
772
+ },
773
+ "91": {
774
+ "input": null,
775
+ "output": "#1e1c1b"
776
+ },
777
+ "92": {
778
+ "input": null,
779
+ "output": "#1d1b1a"
780
+ },
781
+ "93": {
782
+ "input": "#1b1918",
783
+ "output": "#1b1918"
784
+ },
785
+ "94": {
786
+ "input": null,
787
+ "output": "#181615"
788
+ },
789
+ "95": {
790
+ "input": "#141110",
791
+ "output": "#141110"
792
+ },
793
+ "96": {
794
+ "input": null,
795
+ "output": "#100d0c"
796
+ },
797
+ "97": {
798
+ "input": null,
799
+ "output": "#0e0908"
800
+ },
801
+ "98": {
802
+ "input": null,
803
+ "output": "#0b0705"
804
+ },
805
+ "99": {
806
+ "input": null,
807
+ "output": "#090503"
808
+ },
809
+ "100": {
810
+ "input": "#080402",
811
+ "output": "#080402"
812
+ }
813
+ },
814
+ "green": {
815
+ "0": {
816
+ "input": "#f5fbf7",
817
+ "output": "#f5fbf7"
818
+ },
819
+ "1": {
820
+ "input": null,
821
+ "output": "#f1f9f4"
822
+ },
823
+ "2": {
824
+ "input": null,
825
+ "output": "#edf8f1"
826
+ },
827
+ "3": {
828
+ "input": "#e9f6ee",
829
+ "output": "#e9f6ee"
830
+ },
831
+ "4": {
832
+ "input": null,
833
+ "output": "#e5f4eb"
834
+ },
835
+ "5": {
836
+ "input": null,
837
+ "output": "#e1f2e7"
838
+ },
839
+ "6": {
840
+ "input": null,
841
+ "output": "#dcf1e3"
842
+ },
843
+ "7": {
844
+ "input": "#d7efdf",
845
+ "output": "#d7efdf"
846
+ },
847
+ "8": {
848
+ "input": null,
849
+ "output": "#d2edda"
850
+ },
851
+ "9": {
852
+ "input": null,
853
+ "output": "#ccecd5"
854
+ },
855
+ "10": {
856
+ "input": "#c6ead0",
857
+ "output": "#c6ead0"
858
+ },
859
+ "11": {
860
+ "input": null,
861
+ "output": "#c0e8cb"
862
+ },
863
+ "12": {
864
+ "input": null,
865
+ "output": "#bbe6c6"
866
+ },
867
+ "13": {
868
+ "input": null,
869
+ "output": "#b6e4c1"
870
+ },
871
+ "14": {
872
+ "input": null,
873
+ "output": "#b0e3bc"
874
+ },
875
+ "15": {
876
+ "input": "#aae1b7",
877
+ "output": "#aae1b7"
878
+ },
879
+ "16": {
880
+ "input": null,
881
+ "output": "#a4e0b2"
882
+ },
883
+ "17": {
884
+ "input": null,
885
+ "output": "#9ddeae"
886
+ },
887
+ "18": {
888
+ "input": null,
889
+ "output": "#96dda9"
890
+ },
891
+ "19": {
892
+ "input": null,
893
+ "output": "#8fdba4"
894
+ },
895
+ "20": {
896
+ "input": "#89daa0",
897
+ "output": "#89daa0"
898
+ },
899
+ "21": {
900
+ "input": null,
901
+ "output": "#83d89c"
902
+ },
903
+ "22": {
904
+ "input": null,
905
+ "output": "#7ed797"
906
+ },
907
+ "23": {
908
+ "input": null,
909
+ "output": "#78d593"
910
+ },
911
+ "24": {
912
+ "input": null,
913
+ "output": "#73d38f"
914
+ },
915
+ "25": {
916
+ "input": "#6dd18b",
917
+ "output": "#6dd18b"
918
+ },
919
+ "26": {
920
+ "input": null,
921
+ "output": "#67cf87"
922
+ },
923
+ "27": {
924
+ "input": null,
925
+ "output": "#60cd83"
926
+ },
927
+ "28": {
928
+ "input": null,
929
+ "output": "#59cb7f"
930
+ },
931
+ "29": {
932
+ "input": null,
933
+ "output": "#53c87c"
934
+ },
935
+ "30": {
936
+ "input": "#4dc679",
937
+ "output": "#4dc679"
938
+ },
939
+ "31": {
940
+ "input": null,
941
+ "output": "#49c477"
942
+ },
943
+ "32": {
944
+ "input": null,
945
+ "output": "#46c175"
946
+ },
947
+ "33": {
948
+ "input": null,
949
+ "output": "#44bf73"
950
+ },
951
+ "34": {
952
+ "input": null,
953
+ "output": "#42bd71"
954
+ },
955
+ "35": {
956
+ "input": "#40ba6f",
957
+ "output": "#40ba6f"
958
+ },
959
+ "36": {
960
+ "input": null,
961
+ "output": "#3eb76d"
962
+ },
963
+ "37": {
964
+ "input": null,
965
+ "output": "#3bb46a"
966
+ },
967
+ "38": {
968
+ "input": null,
969
+ "output": "#37b168"
970
+ },
971
+ "39": {
972
+ "input": null,
973
+ "output": "#34af65"
974
+ },
975
+ "40": {
976
+ "input": "#30ac63",
977
+ "output": "#30ac63"
978
+ },
979
+ "41": {
980
+ "input": null,
981
+ "output": "#2caa61"
982
+ },
983
+ "42": {
984
+ "input": null,
985
+ "output": "#29a75e"
986
+ },
987
+ "43": {
988
+ "input": null,
989
+ "output": "#25a55c"
990
+ },
991
+ "44": {
992
+ "input": null,
993
+ "output": "#21a35a"
994
+ },
995
+ "45": {
996
+ "input": "#1da158",
997
+ "output": "#1da158"
998
+ },
999
+ "46": {
1000
+ "input": null,
1001
+ "output": "#189f56"
1002
+ },
1003
+ "47": {
1004
+ "input": null,
1005
+ "output": "#129c54"
1006
+ },
1007
+ "48": {
1008
+ "input": null,
1009
+ "output": "#0c9952"
1010
+ },
1011
+ "49": {
1012
+ "input": null,
1013
+ "output": "#06974f"
1014
+ },
1015
+ "50": {
1016
+ "input": "#01944d",
1017
+ "output": "#01944d"
1018
+ },
1019
+ "51": {
1020
+ "input": null,
1021
+ "output": "#00924a"
1022
+ },
1023
+ "52": {
1024
+ "input": null,
1025
+ "output": "#008f48"
1026
+ },
1027
+ "53": {
1028
+ "input": null,
1029
+ "output": "#008d45"
1030
+ },
1031
+ "54": {
1032
+ "input": null,
1033
+ "output": "#008b43"
1034
+ },
1035
+ "55": {
1036
+ "input": "#008840",
1037
+ "output": "#008840"
1038
+ },
1039
+ "56": {
1040
+ "input": null,
1041
+ "output": "#00853e"
1042
+ },
1043
+ "57": {
1044
+ "input": null,
1045
+ "output": "#00823b"
1046
+ },
1047
+ "58": {
1048
+ "input": null,
1049
+ "output": "#007f39"
1050
+ },
1051
+ "59": {
1052
+ "input": null,
1053
+ "output": "#007c36"
1054
+ },
1055
+ "60": {
1056
+ "input": "#007934",
1057
+ "output": "#007934"
1058
+ },
1059
+ "61": {
1060
+ "input": null,
1061
+ "output": "#007632"
1062
+ },
1063
+ "62": {
1064
+ "input": null,
1065
+ "output": "#00742f"
1066
+ },
1067
+ "63": {
1068
+ "input": null,
1069
+ "output": "#00712d"
1070
+ },
1071
+ "64": {
1072
+ "input": null,
1073
+ "output": "#006f2b"
1074
+ },
1075
+ "65": {
1076
+ "input": "#006d29",
1077
+ "output": "#006d29"
1078
+ },
1079
+ "66": {
1080
+ "input": null,
1081
+ "output": "#006b28"
1082
+ },
1083
+ "67": {
1084
+ "input": null,
1085
+ "output": "#006926"
1086
+ },
1087
+ "68": {
1088
+ "input": null,
1089
+ "output": "#006624"
1090
+ },
1091
+ "69": {
1092
+ "input": null,
1093
+ "output": "#006422"
1094
+ },
1095
+ "70": {
1096
+ "input": "#00611e",
1097
+ "output": "#00611e"
1098
+ },
1099
+ "71": {
1100
+ "input": null,
1101
+ "output": "#005e19"
1102
+ },
1103
+ "72": {
1104
+ "input": null,
1105
+ "output": "#005a14"
1106
+ },
1107
+ "73": {
1108
+ "input": "#005710",
1109
+ "output": "#005710"
1110
+ },
1111
+ "74": {
1112
+ "input": null,
1113
+ "output": "#00540f"
1114
+ },
1115
+ "75": {
1116
+ "input": "#00510f",
1117
+ "output": "#00510f"
1118
+ },
1119
+ "76": {
1120
+ "input": null,
1121
+ "output": "#004f0c"
1122
+ },
1123
+ "77": {
1124
+ "input": null,
1125
+ "output": "#004e07"
1126
+ },
1127
+ "78": {
1128
+ "input": "#004c03",
1129
+ "output": "#004c03"
1130
+ },
1131
+ "79": {
1132
+ "input": null,
1133
+ "output": "#004902"
1134
+ },
1135
+ "80": {
1136
+ "input": "#004502",
1137
+ "output": "#004502"
1138
+ },
1139
+ "81": {
1140
+ "input": null,
1141
+ "output": "#004201"
1142
+ },
1143
+ "82": {
1144
+ "input": null,
1145
+ "output": "#004001"
1146
+ },
1147
+ "83": {
1148
+ "input": "#003d00",
1149
+ "output": "#003d00"
1150
+ },
1151
+ "84": {
1152
+ "input": null,
1153
+ "output": "#003a00"
1154
+ },
1155
+ "85": {
1156
+ "input": "#003700",
1157
+ "output": "#003700"
1158
+ },
1159
+ "86": {
1160
+ "input": null,
1161
+ "output": "#003600"
1162
+ },
1163
+ "87": {
1164
+ "input": null,
1165
+ "output": "#013500"
1166
+ },
1167
+ "88": {
1168
+ "input": "#013300",
1169
+ "output": "#013300"
1170
+ },
1171
+ "89": {
1172
+ "input": null,
1173
+ "output": "#013000"
1174
+ },
1175
+ "90": {
1176
+ "input": "#012c00",
1177
+ "output": "#012c00"
1178
+ },
1179
+ "91": {
1180
+ "input": null,
1181
+ "output": "#012900"
1182
+ },
1183
+ "92": {
1184
+ "input": null,
1185
+ "output": "#002700"
1186
+ },
1187
+ "93": {
1188
+ "input": "#012400",
1189
+ "output": "#012400"
1190
+ },
1191
+ "94": {
1192
+ "input": null,
1193
+ "output": "#022000"
1194
+ },
1195
+ "95": {
1196
+ "input": "#011b00",
1197
+ "output": "#011b00"
1198
+ },
1199
+ "96": {
1200
+ "input": null,
1201
+ "output": "#001700"
1202
+ },
1203
+ "97": {
1204
+ "input": null,
1205
+ "output": "#001300"
1206
+ },
1207
+ "98": {
1208
+ "input": null,
1209
+ "output": "#000f00"
1210
+ },
1211
+ "99": {
1212
+ "input": null,
1213
+ "output": "#010c00"
1214
+ },
1215
+ "100": {
1216
+ "input": "#010800",
1217
+ "output": "#010800"
1218
+ }
1219
+ },
1220
+ "blue": {
1221
+ "0": {
1222
+ "input": "#fafbff",
1223
+ "output": "#fafbff"
1224
+ },
1225
+ "1": {
1226
+ "input": null,
1227
+ "output": "#f5f9fc"
1228
+ },
1229
+ "2": {
1230
+ "input": null,
1231
+ "output": "#f0f6fa"
1232
+ },
1233
+ "3": {
1234
+ "input": "#ecf4f8",
1235
+ "output": "#ecf4f8"
1236
+ },
1237
+ "4": {
1238
+ "input": null,
1239
+ "output": "#e8f2f7"
1240
+ },
1241
+ "5": {
1242
+ "input": null,
1243
+ "output": "#e5eff6"
1244
+ },
1245
+ "6": {
1246
+ "input": null,
1247
+ "output": "#e1edf5"
1248
+ },
1249
+ "7": {
1250
+ "input": "#ddebf3",
1251
+ "output": "#ddebf3"
1252
+ },
1253
+ "8": {
1254
+ "input": null,
1255
+ "output": "#d8e9f0"
1256
+ },
1257
+ "9": {
1258
+ "input": null,
1259
+ "output": "#d3e8ee"
1260
+ },
1261
+ "10": {
1262
+ "input": "#cde6eb",
1263
+ "output": "#cde6eb"
1264
+ },
1265
+ "11": {
1266
+ "input": null,
1267
+ "output": "#c8e4e9"
1268
+ },
1269
+ "12": {
1270
+ "input": null,
1271
+ "output": "#c2e3e8"
1272
+ },
1273
+ "13": {
1274
+ "input": null,
1275
+ "output": "#bde1e7"
1276
+ },
1277
+ "14": {
1278
+ "input": null,
1279
+ "output": "#b8dfe7"
1280
+ },
1281
+ "15": {
1282
+ "input": "#b2dde6",
1283
+ "output": "#b2dde6"
1284
+ },
1285
+ "16": {
1286
+ "input": null,
1287
+ "output": "#acdbe5"
1288
+ },
1289
+ "17": {
1290
+ "input": null,
1291
+ "output": "#a6d9e3"
1292
+ },
1293
+ "18": {
1294
+ "input": null,
1295
+ "output": "#a0d8e1"
1296
+ },
1297
+ "19": {
1298
+ "input": null,
1299
+ "output": "#9ad6e0"
1300
+ },
1301
+ "20": {
1302
+ "input": "#94d4de",
1303
+ "output": "#94d4de"
1304
+ },
1305
+ "21": {
1306
+ "input": null,
1307
+ "output": "#8ed2dd"
1308
+ },
1309
+ "22": {
1310
+ "input": null,
1311
+ "output": "#89d0dc"
1312
+ },
1313
+ "23": {
1314
+ "input": null,
1315
+ "output": "#83cedb"
1316
+ },
1317
+ "24": {
1318
+ "input": null,
1319
+ "output": "#7dccd9"
1320
+ },
1321
+ "25": {
1322
+ "input": "#77cad8",
1323
+ "output": "#77cad8"
1324
+ },
1325
+ "26": {
1326
+ "input": null,
1327
+ "output": "#71c8d6"
1328
+ },
1329
+ "27": {
1330
+ "input": null,
1331
+ "output": "#6ac6d4"
1332
+ },
1333
+ "28": {
1334
+ "input": null,
1335
+ "output": "#63c4d2"
1336
+ },
1337
+ "29": {
1338
+ "input": null,
1339
+ "output": "#5bc2cf"
1340
+ },
1341
+ "30": {
1342
+ "input": "#54c0cd",
1343
+ "output": "#54c0cd"
1344
+ },
1345
+ "31": {
1346
+ "input": null,
1347
+ "output": "#4dbecb"
1348
+ },
1349
+ "32": {
1350
+ "input": null,
1351
+ "output": "#45bcc9"
1352
+ },
1353
+ "33": {
1354
+ "input": null,
1355
+ "output": "#3ebac8"
1356
+ },
1357
+ "34": {
1358
+ "input": null,
1359
+ "output": "#37b7c6"
1360
+ },
1361
+ "35": {
1362
+ "input": "#30b5c4",
1363
+ "output": "#30b5c4"
1364
+ },
1365
+ "36": {
1366
+ "input": null,
1367
+ "output": "#2ab3c2"
1368
+ },
1369
+ "37": {
1370
+ "input": null,
1371
+ "output": "#25b0bf"
1372
+ },
1373
+ "38": {
1374
+ "input": null,
1375
+ "output": "#21adbd"
1376
+ },
1377
+ "39": {
1378
+ "input": null,
1379
+ "output": "#1dabba"
1380
+ },
1381
+ "40": {
1382
+ "input": "#19a8b8",
1383
+ "output": "#19a8b8"
1384
+ },
1385
+ "41": {
1386
+ "input": null,
1387
+ "output": "#14a5b6"
1388
+ },
1389
+ "42": {
1390
+ "input": null,
1391
+ "output": "#0fa3b4"
1392
+ },
1393
+ "43": {
1394
+ "input": null,
1395
+ "output": "#09a0b1"
1396
+ },
1397
+ "44": {
1398
+ "input": null,
1399
+ "output": "#049daf"
1400
+ },
1401
+ "45": {
1402
+ "input": "#009bad",
1403
+ "output": "#009bad"
1404
+ },
1405
+ "46": {
1406
+ "input": null,
1407
+ "output": "#0099ab"
1408
+ },
1409
+ "47": {
1410
+ "input": null,
1411
+ "output": "#0097a8"
1412
+ },
1413
+ "48": {
1414
+ "input": null,
1415
+ "output": "#0095a6"
1416
+ },
1417
+ "49": {
1418
+ "input": null,
1419
+ "output": "#0092a3"
1420
+ },
1421
+ "50": {
1422
+ "input": "#0190a0",
1423
+ "output": "#0190a0"
1424
+ },
1425
+ "51": {
1426
+ "input": null,
1427
+ "output": "#018d9d"
1428
+ },
1429
+ "52": {
1430
+ "input": null,
1431
+ "output": "#018b9a"
1432
+ },
1433
+ "53": {
1434
+ "input": null,
1435
+ "output": "#018897"
1436
+ },
1437
+ "54": {
1438
+ "input": null,
1439
+ "output": "#008595"
1440
+ },
1441
+ "55": {
1442
+ "input": "#008292",
1443
+ "output": "#008292"
1444
+ },
1445
+ "56": {
1446
+ "input": null,
1447
+ "output": "#007f8f"
1448
+ },
1449
+ "57": {
1450
+ "input": null,
1451
+ "output": "#007d8d"
1452
+ },
1453
+ "58": {
1454
+ "input": null,
1455
+ "output": "#007a8b"
1456
+ },
1457
+ "59": {
1458
+ "input": null,
1459
+ "output": "#078"
1460
+ },
1461
+ "60": {
1462
+ "input": "#007586",
1463
+ "output": "#007586"
1464
+ },
1465
+ "61": {
1466
+ "input": null,
1467
+ "output": "#007383"
1468
+ },
1469
+ "62": {
1470
+ "input": null,
1471
+ "output": "#007081"
1472
+ },
1473
+ "63": {
1474
+ "input": null,
1475
+ "output": "#006e7e"
1476
+ },
1477
+ "64": {
1478
+ "input": null,
1479
+ "output": "#006c7c"
1480
+ },
1481
+ "65": {
1482
+ "input": "#006979",
1483
+ "output": "#006979"
1484
+ },
1485
+ "66": {
1486
+ "input": null,
1487
+ "output": "#006676"
1488
+ },
1489
+ "67": {
1490
+ "input": null,
1491
+ "output": "#006374"
1492
+ },
1493
+ "68": {
1494
+ "input": null,
1495
+ "output": "#006171"
1496
+ },
1497
+ "69": {
1498
+ "input": null,
1499
+ "output": "#005e6f"
1500
+ },
1501
+ "70": {
1502
+ "input": "#005b6d",
1503
+ "output": "#005b6d"
1504
+ },
1505
+ "71": {
1506
+ "input": null,
1507
+ "output": "#00586b"
1508
+ },
1509
+ "72": {
1510
+ "input": null,
1511
+ "output": "#005669"
1512
+ },
1513
+ "73": {
1514
+ "input": "#005366",
1515
+ "output": "#005366"
1516
+ },
1517
+ "74": {
1518
+ "input": null,
1519
+ "output": "#005063"
1520
+ },
1521
+ "75": {
1522
+ "input": "#004d5f",
1523
+ "output": "#004d5f"
1524
+ },
1525
+ "76": {
1526
+ "input": null,
1527
+ "output": "#004a5c"
1528
+ },
1529
+ "77": {
1530
+ "input": null,
1531
+ "output": "#00485a"
1532
+ },
1533
+ "78": {
1534
+ "input": "#004657",
1535
+ "output": "#004657"
1536
+ },
1537
+ "79": {
1538
+ "input": null,
1539
+ "output": "#004454"
1540
+ },
1541
+ "80": {
1542
+ "input": "#004252",
1543
+ "output": "#004252"
1544
+ },
1545
+ "81": {
1546
+ "input": null,
1547
+ "output": "#003f51"
1548
+ },
1549
+ "82": {
1550
+ "input": null,
1551
+ "output": "#003c50"
1552
+ },
1553
+ "83": {
1554
+ "input": "#00394d",
1555
+ "output": "#00394d"
1556
+ },
1557
+ "84": {
1558
+ "input": null,
1559
+ "output": "#003648"
1560
+ },
1561
+ "85": {
1562
+ "input": "#003344",
1563
+ "output": "#034"
1564
+ },
1565
+ "86": {
1566
+ "input": null,
1567
+ "output": "#003143"
1568
+ },
1569
+ "87": {
1570
+ "input": null,
1571
+ "output": "#013042"
1572
+ },
1573
+ "88": {
1574
+ "input": "#012e41",
1575
+ "output": "#012e41"
1576
+ },
1577
+ "89": {
1578
+ "input": null,
1579
+ "output": "#012b3d"
1580
+ },
1581
+ "90": {
1582
+ "input": "#012839",
1583
+ "output": "#012839"
1584
+ },
1585
+ "91": {
1586
+ "input": null,
1587
+ "output": "#012637"
1588
+ },
1589
+ "92": {
1590
+ "input": null,
1591
+ "output": "#002435"
1592
+ },
1593
+ "93": {
1594
+ "input": "#002233",
1595
+ "output": "#023"
1596
+ },
1597
+ "94": {
1598
+ "input": null,
1599
+ "output": "#001f2f"
1600
+ },
1601
+ "95": {
1602
+ "input": "#001c2a",
1603
+ "output": "#001c2a"
1604
+ },
1605
+ "96": {
1606
+ "input": null,
1607
+ "output": "#001927"
1608
+ },
1609
+ "97": {
1610
+ "input": null,
1611
+ "output": "#001625"
1612
+ },
1613
+ "98": {
1614
+ "input": null,
1615
+ "output": "#001323"
1616
+ },
1617
+ "99": {
1618
+ "input": null,
1619
+ "output": "#000f23"
1620
+ },
1621
+ "100": {
1622
+ "input": "#000a23",
1623
+ "output": "#000a23"
1624
+ }
1625
+ },
1626
+ "pink": {
1627
+ "0": {
1628
+ "input": "#fff8f6",
1629
+ "output": "#fff8f6"
1630
+ },
1631
+ "1": {
1632
+ "input": null,
1633
+ "output": "#fff6f5"
1634
+ },
1635
+ "2": {
1636
+ "input": null,
1637
+ "output": "#fff4f3"
1638
+ },
1639
+ "3": {
1640
+ "input": "#fff1f0",
1641
+ "output": "#fff1f0"
1642
+ },
1643
+ "4": {
1644
+ "input": null,
1645
+ "output": "#ffedeb"
1646
+ },
1647
+ "5": {
1648
+ "input": null,
1649
+ "output": "#ffe8e6"
1650
+ },
1651
+ "6": {
1652
+ "input": null,
1653
+ "output": "#ffe2e0"
1654
+ },
1655
+ "7": {
1656
+ "input": "#ffdedb",
1657
+ "output": "#ffdedb"
1658
+ },
1659
+ "8": {
1660
+ "input": null,
1661
+ "output": "#ffdbd7"
1662
+ },
1663
+ "9": {
1664
+ "input": null,
1665
+ "output": "#ffd8d5"
1666
+ },
1667
+ "10": {
1668
+ "input": "#ffd6d2",
1669
+ "output": "#ffd6d2"
1670
+ },
1671
+ "11": {
1672
+ "input": null,
1673
+ "output": "#ffd3cf"
1674
+ },
1675
+ "12": {
1676
+ "input": null,
1677
+ "output": "#ffd0cc"
1678
+ },
1679
+ "13": {
1680
+ "input": null,
1681
+ "output": "#ffccc8"
1682
+ },
1683
+ "14": {
1684
+ "input": null,
1685
+ "output": "#ffc9c4"
1686
+ },
1687
+ "15": {
1688
+ "input": "#ffc5c1",
1689
+ "output": "#ffc5c1"
1690
+ },
1691
+ "16": {
1692
+ "input": null,
1693
+ "output": "#ffc2be"
1694
+ },
1695
+ "17": {
1696
+ "input": null,
1697
+ "output": "#febfbb"
1698
+ },
1699
+ "18": {
1700
+ "input": null,
1701
+ "output": "#febcb9"
1702
+ },
1703
+ "19": {
1704
+ "input": null,
1705
+ "output": "#fcb9b6"
1706
+ },
1707
+ "20": {
1708
+ "input": "#fbb7b4",
1709
+ "output": "#fbb7b4"
1710
+ },
1711
+ "21": {
1712
+ "input": null,
1713
+ "output": "#f9b5b2"
1714
+ },
1715
+ "22": {
1716
+ "input": null,
1717
+ "output": "#f7b2af"
1718
+ },
1719
+ "23": {
1720
+ "input": null,
1721
+ "output": "#f4b0ad"
1722
+ },
1723
+ "24": {
1724
+ "input": null,
1725
+ "output": "#f2adaa"
1726
+ },
1727
+ "25": {
1728
+ "input": "#efaba8",
1729
+ "output": "#efaba8"
1730
+ },
1731
+ "26": {
1732
+ "input": null,
1733
+ "output": "#eca8a6"
1734
+ },
1735
+ "27": {
1736
+ "input": null,
1737
+ "output": "#eaa6a3"
1738
+ },
1739
+ "28": {
1740
+ "input": null,
1741
+ "output": "#e7a3a1"
1742
+ },
1743
+ "29": {
1744
+ "input": null,
1745
+ "output": "#e5a19f"
1746
+ },
1747
+ "30": {
1748
+ "input": "#e29e9d",
1749
+ "output": "#e29e9d"
1750
+ },
1751
+ "31": {
1752
+ "input": null,
1753
+ "output": "#df9c9b"
1754
+ },
1755
+ "32": {
1756
+ "input": null,
1757
+ "output": "#dc999a"
1758
+ },
1759
+ "33": {
1760
+ "input": null,
1761
+ "output": "#d99798"
1762
+ },
1763
+ "34": {
1764
+ "input": null,
1765
+ "output": "#d69496"
1766
+ },
1767
+ "35": {
1768
+ "input": "#d49294",
1769
+ "output": "#d49294"
1770
+ },
1771
+ "36": {
1772
+ "input": null,
1773
+ "output": "#d28f92"
1774
+ },
1775
+ "37": {
1776
+ "input": null,
1777
+ "output": "#d08d8f"
1778
+ },
1779
+ "38": {
1780
+ "input": null,
1781
+ "output": "#ce8a8d"
1782
+ },
1783
+ "39": {
1784
+ "input": null,
1785
+ "output": "#cc878a"
1786
+ },
1787
+ "40": {
1788
+ "input": "#ca8588",
1789
+ "output": "#ca8588"
1790
+ },
1791
+ "41": {
1792
+ "input": null,
1793
+ "output": "#c78386"
1794
+ },
1795
+ "42": {
1796
+ "input": null,
1797
+ "output": "#c58184"
1798
+ },
1799
+ "43": {
1800
+ "input": null,
1801
+ "output": "#c27e82"
1802
+ },
1803
+ "44": {
1804
+ "input": null,
1805
+ "output": "#bf7c80"
1806
+ },
1807
+ "45": {
1808
+ "input": "#bc7a7e",
1809
+ "output": "#bc7a7e"
1810
+ },
1811
+ "46": {
1812
+ "input": null,
1813
+ "output": "#b9787c"
1814
+ },
1815
+ "47": {
1816
+ "input": null,
1817
+ "output": "#b7757a"
1818
+ },
1819
+ "48": {
1820
+ "input": null,
1821
+ "output": "#b57378"
1822
+ },
1823
+ "49": {
1824
+ "input": null,
1825
+ "output": "#b27076"
1826
+ },
1827
+ "50": {
1828
+ "input": "#b06d74",
1829
+ "output": "#b06d74"
1830
+ },
1831
+ "51": {
1832
+ "input": null,
1833
+ "output": "#ae6a72"
1834
+ },
1835
+ "52": {
1836
+ "input": null,
1837
+ "output": "#ab6770"
1838
+ },
1839
+ "53": {
1840
+ "input": null,
1841
+ "output": "#a8646e"
1842
+ },
1843
+ "54": {
1844
+ "input": null,
1845
+ "output": "#a6626c"
1846
+ },
1847
+ "55": {
1848
+ "input": "#a35f6a",
1849
+ "output": "#a35f6a"
1850
+ },
1851
+ "56": {
1852
+ "input": null,
1853
+ "output": "#a05c67"
1854
+ },
1855
+ "57": {
1856
+ "input": null,
1857
+ "output": "#9d5a65"
1858
+ },
1859
+ "58": {
1860
+ "input": null,
1861
+ "output": "#9a5862"
1862
+ },
1863
+ "59": {
1864
+ "input": null,
1865
+ "output": "#98555f"
1866
+ },
1867
+ "60": {
1868
+ "input": "#95535d",
1869
+ "output": "#95535d"
1870
+ },
1871
+ "61": {
1872
+ "input": null,
1873
+ "output": "#93515b"
1874
+ },
1875
+ "62": {
1876
+ "input": null,
1877
+ "output": "#904f5a"
1878
+ },
1879
+ "63": {
1880
+ "input": null,
1881
+ "output": "#8e4c58"
1882
+ },
1883
+ "64": {
1884
+ "input": null,
1885
+ "output": "#8c4a57"
1886
+ },
1887
+ "65": {
1888
+ "input": "#894755",
1889
+ "output": "#894755"
1890
+ },
1891
+ "66": {
1892
+ "input": null,
1893
+ "output": "#864453"
1894
+ },
1895
+ "67": {
1896
+ "input": null,
1897
+ "output": "#834150"
1898
+ },
1899
+ "68": {
1900
+ "input": null,
1901
+ "output": "#803e4d"
1902
+ },
1903
+ "69": {
1904
+ "input": null,
1905
+ "output": "#7e3b4b"
1906
+ },
1907
+ "70": {
1908
+ "input": "#7c394a",
1909
+ "output": "#7c394a"
1910
+ },
1911
+ "71": {
1912
+ "input": null,
1913
+ "output": "#7b374a"
1914
+ },
1915
+ "72": {
1916
+ "input": null,
1917
+ "output": "#793549"
1918
+ },
1919
+ "73": {
1920
+ "input": "#763247",
1921
+ "output": "#763247"
1922
+ },
1923
+ "74": {
1924
+ "input": null,
1925
+ "output": "#712d42"
1926
+ },
1927
+ "75": {
1928
+ "input": "#6d293e",
1929
+ "output": "#6d293e"
1930
+ },
1931
+ "76": {
1932
+ "input": null,
1933
+ "output": "#6a273c"
1934
+ },
1935
+ "77": {
1936
+ "input": null,
1937
+ "output": "#68253b"
1938
+ },
1939
+ "78": {
1940
+ "input": "#66243a",
1941
+ "output": "#66243a"
1942
+ },
1943
+ "79": {
1944
+ "input": null,
1945
+ "output": "#622137"
1946
+ },
1947
+ "80": {
1948
+ "input": "#5f1e34",
1949
+ "output": "#5f1e34"
1950
+ },
1951
+ "81": {
1952
+ "input": null,
1953
+ "output": "#5d1b34"
1954
+ },
1955
+ "82": {
1956
+ "input": null,
1957
+ "output": "#5c1934"
1958
+ },
1959
+ "83": {
1960
+ "input": "#5a1633",
1961
+ "output": "#5a1633"
1962
+ },
1963
+ "84": {
1964
+ "input": null,
1965
+ "output": "#57122f"
1966
+ },
1967
+ "85": {
1968
+ "input": "#530e2b",
1969
+ "output": "#530e2b"
1970
+ },
1971
+ "86": {
1972
+ "input": null,
1973
+ "output": "#500c28"
1974
+ },
1975
+ "87": {
1976
+ "input": null,
1977
+ "output": "#4d0b27"
1978
+ },
1979
+ "88": {
1980
+ "input": "#4a0825",
1981
+ "output": "#4a0825"
1982
+ },
1983
+ "89": {
1984
+ "input": null,
1985
+ "output": "#470422"
1986
+ },
1987
+ "90": {
1988
+ "input": "#45001f",
1989
+ "output": "#45001f"
1990
+ },
1991
+ "91": {
1992
+ "input": null,
1993
+ "output": "#43001b"
1994
+ },
1995
+ "92": {
1996
+ "input": null,
1997
+ "output": "#400018"
1998
+ },
1999
+ "93": {
2000
+ "input": "#3d0015",
2001
+ "output": "#3d0015"
2002
+ },
2003
+ "94": {
2004
+ "input": null,
2005
+ "output": "#390013"
2006
+ },
2007
+ "95": {
2008
+ "input": "#350012",
2009
+ "output": "#350012"
2010
+ },
2011
+ "96": {
2012
+ "input": null,
2013
+ "output": "#320010"
2014
+ },
2015
+ "97": {
2016
+ "input": null,
2017
+ "output": "#30000e"
2018
+ },
2019
+ "98": {
2020
+ "input": null,
2021
+ "output": "#2f000b"
2022
+ },
2023
+ "99": {
2024
+ "input": null,
2025
+ "output": "#2e0007"
2026
+ },
2027
+ "100": {
2028
+ "input": "#2e0003",
2029
+ "output": "#2e0003"
2030
+ }
2031
+ },
2032
+ "salmon": {
2033
+ "0": {
2034
+ "input": "#fef8f8",
2035
+ "output": "#fef8f8"
2036
+ },
2037
+ "1": {
2038
+ "input": null,
2039
+ "output": "#fef5f4"
2040
+ },
2041
+ "2": {
2042
+ "input": null,
2043
+ "output": "#fef2f0"
2044
+ },
2045
+ "3": {
2046
+ "input": "#feefeb",
2047
+ "output": "#feefeb"
2048
+ },
2049
+ "4": {
2050
+ "input": null,
2051
+ "output": "#feebe6"
2052
+ },
2053
+ "5": {
2054
+ "input": null,
2055
+ "output": "#fee7e1"
2056
+ },
2057
+ "6": {
2058
+ "input": null,
2059
+ "output": "#fee3dc"
2060
+ },
2061
+ "7": {
2062
+ "input": "#fedfd8",
2063
+ "output": "#fedfd8"
2064
+ },
2065
+ "8": {
2066
+ "input": null,
2067
+ "output": "#fedcd5"
2068
+ },
2069
+ "9": {
2070
+ "input": null,
2071
+ "output": "#fed9d2"
2072
+ },
2073
+ "10": {
2074
+ "input": "#fed6ce",
2075
+ "output": "#fed6ce"
2076
+ },
2077
+ "11": {
2078
+ "input": null,
2079
+ "output": "#fed3c9"
2080
+ },
2081
+ "12": {
2082
+ "input": null,
2083
+ "output": "#fecfc4"
2084
+ },
2085
+ "13": {
2086
+ "input": null,
2087
+ "output": "#fecbbe"
2088
+ },
2089
+ "14": {
2090
+ "input": null,
2091
+ "output": "#fec7b7"
2092
+ },
2093
+ "15": {
2094
+ "input": "#fec3b1",
2095
+ "output": "#fec3b1"
2096
+ },
2097
+ "16": {
2098
+ "input": null,
2099
+ "output": "#febfab"
2100
+ },
2101
+ "17": {
2102
+ "input": null,
2103
+ "output": "#febca6"
2104
+ },
2105
+ "18": {
2106
+ "input": null,
2107
+ "output": "#feb8a1"
2108
+ },
2109
+ "19": {
2110
+ "input": null,
2111
+ "output": "#ffb59b"
2112
+ },
2113
+ "20": {
2114
+ "input": "#ffb296",
2115
+ "output": "#ffb296"
2116
+ },
2117
+ "21": {
2118
+ "input": null,
2119
+ "output": "#ffaf90"
2120
+ },
2121
+ "22": {
2122
+ "input": null,
2123
+ "output": "#ffac8a"
2124
+ },
2125
+ "23": {
2126
+ "input": null,
2127
+ "output": "#ffa984"
2128
+ },
2129
+ "24": {
2130
+ "input": null,
2131
+ "output": "#ffa67e"
2132
+ },
2133
+ "25": {
2134
+ "input": "#ffa378",
2135
+ "output": "#ffa378"
2136
+ },
2137
+ "26": {
2138
+ "input": null,
2139
+ "output": "#fea072"
2140
+ },
2141
+ "27": {
2142
+ "input": null,
2143
+ "output": "#fd9d6c"
2144
+ },
2145
+ "28": {
2146
+ "input": null,
2147
+ "output": "#fc9a67"
2148
+ },
2149
+ "29": {
2150
+ "input": null,
2151
+ "output": "#fb9762"
2152
+ },
2153
+ "30": {
2154
+ "input": "#f9945e",
2155
+ "output": "#f9945e"
2156
+ },
2157
+ "31": {
2158
+ "input": null,
2159
+ "output": "#f7925b"
2160
+ },
2161
+ "32": {
2162
+ "input": null,
2163
+ "output": "#f59059"
2164
+ },
2165
+ "33": {
2166
+ "input": null,
2167
+ "output": "#f28d57"
2168
+ },
2169
+ "34": {
2170
+ "input": null,
2171
+ "output": "#f08b56"
2172
+ },
2173
+ "35": {
2174
+ "input": "#ed8955",
2175
+ "output": "#ed8955"
2176
+ },
2177
+ "36": {
2178
+ "input": null,
2179
+ "output": "#ea8654"
2180
+ },
2181
+ "37": {
2182
+ "input": null,
2183
+ "output": "#e88352"
2184
+ },
2185
+ "38": {
2186
+ "input": null,
2187
+ "output": "#e58150"
2188
+ },
2189
+ "39": {
2190
+ "input": null,
2191
+ "output": "#e37e4f"
2192
+ },
2193
+ "40": {
2194
+ "input": "#e07b4d",
2195
+ "output": "#e07b4d"
2196
+ },
2197
+ "41": {
2198
+ "input": null,
2199
+ "output": "#dd794b"
2200
+ },
2201
+ "42": {
2202
+ "input": null,
2203
+ "output": "#da774a"
2204
+ },
2205
+ "43": {
2206
+ "input": null,
2207
+ "output": "#d77549"
2208
+ },
2209
+ "44": {
2210
+ "input": null,
2211
+ "output": "#d57347"
2212
+ },
2213
+ "45": {
2214
+ "input": "#d27146",
2215
+ "output": "#d27146"
2216
+ },
2217
+ "46": {
2218
+ "input": null,
2219
+ "output": "#cf6f45"
2220
+ },
2221
+ "47": {
2222
+ "input": null,
2223
+ "output": "#cd6d43"
2224
+ },
2225
+ "48": {
2226
+ "input": null,
2227
+ "output": "#ca6a42"
2228
+ },
2229
+ "49": {
2230
+ "input": null,
2231
+ "output": "#c86840"
2232
+ },
2233
+ "50": {
2234
+ "input": "#c5653f",
2235
+ "output": "#c5653f"
2236
+ },
2237
+ "51": {
2238
+ "input": null,
2239
+ "output": "#c2623e"
2240
+ },
2241
+ "52": {
2242
+ "input": null,
2243
+ "output": "#bf5f3c"
2244
+ },
2245
+ "53": {
2246
+ "input": null,
2247
+ "output": "#bb5c3b"
2248
+ },
2249
+ "54": {
2250
+ "input": null,
2251
+ "output": "#b8593a"
2252
+ },
2253
+ "55": {
2254
+ "input": "#b55638",
2255
+ "output": "#b55638"
2256
+ },
2257
+ "56": {
2258
+ "input": null,
2259
+ "output": "#b25336"
2260
+ },
2261
+ "57": {
2262
+ "input": null,
2263
+ "output": "#af5135"
2264
+ },
2265
+ "58": {
2266
+ "input": null,
2267
+ "output": "#ac4e33"
2268
+ },
2269
+ "59": {
2270
+ "input": null,
2271
+ "output": "#aa4b31"
2272
+ },
2273
+ "60": {
2274
+ "input": "#a74930",
2275
+ "output": "#a74930"
2276
+ },
2277
+ "61": {
2278
+ "input": null,
2279
+ "output": "#a4462f"
2280
+ },
2281
+ "62": {
2282
+ "input": null,
2283
+ "output": "#a2442e"
2284
+ },
2285
+ "63": {
2286
+ "input": null,
2287
+ "output": "#9f412d"
2288
+ },
2289
+ "64": {
2290
+ "input": null,
2291
+ "output": "#9c3f2c"
2292
+ },
2293
+ "65": {
2294
+ "input": "#993c2b",
2295
+ "output": "#993c2b"
2296
+ },
2297
+ "66": {
2298
+ "input": null,
2299
+ "output": "#95392a"
2300
+ },
2301
+ "67": {
2302
+ "input": null,
2303
+ "output": "#923729"
2304
+ },
2305
+ "68": {
2306
+ "input": null,
2307
+ "output": "#8e3428"
2308
+ },
2309
+ "69": {
2310
+ "input": null,
2311
+ "output": "#8b3127"
2312
+ },
2313
+ "70": {
2314
+ "input": "#892f26",
2315
+ "output": "#892f26"
2316
+ },
2317
+ "71": {
2318
+ "input": null,
2319
+ "output": "#882d26"
2320
+ },
2321
+ "72": {
2322
+ "input": null,
2323
+ "output": "#862a25"
2324
+ },
2325
+ "73": {
2326
+ "input": "#842724",
2327
+ "output": "#842724"
2328
+ },
2329
+ "74": {
2330
+ "input": null,
2331
+ "output": "#802321"
2332
+ },
2333
+ "75": {
2334
+ "input": "#7c1e1e",
2335
+ "output": "#7c1e1e"
2336
+ },
2337
+ "76": {
2338
+ "input": null,
2339
+ "output": "#7a1a1a"
2340
+ },
2341
+ "77": {
2342
+ "input": null,
2343
+ "output": "#781817"
2344
+ },
2345
+ "78": {
2346
+ "input": "#751515",
2347
+ "output": "#751515"
2348
+ },
2349
+ "79": {
2350
+ "input": null,
2351
+ "output": "#711216"
2352
+ },
2353
+ "80": {
2354
+ "input": "#6c0f17",
2355
+ "output": "#6c0f17"
2356
+ },
2357
+ "81": {
2358
+ "input": null,
2359
+ "output": "#680d17"
2360
+ },
2361
+ "82": {
2362
+ "input": null,
2363
+ "output": "#660b16"
2364
+ },
2365
+ "83": {
2366
+ "input": "#630814",
2367
+ "output": "#630814"
2368
+ },
2369
+ "84": {
2370
+ "input": null,
2371
+ "output": "#600412"
2372
+ },
2373
+ "85": {
2374
+ "input": "#5e0010",
2375
+ "output": "#5e0010"
2376
+ },
2377
+ "86": {
2378
+ "input": null,
2379
+ "output": "#5c000e"
2380
+ },
2381
+ "87": {
2382
+ "input": null,
2383
+ "output": "#5a000b"
2384
+ },
2385
+ "88": {
2386
+ "input": "#570007",
2387
+ "output": "#570007"
2388
+ },
2389
+ "89": {
2390
+ "input": null,
2391
+ "output": "#530003"
2392
+ },
2393
+ "90": {
2394
+ "input": "#4e0000",
2395
+ "output": "#4e0000"
2396
+ },
2397
+ "91": {
2398
+ "input": null,
2399
+ "output": "#490000"
2400
+ },
2401
+ "92": {
2402
+ "input": null,
2403
+ "output": "#450001"
2404
+ },
2405
+ "93": {
2406
+ "input": "#420002",
2407
+ "output": "#420002"
2408
+ },
2409
+ "94": {
2410
+ "input": null,
2411
+ "output": "#400002"
2412
+ },
2413
+ "95": {
2414
+ "input": "#3e0001",
2415
+ "output": "#3e0001"
2416
+ },
2417
+ "96": {
2418
+ "input": null,
2419
+ "output": "#3c0001"
2420
+ },
2421
+ "97": {
2422
+ "input": null,
2423
+ "output": "#3a0001"
2424
+ },
2425
+ "98": {
2426
+ "input": null,
2427
+ "output": "#380001"
2428
+ },
2429
+ "99": {
2430
+ "input": null,
2431
+ "output": "#360001"
2432
+ },
2433
+ "100": {
2434
+ "input": "#340002",
2435
+ "output": "#340002"
2436
+ }
2437
+ },
2438
+ "orange": {
2439
+ "0": {
2440
+ "input": "#fff9f1",
2441
+ "output": "#fff9f1"
2442
+ },
2443
+ "1": {
2444
+ "input": null,
2445
+ "output": "#fff6ee"
2446
+ },
2447
+ "2": {
2448
+ "input": null,
2449
+ "output": "#fff3ea"
2450
+ },
2451
+ "3": {
2452
+ "input": "#ffefe5",
2453
+ "output": "#ffefe5"
2454
+ },
2455
+ "4": {
2456
+ "input": null,
2457
+ "output": "#ffebdf"
2458
+ },
2459
+ "5": {
2460
+ "input": null,
2461
+ "output": "#ffe7d9"
2462
+ },
2463
+ "6": {
2464
+ "input": null,
2465
+ "output": "#ffe3d2"
2466
+ },
2467
+ "7": {
2468
+ "input": "#ffe0cc",
2469
+ "output": "#ffe0cc"
2470
+ },
2471
+ "8": {
2472
+ "input": null,
2473
+ "output": "#ffddc7"
2474
+ },
2475
+ "9": {
2476
+ "input": null,
2477
+ "output": "#ffdac2"
2478
+ },
2479
+ "10": {
2480
+ "input": "#ffd7bd",
2481
+ "output": "#ffd7bd"
2482
+ },
2483
+ "11": {
2484
+ "input": null,
2485
+ "output": "#ffd3b8"
2486
+ },
2487
+ "12": {
2488
+ "input": null,
2489
+ "output": "#ffcfb2"
2490
+ },
2491
+ "13": {
2492
+ "input": null,
2493
+ "output": "#ffcbac"
2494
+ },
2495
+ "14": {
2496
+ "input": null,
2497
+ "output": "#ffc7a6"
2498
+ },
2499
+ "15": {
2500
+ "input": "#ffc39f",
2501
+ "output": "#ffc39f"
2502
+ },
2503
+ "16": {
2504
+ "input": null,
2505
+ "output": "#ffbf98"
2506
+ },
2507
+ "17": {
2508
+ "input": null,
2509
+ "output": "#ffbc92"
2510
+ },
2511
+ "18": {
2512
+ "input": null,
2513
+ "output": "#ffb98b"
2514
+ },
2515
+ "19": {
2516
+ "input": null,
2517
+ "output": "#ffb584"
2518
+ },
2519
+ "20": {
2520
+ "input": "#ffb27e",
2521
+ "output": "#ffb27e"
2522
+ },
2523
+ "21": {
2524
+ "input": null,
2525
+ "output": "#ffae78"
2526
+ },
2527
+ "22": {
2528
+ "input": null,
2529
+ "output": "#ffab71"
2530
+ },
2531
+ "23": {
2532
+ "input": null,
2533
+ "output": "#fea76b"
2534
+ },
2535
+ "24": {
2536
+ "input": null,
2537
+ "output": "#fea365"
2538
+ },
2539
+ "25": {
2540
+ "input": "#fe9f5f",
2541
+ "output": "#fe9f5f"
2542
+ },
2543
+ "26": {
2544
+ "input": null,
2545
+ "output": "#fe9b59"
2546
+ },
2547
+ "27": {
2548
+ "input": null,
2549
+ "output": "#fe9752"
2550
+ },
2551
+ "28": {
2552
+ "input": null,
2553
+ "output": "#fe934c"
2554
+ },
2555
+ "29": {
2556
+ "input": null,
2557
+ "output": "#ff8f46"
2558
+ },
2559
+ "30": {
2560
+ "input": "#ff8b40",
2561
+ "output": "#ff8b40"
2562
+ },
2563
+ "31": {
2564
+ "input": null,
2565
+ "output": "#ff873b"
2566
+ },
2567
+ "32": {
2568
+ "input": null,
2569
+ "output": "#ff8435"
2570
+ },
2571
+ "33": {
2572
+ "input": null,
2573
+ "output": "#ff8131"
2574
+ },
2575
+ "34": {
2576
+ "input": null,
2577
+ "output": "#ff7e2c"
2578
+ },
2579
+ "35": {
2580
+ "input": "#ff7b28",
2581
+ "output": "#ff7b28"
2582
+ },
2583
+ "36": {
2584
+ "input": null,
2585
+ "output": "#fe7824"
2586
+ },
2587
+ "37": {
2588
+ "input": null,
2589
+ "output": "#fc7520"
2590
+ },
2591
+ "38": {
2592
+ "input": null,
2593
+ "output": "#f9731c"
2594
+ },
2595
+ "39": {
2596
+ "input": null,
2597
+ "output": "#f77019"
2598
+ },
2599
+ "40": {
2600
+ "input": "#f46e15",
2601
+ "output": "#f46e15"
2602
+ },
2603
+ "41": {
2604
+ "input": null,
2605
+ "output": "#f16c11"
2606
+ },
2607
+ "42": {
2608
+ "input": null,
2609
+ "output": "#ef6a0e"
2610
+ },
2611
+ "43": {
2612
+ "input": null,
2613
+ "output": "#ec680b"
2614
+ },
2615
+ "44": {
2616
+ "input": null,
2617
+ "output": "#ea6507"
2618
+ },
2619
+ "45": {
2620
+ "input": "#e76205",
2621
+ "output": "#e76205"
2622
+ },
2623
+ "46": {
2624
+ "input": null,
2625
+ "output": "#e45e03"
2626
+ },
2627
+ "47": {
2628
+ "input": null,
2629
+ "output": "#e15b02"
2630
+ },
2631
+ "48": {
2632
+ "input": null,
2633
+ "output": "#de5702"
2634
+ },
2635
+ "49": {
2636
+ "input": null,
2637
+ "output": "#da5301"
2638
+ },
2639
+ "50": {
2640
+ "input": "#d75001",
2641
+ "output": "#d75001"
2642
+ },
2643
+ "51": {
2644
+ "input": null,
2645
+ "output": "#d34e01"
2646
+ },
2647
+ "52": {
2648
+ "input": null,
2649
+ "output": "#d04d01"
2650
+ },
2651
+ "53": {
2652
+ "input": null,
2653
+ "output": "#cc4b00"
2654
+ },
2655
+ "54": {
2656
+ "input": null,
2657
+ "output": "#c94a00"
2658
+ },
2659
+ "55": {
2660
+ "input": "#c54900",
2661
+ "output": "#c54900"
2662
+ },
2663
+ "56": {
2664
+ "input": null,
2665
+ "output": "#c14700"
2666
+ },
2667
+ "57": {
2668
+ "input": null,
2669
+ "output": "#be4500"
2670
+ },
2671
+ "58": {
2672
+ "input": null,
2673
+ "output": "#bb4200"
2674
+ },
2675
+ "59": {
2676
+ "input": null,
2677
+ "output": "#b73f00"
2678
+ },
2679
+ "60": {
2680
+ "input": "#b43c00",
2681
+ "output": "#b43c00"
2682
+ },
2683
+ "61": {
2684
+ "input": null,
2685
+ "output": "#b13900"
2686
+ },
2687
+ "62": {
2688
+ "input": null,
2689
+ "output": "#ae3700"
2690
+ },
2691
+ "63": {
2692
+ "input": null,
2693
+ "output": "#aa3500"
2694
+ },
2695
+ "64": {
2696
+ "input": null,
2697
+ "output": "#a83300"
2698
+ },
2699
+ "65": {
2700
+ "input": "#a53100",
2701
+ "output": "#a53100"
2702
+ },
2703
+ "66": {
2704
+ "input": null,
2705
+ "output": "#a32f00"
2706
+ },
2707
+ "67": {
2708
+ "input": null,
2709
+ "output": "#a02e00"
2710
+ },
2711
+ "68": {
2712
+ "input": null,
2713
+ "output": "#9d2c00"
2714
+ },
2715
+ "69": {
2716
+ "input": null,
2717
+ "output": "#992901"
2718
+ },
2719
+ "70": {
2720
+ "input": "#942601",
2721
+ "output": "#942601"
2722
+ },
2723
+ "71": {
2724
+ "input": null,
2725
+ "output": "#8d2201"
2726
+ },
2727
+ "72": {
2728
+ "input": null,
2729
+ "output": "#871e01"
2730
+ },
2731
+ "73": {
2732
+ "input": "#831b01",
2733
+ "output": "#831b01"
2734
+ },
2735
+ "74": {
2736
+ "input": null,
2737
+ "output": "#821901"
2738
+ },
2739
+ "75": {
2740
+ "input": "#811701",
2741
+ "output": "#811701"
2742
+ },
2743
+ "76": {
2744
+ "input": null,
2745
+ "output": "#7e1401"
2746
+ },
2747
+ "77": {
2748
+ "input": null,
2749
+ "output": "#791101"
2750
+ },
2751
+ "78": {
2752
+ "input": "#740e01",
2753
+ "output": "#740e01"
2754
+ },
2755
+ "79": {
2756
+ "input": null,
2757
+ "output": "#710b01"
2758
+ },
2759
+ "80": {
2760
+ "input": "#6f0801",
2761
+ "output": "#6f0801"
2762
+ },
2763
+ "81": {
2764
+ "input": null,
2765
+ "output": "#6c0601"
2766
+ },
2767
+ "82": {
2768
+ "input": null,
2769
+ "output": "#680501"
2770
+ },
2771
+ "83": {
2772
+ "input": "#650401",
2773
+ "output": "#650401"
2774
+ },
2775
+ "84": {
2776
+ "input": null,
2777
+ "output": "#620200"
2778
+ },
2779
+ "85": {
2780
+ "input": "#5f0000",
2781
+ "output": "#5f0000"
2782
+ },
2783
+ "86": {
2784
+ "input": null,
2785
+ "output": "#5b0000"
2786
+ },
2787
+ "87": {
2788
+ "input": null,
2789
+ "output": "#560000"
2790
+ },
2791
+ "88": {
2792
+ "input": "#520000",
2793
+ "output": "#520000"
2794
+ },
2795
+ "89": {
2796
+ "input": null,
2797
+ "output": "#500000"
2798
+ },
2799
+ "90": {
2800
+ "input": "#4e0000",
2801
+ "output": "#4e0000"
2802
+ },
2803
+ "91": {
2804
+ "input": null,
2805
+ "output": "#4b0000"
2806
+ },
2807
+ "92": {
2808
+ "input": null,
2809
+ "output": "#460000"
2810
+ },
2811
+ "93": {
2812
+ "input": "#420000",
2813
+ "output": "#420000"
2814
+ },
2815
+ "94": {
2816
+ "input": null,
2817
+ "output": "#3f0000"
2818
+ },
2819
+ "95": {
2820
+ "input": "#3c0000",
2821
+ "output": "#3c0000"
2822
+ },
2823
+ "96": {
2824
+ "input": null,
2825
+ "output": "#3a0000"
2826
+ },
2827
+ "97": {
2828
+ "input": null,
2829
+ "output": "#380001"
2830
+ },
2831
+ "98": {
2832
+ "input": null,
2833
+ "output": "#360001"
2834
+ },
2835
+ "99": {
2836
+ "input": null,
2837
+ "output": "#340002"
2838
+ },
2839
+ "100": {
2840
+ "input": "#320003",
2841
+ "output": "#320003"
2842
+ }
2843
+ },
2844
+ "yellow": {
2845
+ "0": {
2846
+ "input": "#fff9f1",
2847
+ "output": "#fff9f1"
2848
+ },
2849
+ "1": {
2850
+ "input": null,
2851
+ "output": "#fff6ec"
2852
+ },
2853
+ "2": {
2854
+ "input": null,
2855
+ "output": "#fff3e6"
2856
+ },
2857
+ "3": {
2858
+ "input": "#fff0e0",
2859
+ "output": "#fff0e0"
2860
+ },
2861
+ "4": {
2862
+ "input": null,
2863
+ "output": "#ffedd9"
2864
+ },
2865
+ "5": {
2866
+ "input": null,
2867
+ "output": "#ffe9d2"
2868
+ },
2869
+ "6": {
2870
+ "input": null,
2871
+ "output": "#ffe6cb"
2872
+ },
2873
+ "7": {
2874
+ "input": "#ffe2c2",
2875
+ "output": "#ffe2c2"
2876
+ },
2877
+ "8": {
2878
+ "input": null,
2879
+ "output": "#ffdfb9"
2880
+ },
2881
+ "9": {
2882
+ "input": null,
2883
+ "output": "#ffdbaf"
2884
+ },
2885
+ "10": {
2886
+ "input": "#ffd8a5",
2887
+ "output": "#ffd8a5"
2888
+ },
2889
+ "11": {
2890
+ "input": null,
2891
+ "output": "#ffd59b"
2892
+ },
2893
+ "12": {
2894
+ "input": null,
2895
+ "output": "#ffd292"
2896
+ },
2897
+ "13": {
2898
+ "input": null,
2899
+ "output": "#ffce88"
2900
+ },
2901
+ "14": {
2902
+ "input": null,
2903
+ "output": "#ffcb7f"
2904
+ },
2905
+ "15": {
2906
+ "input": "#ffc876",
2907
+ "output": "#ffc876"
2908
+ },
2909
+ "16": {
2910
+ "input": null,
2911
+ "output": "#ffc56d"
2912
+ },
2913
+ "17": {
2914
+ "input": null,
2915
+ "output": "#ffc264"
2916
+ },
2917
+ "18": {
2918
+ "input": null,
2919
+ "output": "#ffbe5b"
2920
+ },
2921
+ "19": {
2922
+ "input": null,
2923
+ "output": "#ffbb53"
2924
+ },
2925
+ "20": {
2926
+ "input": "#ffb84a",
2927
+ "output": "#ffb84a"
2928
+ },
2929
+ "21": {
2930
+ "input": null,
2931
+ "output": "#ffb541"
2932
+ },
2933
+ "22": {
2934
+ "input": null,
2935
+ "output": "#ffb239"
2936
+ },
2937
+ "23": {
2938
+ "input": null,
2939
+ "output": "#ffaf30"
2940
+ },
2941
+ "24": {
2942
+ "input": null,
2943
+ "output": "#ffac28"
2944
+ },
2945
+ "25": {
2946
+ "input": "#ffa920",
2947
+ "output": "#ffa920"
2948
+ },
2949
+ "26": {
2950
+ "input": null,
2951
+ "output": "#fda618"
2952
+ },
2953
+ "27": {
2954
+ "input": null,
2955
+ "output": "#faa411"
2956
+ },
2957
+ "28": {
2958
+ "input": null,
2959
+ "output": "#f7a20a"
2960
+ },
2961
+ "29": {
2962
+ "input": null,
2963
+ "output": "#f39f04"
2964
+ },
2965
+ "30": {
2966
+ "input": "#f09d01",
2967
+ "output": "#f09d01"
2968
+ },
2969
+ "31": {
2970
+ "input": null,
2971
+ "output": "#ed9b00"
2972
+ },
2973
+ "32": {
2974
+ "input": null,
2975
+ "output": "#ea9800"
2976
+ },
2977
+ "33": {
2978
+ "input": null,
2979
+ "output": "#e79600"
2980
+ },
2981
+ "34": {
2982
+ "input": null,
2983
+ "output": "#e59300"
2984
+ },
2985
+ "35": {
2986
+ "input": "#e29101",
2987
+ "output": "#e29101"
2988
+ },
2989
+ "36": {
2990
+ "input": null,
2991
+ "output": "#df8f01"
2992
+ },
2993
+ "37": {
2994
+ "input": null,
2995
+ "output": "#dc8c01"
2996
+ },
2997
+ "38": {
2998
+ "input": null,
2999
+ "output": "#d98a01"
3000
+ },
3001
+ "39": {
3002
+ "input": null,
3003
+ "output": "#d68700"
3004
+ },
3005
+ "40": {
3006
+ "input": "#d38500",
3007
+ "output": "#d38500"
3008
+ },
3009
+ "41": {
3010
+ "input": null,
3011
+ "output": "#d08300"
3012
+ },
3013
+ "42": {
3014
+ "input": null,
3015
+ "output": "#ce8100"
3016
+ },
3017
+ "43": {
3018
+ "input": null,
3019
+ "output": "#cb7e00"
3020
+ },
3021
+ "44": {
3022
+ "input": null,
3023
+ "output": "#c97c00"
3024
+ },
3025
+ "45": {
3026
+ "input": "#c67a00",
3027
+ "output": "#c67a00"
3028
+ },
3029
+ "46": {
3030
+ "input": null,
3031
+ "output": "#c37800"
3032
+ },
3033
+ "47": {
3034
+ "input": null,
3035
+ "output": "#c17501"
3036
+ },
3037
+ "48": {
3038
+ "input": null,
3039
+ "output": "#be7301"
3040
+ },
3041
+ "49": {
3042
+ "input": null,
3043
+ "output": "#bb7101"
3044
+ },
3045
+ "50": {
3046
+ "input": "#b86e01",
3047
+ "output": "#b86e01"
3048
+ },
3049
+ "51": {
3050
+ "input": null,
3051
+ "output": "#b56b01"
3052
+ },
3053
+ "52": {
3054
+ "input": null,
3055
+ "output": "#b26901"
3056
+ },
3057
+ "53": {
3058
+ "input": null,
3059
+ "output": "#af6600"
3060
+ },
3061
+ "54": {
3062
+ "input": null,
3063
+ "output": "#ac6300"
3064
+ },
3065
+ "55": {
3066
+ "input": "#a96100",
3067
+ "output": "#a96100"
3068
+ },
3069
+ "56": {
3070
+ "input": null,
3071
+ "output": "#a65f00"
3072
+ },
3073
+ "57": {
3074
+ "input": null,
3075
+ "output": "#a25c00"
3076
+ },
3077
+ "58": {
3078
+ "input": null,
3079
+ "output": "#9f5a00"
3080
+ },
3081
+ "59": {
3082
+ "input": null,
3083
+ "output": "#9b5800"
3084
+ },
3085
+ "60": {
3086
+ "input": "#985600",
3087
+ "output": "#985600"
3088
+ },
3089
+ "61": {
3090
+ "input": null,
3091
+ "output": "#955400"
3092
+ },
3093
+ "62": {
3094
+ "input": null,
3095
+ "output": "#925200"
3096
+ },
3097
+ "63": {
3098
+ "input": null,
3099
+ "output": "#8f5000"
3100
+ },
3101
+ "64": {
3102
+ "input": null,
3103
+ "output": "#8c4d00"
3104
+ },
3105
+ "65": {
3106
+ "input": "#894b00",
3107
+ "output": "#894b00"
3108
+ },
3109
+ "66": {
3110
+ "input": null,
3111
+ "output": "#864800"
3112
+ },
3113
+ "67": {
3114
+ "input": null,
3115
+ "output": "#834600"
3116
+ },
3117
+ "68": {
3118
+ "input": null,
3119
+ "output": "#804301"
3120
+ },
3121
+ "69": {
3122
+ "input": null,
3123
+ "output": "#7d4101"
3124
+ },
3125
+ "70": {
3126
+ "input": "#7b3f01",
3127
+ "output": "#7b3f01"
3128
+ },
3129
+ "71": {
3130
+ "input": null,
3131
+ "output": "#7a3d01"
3132
+ },
3133
+ "72": {
3134
+ "input": null,
3135
+ "output": "#783b01"
3136
+ },
3137
+ "73": {
3138
+ "input": "#743901",
3139
+ "output": "#743901"
3140
+ },
3141
+ "74": {
3142
+ "input": null,
3143
+ "output": "#6e3601"
3144
+ },
3145
+ "75": {
3146
+ "input": "#683301",
3147
+ "output": "#683301"
3148
+ },
3149
+ "76": {
3150
+ "input": null,
3151
+ "output": "#643101"
3152
+ },
3153
+ "77": {
3154
+ "input": null,
3155
+ "output": "#622f00"
3156
+ },
3157
+ "78": {
3158
+ "input": "#602d00",
3159
+ "output": "#602d00"
3160
+ },
3161
+ "79": {
3162
+ "input": null,
3163
+ "output": "#5c2a00"
3164
+ },
3165
+ "80": {
3166
+ "input": "#592800",
3167
+ "output": "#592800"
3168
+ },
3169
+ "81": {
3170
+ "input": null,
3171
+ "output": "#572600"
3172
+ },
3173
+ "82": {
3174
+ "input": null,
3175
+ "output": "#552500"
3176
+ },
3177
+ "83": {
3178
+ "input": "#522300",
3179
+ "output": "#522300"
3180
+ },
3181
+ "84": {
3182
+ "input": null,
3183
+ "output": "#4d2000"
3184
+ },
3185
+ "85": {
3186
+ "input": "#491d00",
3187
+ "output": "#491d00"
3188
+ },
3189
+ "86": {
3190
+ "input": null,
3191
+ "output": "#461b00"
3192
+ },
3193
+ "87": {
3194
+ "input": null,
3195
+ "output": "#441900"
3196
+ },
3197
+ "88": {
3198
+ "input": "#421700",
3199
+ "output": "#421700"
3200
+ },
3201
+ "89": {
3202
+ "input": null,
3203
+ "output": "#3f1500"
3204
+ },
3205
+ "90": {
3206
+ "input": "#3b1200",
3207
+ "output": "#3b1200"
3208
+ },
3209
+ "91": {
3210
+ "input": null,
3211
+ "output": "#380f00"
3212
+ },
3213
+ "92": {
3214
+ "input": null,
3215
+ "output": "#360d00"
3216
+ },
3217
+ "93": {
3218
+ "input": "#330a00",
3219
+ "output": "#330a00"
3220
+ },
3221
+ "94": {
3222
+ "input": null,
3223
+ "output": "#2f0700"
3224
+ },
3225
+ "95": {
3226
+ "input": "#2b0400",
3227
+ "output": "#2b0400"
3228
+ },
3229
+ "96": {
3230
+ "input": null,
3231
+ "output": "#280100"
3232
+ },
3233
+ "97": {
3234
+ "input": null,
3235
+ "output": "#260000"
3236
+ },
3237
+ "98": {
3238
+ "input": null,
3239
+ "output": "#250000"
3240
+ },
3241
+ "99": {
3242
+ "input": null,
3243
+ "output": "#240000"
3244
+ },
3245
+ "100": {
3246
+ "input": "#230000",
3247
+ "output": "#230000"
3248
+ }
3249
+ },
3250
+ "red": {
3251
+ "0": {
3252
+ "input": "#fff6f9",
3253
+ "output": "#fff6f9"
3254
+ },
3255
+ "1": {
3256
+ "input": null,
3257
+ "output": "#fff3f4"
3258
+ },
3259
+ "2": {
3260
+ "input": null,
3261
+ "output": "#ffefef"
3262
+ },
3263
+ "3": {
3264
+ "input": "#ffeceb",
3265
+ "output": "#ffeceb"
3266
+ },
3267
+ "4": {
3268
+ "input": null,
3269
+ "output": "#ffe8e7"
3270
+ },
3271
+ "5": {
3272
+ "input": null,
3273
+ "output": "#ffe5e3"
3274
+ },
3275
+ "6": {
3276
+ "input": null,
3277
+ "output": "#ffe1df"
3278
+ },
3279
+ "7": {
3280
+ "input": "#ffdedb",
3281
+ "output": "#ffdedb"
3282
+ },
3283
+ "8": {
3284
+ "input": null,
3285
+ "output": "#ffdbd7"
3286
+ },
3287
+ "9": {
3288
+ "input": null,
3289
+ "output": "#ffd8d2"
3290
+ },
3291
+ "10": {
3292
+ "input": "#ffd5ce",
3293
+ "output": "#ffd5ce"
3294
+ },
3295
+ "11": {
3296
+ "input": null,
3297
+ "output": "#ffd2ca"
3298
+ },
3299
+ "12": {
3300
+ "input": null,
3301
+ "output": "#ffcec6"
3302
+ },
3303
+ "13": {
3304
+ "input": null,
3305
+ "output": "#ffcbc2"
3306
+ },
3307
+ "14": {
3308
+ "input": null,
3309
+ "output": "#ffc7bd"
3310
+ },
3311
+ "15": {
3312
+ "input": "#ffc3b9",
3313
+ "output": "#ffc3b9"
3314
+ },
3315
+ "16": {
3316
+ "input": null,
3317
+ "output": "#ffbfb4"
3318
+ },
3319
+ "17": {
3320
+ "input": null,
3321
+ "output": "#ffbbaf"
3322
+ },
3323
+ "18": {
3324
+ "input": null,
3325
+ "output": "#ffb8aa"
3326
+ },
3327
+ "19": {
3328
+ "input": null,
3329
+ "output": "#ffb4a6"
3330
+ },
3331
+ "20": {
3332
+ "input": "#ffb0a1",
3333
+ "output": "#ffb0a1"
3334
+ },
3335
+ "21": {
3336
+ "input": null,
3337
+ "output": "#ffac9d"
3338
+ },
3339
+ "22": {
3340
+ "input": null,
3341
+ "output": "#fea999"
3342
+ },
3343
+ "23": {
3344
+ "input": null,
3345
+ "output": "#fea595"
3346
+ },
3347
+ "24": {
3348
+ "input": null,
3349
+ "output": "#fea191"
3350
+ },
3351
+ "25": {
3352
+ "input": "#fe9d8c",
3353
+ "output": "#fe9d8c"
3354
+ },
3355
+ "26": {
3356
+ "input": null,
3357
+ "output": "#fe9987"
3358
+ },
3359
+ "27": {
3360
+ "input": null,
3361
+ "output": "#fe9582"
3362
+ },
3363
+ "28": {
3364
+ "input": null,
3365
+ "output": "#ff907c"
3366
+ },
3367
+ "29": {
3368
+ "input": null,
3369
+ "output": "#ff8c77"
3370
+ },
3371
+ "30": {
3372
+ "input": "#ff8872",
3373
+ "output": "#ff8872"
3374
+ },
3375
+ "31": {
3376
+ "input": null,
3377
+ "output": "#ff846e"
3378
+ },
3379
+ "32": {
3380
+ "input": null,
3381
+ "output": "#ff806a"
3382
+ },
3383
+ "33": {
3384
+ "input": null,
3385
+ "output": "#ff7c66"
3386
+ },
3387
+ "34": {
3388
+ "input": null,
3389
+ "output": "#ff7862"
3390
+ },
3391
+ "35": {
3392
+ "input": "#ff745f",
3393
+ "output": "#ff745f"
3394
+ },
3395
+ "36": {
3396
+ "input": null,
3397
+ "output": "#ff705c"
3398
+ },
3399
+ "37": {
3400
+ "input": null,
3401
+ "output": "#ff6c58"
3402
+ },
3403
+ "38": {
3404
+ "input": null,
3405
+ "output": "#ff6754"
3406
+ },
3407
+ "39": {
3408
+ "input": null,
3409
+ "output": "#ff6351"
3410
+ },
3411
+ "40": {
3412
+ "input": "#ff5f4d",
3413
+ "output": "#ff5f4d"
3414
+ },
3415
+ "41": {
3416
+ "input": null,
3417
+ "output": "#fe5b49"
3418
+ },
3419
+ "42": {
3420
+ "input": null,
3421
+ "output": "#fd5745"
3422
+ },
3423
+ "43": {
3424
+ "input": null,
3425
+ "output": "#fc5442"
3426
+ },
3427
+ "44": {
3428
+ "input": null,
3429
+ "output": "#fa503f"
3430
+ },
3431
+ "45": {
3432
+ "input": "#f84d3c",
3433
+ "output": "#f84d3c"
3434
+ },
3435
+ "46": {
3436
+ "input": null,
3437
+ "output": "#f54a3a"
3438
+ },
3439
+ "47": {
3440
+ "input": null,
3441
+ "output": "#f24839"
3442
+ },
3443
+ "48": {
3444
+ "input": null,
3445
+ "output": "#ef4537"
3446
+ },
3447
+ "49": {
3448
+ "input": null,
3449
+ "output": "#eb4336"
3450
+ },
3451
+ "50": {
3452
+ "input": "#e74135",
3453
+ "output": "#e74135"
3454
+ },
3455
+ "51": {
3456
+ "input": null,
3457
+ "output": "#e33f33"
3458
+ },
3459
+ "52": {
3460
+ "input": null,
3461
+ "output": "#df3d31"
3462
+ },
3463
+ "53": {
3464
+ "input": null,
3465
+ "output": "#db3b2f"
3466
+ },
3467
+ "54": {
3468
+ "input": null,
3469
+ "output": "#d7392d"
3470
+ },
3471
+ "55": {
3472
+ "input": "#d3372b",
3473
+ "output": "#d3372b"
3474
+ },
3475
+ "56": {
3476
+ "input": null,
3477
+ "output": "#cf3429"
3478
+ },
3479
+ "57": {
3480
+ "input": null,
3481
+ "output": "#cb3227"
3482
+ },
3483
+ "58": {
3484
+ "input": null,
3485
+ "output": "#c72f25"
3486
+ },
3487
+ "59": {
3488
+ "input": null,
3489
+ "output": "#c32c24"
3490
+ },
3491
+ "60": {
3492
+ "input": "#bf2a23",
3493
+ "output": "#bf2a23"
3494
+ },
3495
+ "61": {
3496
+ "input": null,
3497
+ "output": "#bb2822"
3498
+ },
3499
+ "62": {
3500
+ "input": null,
3501
+ "output": "#b82622"
3502
+ },
3503
+ "63": {
3504
+ "input": null,
3505
+ "output": "#b42521"
3506
+ },
3507
+ "64": {
3508
+ "input": null,
3509
+ "output": "#b12320"
3510
+ },
3511
+ "65": {
3512
+ "input": "#ad221f",
3513
+ "output": "#ad221f"
3514
+ },
3515
+ "66": {
3516
+ "input": null,
3517
+ "output": "#a9211d"
3518
+ },
3519
+ "67": {
3520
+ "input": null,
3521
+ "output": "#a61f1b"
3522
+ },
3523
+ "68": {
3524
+ "input": null,
3525
+ "output": "#a21e1a"
3526
+ },
3527
+ "69": {
3528
+ "input": null,
3529
+ "output": "#9e1c19"
3530
+ },
3531
+ "70": {
3532
+ "input": "#9a1a19",
3533
+ "output": "#9a1a19"
3534
+ },
3535
+ "71": {
3536
+ "input": null,
3537
+ "output": "#96181a"
3538
+ },
3539
+ "72": {
3540
+ "input": null,
3541
+ "output": "#91151b"
3542
+ },
3543
+ "73": {
3544
+ "input": "#8d1119",
3545
+ "output": "#8d1119"
3546
+ },
3547
+ "74": {
3548
+ "input": null,
3549
+ "output": "#890d14"
3550
+ },
3551
+ "75": {
3552
+ "input": "#840b10",
3553
+ "output": "#840b10"
3554
+ },
3555
+ "76": {
3556
+ "input": null,
3557
+ "output": "#7f0c10"
3558
+ },
3559
+ "77": {
3560
+ "input": null,
3561
+ "output": "#7b0e12"
3562
+ },
3563
+ "78": {
3564
+ "input": "#770d12",
3565
+ "output": "#770d12"
3566
+ },
3567
+ "79": {
3568
+ "input": null,
3569
+ "output": "#74080e"
3570
+ },
3571
+ "80": {
3572
+ "input": "#710208",
3573
+ "output": "#710208"
3574
+ },
3575
+ "81": {
3576
+ "input": null,
3577
+ "output": "#6f0004"
3578
+ },
3579
+ "82": {
3580
+ "input": null,
3581
+ "output": "#6e0002"
3582
+ },
3583
+ "83": {
3584
+ "input": "#6a0101",
3585
+ "output": "#6a0101"
3586
+ },
3587
+ "84": {
3588
+ "input": null,
3589
+ "output": "#640101"
3590
+ },
3591
+ "85": {
3592
+ "input": "#5e0000",
3593
+ "output": "#5e0000"
3594
+ },
3595
+ "86": {
3596
+ "input": null,
3597
+ "output": "#5b0000"
3598
+ },
3599
+ "87": {
3600
+ "input": null,
3601
+ "output": "#5a0000"
3602
+ },
3603
+ "88": {
3604
+ "input": "#570000",
3605
+ "output": "#570000"
3606
+ },
3607
+ "89": {
3608
+ "input": null,
3609
+ "output": "#510001"
3610
+ },
3611
+ "90": {
3612
+ "input": "#4a0001",
3613
+ "output": "#4a0001"
3614
+ },
3615
+ "91": {
3616
+ "input": null,
3617
+ "output": "#460001"
3618
+ },
3619
+ "92": {
3620
+ "input": null,
3621
+ "output": "#450001"
3622
+ },
3623
+ "93": {
3624
+ "input": "#420001",
3625
+ "output": "#420001"
3626
+ },
3627
+ "94": {
3628
+ "input": null,
3629
+ "output": "#3d0001"
3630
+ },
3631
+ "95": {
3632
+ "input": "#380001",
3633
+ "output": "#380001"
3634
+ },
3635
+ "96": {
3636
+ "input": null,
3637
+ "output": "#340001"
3638
+ },
3639
+ "97": {
3640
+ "input": null,
3641
+ "output": "#310001"
3642
+ },
3643
+ "98": {
3644
+ "input": null,
3645
+ "output": "#300001"
3646
+ },
3647
+ "99": {
3648
+ "input": null,
3649
+ "output": "#2f0002"
3650
+ },
3651
+ "100": {
3652
+ "input": "#2e0002",
3653
+ "output": "#2e0002"
3654
+ }
3655
+ },
3656
+ "parsely-green": {
3657
+ "0": {
3658
+ "input": "#f3feed",
3659
+ "output": "#f3feed"
3660
+ },
3661
+ "1": {
3662
+ "input": null,
3663
+ "output": "#effde8"
3664
+ },
3665
+ "2": {
3666
+ "input": null,
3667
+ "output": "#ecfce3"
3668
+ },
3669
+ "3": {
3670
+ "input": "#e9fbdf",
3671
+ "output": "#e9fbdf"
3672
+ },
3673
+ "4": {
3674
+ "input": null,
3675
+ "output": "#e6fadb"
3676
+ },
3677
+ "5": {
3678
+ "input": null,
3679
+ "output": "#e3f9d7"
3680
+ },
3681
+ "6": {
3682
+ "input": null,
3683
+ "output": "#e0f7d3"
3684
+ },
3685
+ "7": {
3686
+ "input": "#dbf5cc",
3687
+ "output": "#dbf5cc"
3688
+ },
3689
+ "8": {
3690
+ "input": null,
3691
+ "output": "#d5f2c3"
3692
+ },
3693
+ "9": {
3694
+ "input": null,
3695
+ "output": "#cdefb9"
3696
+ },
3697
+ "10": {
3698
+ "input": "#c6ecb0",
3699
+ "output": "#c6ecb0"
3700
+ },
3701
+ "11": {
3702
+ "input": null,
3703
+ "output": "#c0eaa8"
3704
+ },
3705
+ "12": {
3706
+ "input": null,
3707
+ "output": "#bbe8a1"
3708
+ },
3709
+ "13": {
3710
+ "input": null,
3711
+ "output": "#b6e69c"
3712
+ },
3713
+ "14": {
3714
+ "input": null,
3715
+ "output": "#b2e597"
3716
+ },
3717
+ "15": {
3718
+ "input": "#afe393",
3719
+ "output": "#afe393"
3720
+ },
3721
+ "16": {
3722
+ "input": null,
3723
+ "output": "#ace18f"
3724
+ },
3725
+ "17": {
3726
+ "input": null,
3727
+ "output": "#a9df8b"
3728
+ },
3729
+ "18": {
3730
+ "input": null,
3731
+ "output": "#a6dc88"
3732
+ },
3733
+ "19": {
3734
+ "input": null,
3735
+ "output": "#a3da85"
3736
+ },
3737
+ "20": {
3738
+ "input": "#a0d782",
3739
+ "output": "#a0d782"
3740
+ },
3741
+ "21": {
3742
+ "input": null,
3743
+ "output": "#9ed580"
3744
+ },
3745
+ "22": {
3746
+ "input": null,
3747
+ "output": "#9bd27d"
3748
+ },
3749
+ "23": {
3750
+ "input": null,
3751
+ "output": "#99d07b"
3752
+ },
3753
+ "24": {
3754
+ "input": null,
3755
+ "output": "#96cd79"
3756
+ },
3757
+ "25": {
3758
+ "input": "#94cb77",
3759
+ "output": "#94cb77"
3760
+ },
3761
+ "26": {
3762
+ "input": null,
3763
+ "output": "#91c875"
3764
+ },
3765
+ "27": {
3766
+ "input": null,
3767
+ "output": "#8fc672"
3768
+ },
3769
+ "28": {
3770
+ "input": null,
3771
+ "output": "#8cc370"
3772
+ },
3773
+ "29": {
3774
+ "input": null,
3775
+ "output": "#89c16d"
3776
+ },
3777
+ "30": {
3778
+ "input": "#87be6b",
3779
+ "output": "#87be6b"
3780
+ },
3781
+ "31": {
3782
+ "input": null,
3783
+ "output": "#85bc69"
3784
+ },
3785
+ "32": {
3786
+ "input": null,
3787
+ "output": "#83b967"
3788
+ },
3789
+ "33": {
3790
+ "input": null,
3791
+ "output": "#80b764"
3792
+ },
3793
+ "34": {
3794
+ "input": null,
3795
+ "output": "#7eb462"
3796
+ },
3797
+ "35": {
3798
+ "input": "#7cb260",
3799
+ "output": "#7cb260"
3800
+ },
3801
+ "36": {
3802
+ "input": null,
3803
+ "output": "#7ab05e"
3804
+ },
3805
+ "37": {
3806
+ "input": null,
3807
+ "output": "#77ad5b"
3808
+ },
3809
+ "38": {
3810
+ "input": null,
3811
+ "output": "#74ab59"
3812
+ },
3813
+ "39": {
3814
+ "input": null,
3815
+ "output": "#72a856"
3816
+ },
3817
+ "40": {
3818
+ "input": "#6fa654",
3819
+ "output": "#6fa654"
3820
+ },
3821
+ "41": {
3822
+ "input": null,
3823
+ "output": "#6da452"
3824
+ },
3825
+ "42": {
3826
+ "input": null,
3827
+ "output": "#6aa14f"
3828
+ },
3829
+ "43": {
3830
+ "input": null,
3831
+ "output": "#689f4d"
3832
+ },
3833
+ "44": {
3834
+ "input": null,
3835
+ "output": "#669c4b"
3836
+ },
3837
+ "45": {
3838
+ "input": "#649a49",
3839
+ "output": "#649a49"
3840
+ },
3841
+ "46": {
3842
+ "input": null,
3843
+ "output": "#629847"
3844
+ },
3845
+ "47": {
3846
+ "input": null,
3847
+ "output": "#609545"
3848
+ },
3849
+ "48": {
3850
+ "input": null,
3851
+ "output": "#5d9343"
3852
+ },
3853
+ "49": {
3854
+ "input": null,
3855
+ "output": "#5b9040"
3856
+ },
3857
+ "50": {
3858
+ "input": "#588e3e",
3859
+ "output": "#588e3e"
3860
+ },
3861
+ "51": {
3862
+ "input": null,
3863
+ "output": "#558b3c"
3864
+ },
3865
+ "52": {
3866
+ "input": null,
3867
+ "output": "#528939"
3868
+ },
3869
+ "53": {
3870
+ "input": null,
3871
+ "output": "#4e8636"
3872
+ },
3873
+ "54": {
3874
+ "input": null,
3875
+ "output": "#4b8434"
3876
+ },
3877
+ "55": {
3878
+ "input": "#488131",
3879
+ "output": "#488131"
3880
+ },
3881
+ "56": {
3882
+ "input": null,
3883
+ "output": "#457e2e"
3884
+ },
3885
+ "57": {
3886
+ "input": null,
3887
+ "output": "#437c2c"
3888
+ },
3889
+ "58": {
3890
+ "input": null,
3891
+ "output": "#407929"
3892
+ },
3893
+ "59": {
3894
+ "input": null,
3895
+ "output": "#3e7627"
3896
+ },
3897
+ "60": {
3898
+ "input": "#3b7425",
3899
+ "output": "#3b7425"
3900
+ },
3901
+ "61": {
3902
+ "input": null,
3903
+ "output": "#387223"
3904
+ },
3905
+ "62": {
3906
+ "input": null,
3907
+ "output": "#356f21"
3908
+ },
3909
+ "63": {
3910
+ "input": null,
3911
+ "output": "#316d1f"
3912
+ },
3913
+ "64": {
3914
+ "input": null,
3915
+ "output": "#2d6b1d"
3916
+ },
3917
+ "65": {
3918
+ "input": "#29681b",
3919
+ "output": "#29681b"
3920
+ },
3921
+ "66": {
3922
+ "input": null,
3923
+ "output": "#256518"
3924
+ },
3925
+ "67": {
3926
+ "input": null,
3927
+ "output": "#216215"
3928
+ },
3929
+ "68": {
3930
+ "input": null,
3931
+ "output": "#1d6012"
3932
+ },
3933
+ "69": {
3934
+ "input": null,
3935
+ "output": "#195e0f"
3936
+ },
3937
+ "70": {
3938
+ "input": "#165c0d",
3939
+ "output": "#165c0d"
3940
+ },
3941
+ "71": {
3942
+ "input": null,
3943
+ "output": "#135b0b"
3944
+ },
3945
+ "72": {
3946
+ "input": null,
3947
+ "output": "#105a09"
3948
+ },
3949
+ "73": {
3950
+ "input": "#0b5706",
3951
+ "output": "#0b5706"
3952
+ },
3953
+ "74": {
3954
+ "input": null,
3955
+ "output": "#055302"
3956
+ },
3957
+ "75": {
3958
+ "input": "#004e00",
3959
+ "output": "#004e00"
3960
+ },
3961
+ "76": {
3962
+ "input": null,
3963
+ "output": "#004b00"
3964
+ },
3965
+ "77": {
3966
+ "input": null,
3967
+ "output": "#004900"
3968
+ },
3969
+ "78": {
3970
+ "input": "#004700",
3971
+ "output": "#004700"
3972
+ },
3973
+ "79": {
3974
+ "input": null,
3975
+ "output": "#004500"
3976
+ },
3977
+ "80": {
3978
+ "input": "#004200",
3979
+ "output": "#004200"
3980
+ },
3981
+ "81": {
3982
+ "input": null,
3983
+ "output": "#004000"
3984
+ },
3985
+ "82": {
3986
+ "input": null,
3987
+ "output": "#003e00"
3988
+ },
3989
+ "83": {
3990
+ "input": "#003b00",
3991
+ "output": "#003b00"
3992
+ },
3993
+ "84": {
3994
+ "input": null,
3995
+ "output": "#003800"
3996
+ },
3997
+ "85": {
3998
+ "input": "#003500",
3999
+ "output": "#003500"
4000
+ },
4001
+ "86": {
4002
+ "input": null,
4003
+ "output": "#030"
4004
+ },
4005
+ "87": {
4006
+ "input": null,
4007
+ "output": "#003200"
4008
+ },
4009
+ "88": {
4010
+ "input": "#003000",
4011
+ "output": "#003000"
4012
+ },
4013
+ "89": {
4014
+ "input": null,
4015
+ "output": "#002c00"
4016
+ },
4017
+ "90": {
4018
+ "input": "#002900",
4019
+ "output": "#002900"
4020
+ },
4021
+ "91": {
4022
+ "input": null,
4023
+ "output": "#002700"
4024
+ },
4025
+ "92": {
4026
+ "input": null,
4027
+ "output": "#002600"
4028
+ },
4029
+ "93": {
4030
+ "input": "#002400",
4031
+ "output": "#002400"
4032
+ },
4033
+ "94": {
4034
+ "input": null,
4035
+ "output": "#012000"
4036
+ },
4037
+ "95": {
4038
+ "input": "#001b00",
4039
+ "output": "#001b00"
4040
+ },
4041
+ "96": {
4042
+ "input": null,
4043
+ "output": "#001700"
4044
+ },
4045
+ "97": {
4046
+ "input": null,
4047
+ "output": "#001300"
4048
+ },
4049
+ "98": {
4050
+ "input": null,
4051
+ "output": "#000f00"
4052
+ },
4053
+ "99": {
4054
+ "input": null,
4055
+ "output": "#000c00"
4056
+ },
4057
+ "100": {
4058
+ "input": "#000800",
4059
+ "output": "#000800"
4060
+ }
4061
+ }
4062
+ }