@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.
- package/.eslintignore +2 -1
- package/.prettierignore +1 -0
- package/.storybook/decorators/withBoundingBox.tsx +30 -4
- package/.storybook/decorators/withColorMode.tsx +5 -5
- package/CONTRIBUTING.md +1 -1
- package/build/system/Accordion/Accordion.js +6 -6
- package/build/system/Accordion/Accordion.stories.js +1 -1
- package/build/system/Accordion/Accordion.test.js +7 -5
- package/build/system/Avatar/Avatar.js +3 -2
- package/build/system/Badge/Badge.js +1 -0
- package/build/system/Button/Button.d.ts +11 -0
- package/build/system/Button/Button.js +12 -1
- package/build/system/Button/Button.stories.d.ts +2 -1
- package/build/system/Button/Button.stories.js +1 -2
- package/build/system/Button/Button.test.js +72 -45
- package/build/system/Button/ButtonSubmit.d.ts +17 -1
- package/build/system/Button/ButtonSubmit.js +58 -65
- package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
- package/build/system/Button/ButtonSubmit.stories.js +52 -0
- package/build/system/Button/ButtonSubmit.test.js +55 -35
- package/build/system/Button/index.d.ts +7 -3
- package/build/system/Button/index.js +8 -7
- package/build/system/Dropdown/DropdownContent.js +1 -1
- package/build/system/Dropdown/DropdownItem.js +1 -1
- package/build/system/Dropdown/DropdownLabel.js +1 -1
- package/build/system/Form/Checkbox.d.ts +9 -9
- package/build/system/Form/Checkbox.js +56 -61
- package/build/system/Form/Checkbox.stories.d.ts +6 -6
- package/build/system/Form/Checkbox.stories.js +71 -0
- package/build/system/Form/Input.d.ts +14 -1
- package/build/system/Form/Input.js +59 -72
- package/build/system/Form/Input.stories.d.ts +6 -4
- package/build/system/Form/Input.stories.js +53 -0
- package/build/system/Form/Input.styles.d.ts +23 -14
- package/build/system/Form/Input.styles.js +40 -28
- package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/build/system/Form/Label.d.ts +19 -8
- package/build/system/Form/Label.js +39 -43
- package/build/system/Form/Label.stories.d.ts +7 -5
- package/build/system/Form/Label.stories.js +32 -0
- package/build/system/Form/Radio.js +4 -4
- package/build/system/Form/Radio.stories.jsx +1 -1
- package/build/system/Form/RadioBoxGroup.js +1 -1
- package/build/system/Form/RequiredLabel.d.ts +2 -1
- package/build/system/Form/RequiredLabel.js +16 -7
- package/build/system/Form/Toggle.js +2 -2
- package/build/system/Form/Validation.d.ts +8 -13
- package/build/system/Form/Validation.js +39 -35
- package/build/system/Heading/Heading.stories.js +3 -0
- package/build/system/Link/Link.js +1 -1
- package/build/system/NewDialog/DialogClose.js +2 -2
- package/build/system/NewDialog/DialogContent.js +3 -3
- package/build/system/NewDialog/DialogTitle.js +3 -1
- package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
- package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/build/system/NewForm/Fieldset.d.ts +12 -1
- package/build/system/NewForm/Fieldset.js +38 -40
- package/build/system/NewForm/Form.d.ts +8 -1
- package/build/system/NewForm/Form.js +24 -23
- package/build/system/NewForm/FormAutocomplete.css +0 -11
- package/build/system/NewForm/FormAutocomplete.js +8 -8
- package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/build/system/NewForm/FormSelect.js +1 -1
- package/build/system/NewForm/FormSelectArrow.js +1 -1
- package/build/system/NewForm/FormSelectInline.js +1 -1
- package/build/system/NewForm/FormSelectLoading.js +1 -1
- package/build/system/NewForm/FormSelectSearch.js +2 -2
- package/build/system/NewForm/Legend.d.ts +12 -1
- package/build/system/NewForm/Legend.js +32 -34
- package/build/system/NewForm/index.d.ts +1 -1
- package/build/system/OptionRow/OptionRow.js +1 -1
- package/build/system/Progress/Progress.d.ts +9 -2
- package/build/system/Progress/Progress.js +75 -70
- package/build/system/Progress/Progress.stories.d.ts +9 -7
- package/build/system/Progress/Progress.stories.js +34 -0
- package/build/system/Progress/Progress.test.d.ts +1 -0
- package/build/system/Progress/Progress.test.js +65 -0
- package/build/system/Progress/index.d.ts +4 -2
- package/build/system/Progress/index.js +5 -5
- package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
- package/build/system/Tabs/TabsTrigger.js +0 -1
- package/build/system/Text/Text.js +1 -1
- package/build/system/Text/Text.stories.js +36 -0
- package/build/system/Tooltip/Tooltip.css +6 -2
- package/build/system/Tooltip/Tooltip.stories.js +2 -2
- package/build/system/Wizard/Wizard.d.ts +14 -1
- package/build/system/Wizard/Wizard.js +62 -93
- package/build/system/Wizard/Wizard.stories.d.ts +11 -8
- package/build/system/Wizard/Wizard.stories.js +167 -0
- package/build/system/Wizard/WizardStep.d.ts +24 -1
- package/build/system/Wizard/WizardStep.js +180 -190
- package/build/system/Wizard/index.d.ts +4 -2
- package/build/system/Wizard/index.js +6 -7
- package/build/system/index.d.ts +2 -2
- package/build/system/index.js +2 -1
- package/build/system/theme/generated/valet-theme-dark.json +1219 -476
- package/build/system/theme/generated/valet-theme-light.json +1217 -474
- package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
- package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
- package/build/system/theme/index.d.ts +20 -65
- package/build/system/theme/index.js +27 -57
- package/package.json +4 -4
- package/src/system/Accordion/Accordion.stories.tsx +1 -1
- package/src/system/Accordion/Accordion.test.tsx +3 -0
- package/src/system/Accordion/Accordion.tsx +6 -6
- package/src/system/Avatar/Avatar.tsx +3 -3
- package/src/system/Badge/Badge.tsx +1 -1
- package/src/system/Button/Button.stories.tsx +2 -3
- package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
- package/src/system/Button/Button.tsx +12 -0
- package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
- package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
- package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
- package/src/system/Button/index.ts +8 -0
- package/src/system/Dropdown/DropdownContent.js +1 -1
- package/src/system/Dropdown/DropdownItem.js +1 -1
- package/src/system/Dropdown/DropdownLabel.js +1 -1
- package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
- package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
- package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
- package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
- package/src/system/Form/{Input.js → Input.tsx} +10 -19
- package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/src/system/Form/{Label.js → Label.tsx} +8 -13
- package/src/system/Form/Radio.js +4 -4
- package/src/system/Form/Radio.stories.jsx +1 -1
- package/src/system/Form/RadioBoxGroup.js +1 -1
- package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
- package/src/system/Form/Toggle.js +2 -2
- package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
- package/src/system/Heading/Heading.stories.tsx +1 -0
- package/src/system/Link/Link.tsx +1 -1
- package/src/system/NewDialog/DialogClose.js +2 -2
- package/src/system/NewDialog/DialogContent.js +3 -3
- package/src/system/NewDialog/DialogTitle.js +3 -1
- package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/src/system/NewForm/Fieldset.tsx +46 -0
- package/src/system/NewForm/Form.tsx +23 -0
- package/src/system/NewForm/FormAutocomplete.css +0 -11
- package/src/system/NewForm/FormAutocomplete.js +8 -8
- package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/src/system/NewForm/FormSelect.js +1 -1
- package/src/system/NewForm/FormSelectArrow.js +1 -1
- package/src/system/NewForm/FormSelectInline.js +1 -1
- package/src/system/NewForm/FormSelectLoading.js +1 -1
- package/src/system/NewForm/FormSelectSearch.js +2 -2
- package/src/system/NewForm/Legend.tsx +40 -0
- package/src/system/OptionRow/OptionRow.js +1 -1
- package/src/system/Progress/Progress.test.tsx +33 -0
- package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
- package/src/system/Progress/index.ts +4 -0
- package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
- package/src/system/Tabs/TabsTrigger.js +0 -1
- package/src/system/Text/Text.stories.tsx +7 -0
- package/src/system/Text/Text.tsx +1 -1
- package/src/system/Tooltip/Tooltip.css +6 -2
- package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
- package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
- package/src/system/Wizard/Wizard.tsx +62 -0
- package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
- package/src/system/Wizard/index.ts +7 -0
- package/src/system/index.js +2 -1
- package/src/system/theme/generated/valet-theme-dark.json +1219 -476
- package/src/system/theme/generated/valet-theme-light.json +1217 -474
- package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
- package/src/system/theme/index.js +27 -57
- package/tokens/utilities/colors/color output/blue.json +305 -0
- package/tokens/utilities/colors/color output/gold.json +305 -0
- package/tokens/utilities/colors/color output/gray.json +305 -0
- package/tokens/utilities/colors/color output/green.json +305 -0
- package/tokens/utilities/colors/color output/orange.json +305 -0
- package/tokens/utilities/colors/color output/pink.json +305 -0
- package/tokens/utilities/colors/color output/red.json +305 -0
- package/tokens/utilities/colors/color output/salmon.json +305 -0
- package/tokens/utilities/colors/color output/yellow.json +305 -0
- package/tokens/utilities/colors/colorOutput.json +4062 -0
- package/tokens/utilities/colors/color_3d_plot.js +43 -0
- package/tokens/utilities/colors/color_graph.js +31 -0
- package/tokens/utilities/colors/colors.json +1981 -0
- package/tokens/utilities/colors/index.js +118 -0
- package/tokens/utilities/colors/package-lock.json +6749 -0
- package/tokens/utilities/colors/package.json +21 -0
- package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
- package/tokens/valet-core/$metadata.json +19 -15
- package/tokens/valet-core/$themes.json +3323 -419
- package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
- package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
- package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
- package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
- package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
- package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
- package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
- package/tokens/valet-core/valet-core.json +331 -232
- package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
- package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
- package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
- package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
- package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
- package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
- package/tokens/valet-core/wpvip-services-web-type.json +412 -0
- package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
- package/tokens/valet-core/wpvip-web-color.json +730 -0
- package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
- package/tokens/valet-core/wpvip-web.json +1310 -0
- package/tsconfig.json +2 -1
- package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/build/system/Button/variants.d.ts +0 -2
- package/build/system/Button/variants.js +0 -1
- package/build/system/Form/Checkbox.stories.jsx +0 -54
- package/build/system/Form/Input.stories.jsx +0 -38
- package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
- package/build/system/Wizard/WizardStepHorizontal.js +0 -55
- package/build/system/theme/textStyles.d.ts +0 -71
- package/build/system/theme/textStyles.js +0 -46
- package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/src/system/Button/index.js +0 -8
- package/src/system/Button/variants.js +0 -1
- package/src/system/Form/Label.stories.jsx +0 -36
- package/src/system/NewForm/Fieldset.js +0 -47
- package/src/system/NewForm/Form.js +0 -26
- package/src/system/NewForm/Legend.js +0 -41
- package/src/system/Progress/Progress.stories.jsx +0 -25
- package/src/system/Progress/index.js +0 -6
- package/src/system/Wizard/Wizard.js +0 -103
- package/src/system/Wizard/Wizard.stories.jsx +0 -145
- package/src/system/Wizard/WizardStepHorizontal.js +0 -55
- package/src/system/Wizard/index.js +0 -8
- package/src/system/theme/textStyles.js +0 -46
- /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
- /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
{
|
|
2
|
+
"0": {
|
|
3
|
+
"output": "#fcfafa"
|
|
4
|
+
},
|
|
5
|
+
"1": {
|
|
6
|
+
"output": "#faf7f7"
|
|
7
|
+
},
|
|
8
|
+
"2": {
|
|
9
|
+
"output": "#f7f4f4"
|
|
10
|
+
},
|
|
11
|
+
"3": {
|
|
12
|
+
"output": "#f5f2f1"
|
|
13
|
+
},
|
|
14
|
+
"4": {
|
|
15
|
+
"output": "#f3f0ee"
|
|
16
|
+
},
|
|
17
|
+
"5": {
|
|
18
|
+
"output": "#f1eeeb"
|
|
19
|
+
},
|
|
20
|
+
"6": {
|
|
21
|
+
"output": "#f0ece8"
|
|
22
|
+
},
|
|
23
|
+
"7": {
|
|
24
|
+
"output": "#eeeae5"
|
|
25
|
+
},
|
|
26
|
+
"8": {
|
|
27
|
+
"output": "#ede8e2"
|
|
28
|
+
},
|
|
29
|
+
"9": {
|
|
30
|
+
"output": "#ebe6de"
|
|
31
|
+
},
|
|
32
|
+
"10": {
|
|
33
|
+
"output": "#eae3da"
|
|
34
|
+
},
|
|
35
|
+
"11": {
|
|
36
|
+
"output": "#e9e0d4"
|
|
37
|
+
},
|
|
38
|
+
"12": {
|
|
39
|
+
"output": "#e7dccd"
|
|
40
|
+
},
|
|
41
|
+
"13": {
|
|
42
|
+
"output": "#e6d8c6"
|
|
43
|
+
},
|
|
44
|
+
"14": {
|
|
45
|
+
"output": "#e4d4bf"
|
|
46
|
+
},
|
|
47
|
+
"15": {
|
|
48
|
+
"output": "#e3d0b8"
|
|
49
|
+
},
|
|
50
|
+
"16": {
|
|
51
|
+
"output": "#e2cdb2"
|
|
52
|
+
},
|
|
53
|
+
"17": {
|
|
54
|
+
"output": "#e1caad"
|
|
55
|
+
},
|
|
56
|
+
"18": {
|
|
57
|
+
"output": "#e0c8a8"
|
|
58
|
+
},
|
|
59
|
+
"19": {
|
|
60
|
+
"output": "#e0c5a3"
|
|
61
|
+
},
|
|
62
|
+
"20": {
|
|
63
|
+
"output": "#dfc39e"
|
|
64
|
+
},
|
|
65
|
+
"21": {
|
|
66
|
+
"output": "#dfc099"
|
|
67
|
+
},
|
|
68
|
+
"22": {
|
|
69
|
+
"output": "#debe93"
|
|
70
|
+
},
|
|
71
|
+
"23": {
|
|
72
|
+
"output": "#ddba8d"
|
|
73
|
+
},
|
|
74
|
+
"24": {
|
|
75
|
+
"output": "#ddb787"
|
|
76
|
+
},
|
|
77
|
+
"25": {
|
|
78
|
+
"output": "#dcb480"
|
|
79
|
+
},
|
|
80
|
+
"26": {
|
|
81
|
+
"output": "#dbb179"
|
|
82
|
+
},
|
|
83
|
+
"27": {
|
|
84
|
+
"output": "#daad73"
|
|
85
|
+
},
|
|
86
|
+
"28": {
|
|
87
|
+
"output": "#d9aa6c"
|
|
88
|
+
},
|
|
89
|
+
"29": {
|
|
90
|
+
"output": "#d8a765"
|
|
91
|
+
},
|
|
92
|
+
"30": {
|
|
93
|
+
"output": "#d8a45f"
|
|
94
|
+
},
|
|
95
|
+
"31": {
|
|
96
|
+
"output": "#d8a259"
|
|
97
|
+
},
|
|
98
|
+
"32": {
|
|
99
|
+
"output": "#d99f53"
|
|
100
|
+
},
|
|
101
|
+
"33": {
|
|
102
|
+
"output": "#da9d4e"
|
|
103
|
+
},
|
|
104
|
+
"34": {
|
|
105
|
+
"output": "#da9c49"
|
|
106
|
+
},
|
|
107
|
+
"35": {
|
|
108
|
+
"output": "#da9a45"
|
|
109
|
+
},
|
|
110
|
+
"36": {
|
|
111
|
+
"output": "#d99841"
|
|
112
|
+
},
|
|
113
|
+
"37": {
|
|
114
|
+
"output": "#d8973e"
|
|
115
|
+
},
|
|
116
|
+
"38": {
|
|
117
|
+
"output": "#d7953c"
|
|
118
|
+
},
|
|
119
|
+
"39": {
|
|
120
|
+
"output": "#d49339"
|
|
121
|
+
},
|
|
122
|
+
"40": {
|
|
123
|
+
"output": "#d29137"
|
|
124
|
+
},
|
|
125
|
+
"41": {
|
|
126
|
+
"output": "#cf8e34"
|
|
127
|
+
},
|
|
128
|
+
"42": {
|
|
129
|
+
"output": "#cd8b32"
|
|
130
|
+
},
|
|
131
|
+
"43": {
|
|
132
|
+
"output": "#ca882f"
|
|
133
|
+
},
|
|
134
|
+
"44": {
|
|
135
|
+
"output": "#c7862c"
|
|
136
|
+
},
|
|
137
|
+
"45": {
|
|
138
|
+
"output": "#c5832a"
|
|
139
|
+
},
|
|
140
|
+
"46": {
|
|
141
|
+
"output": "#c38128"
|
|
142
|
+
},
|
|
143
|
+
"47": {
|
|
144
|
+
"output": "#c17f26"
|
|
145
|
+
},
|
|
146
|
+
"48": {
|
|
147
|
+
"output": "#bf7d24"
|
|
148
|
+
},
|
|
149
|
+
"49": {
|
|
150
|
+
"output": "#bd7b22"
|
|
151
|
+
},
|
|
152
|
+
"50": {
|
|
153
|
+
"output": "#ba7920"
|
|
154
|
+
},
|
|
155
|
+
"51": {
|
|
156
|
+
"output": "#b6761d"
|
|
157
|
+
},
|
|
158
|
+
"52": {
|
|
159
|
+
"output": "#b2731b"
|
|
160
|
+
},
|
|
161
|
+
"53": {
|
|
162
|
+
"output": "#ae6f18"
|
|
163
|
+
},
|
|
164
|
+
"54": {
|
|
165
|
+
"output": "#aa6c16"
|
|
166
|
+
},
|
|
167
|
+
"55": {
|
|
168
|
+
"output": "#a66915"
|
|
169
|
+
},
|
|
170
|
+
"56": {
|
|
171
|
+
"output": "#a36715"
|
|
172
|
+
},
|
|
173
|
+
"57": {
|
|
174
|
+
"output": "#a06515"
|
|
175
|
+
},
|
|
176
|
+
"58": {
|
|
177
|
+
"output": "#9e6315"
|
|
178
|
+
},
|
|
179
|
+
"59": {
|
|
180
|
+
"output": "#9c6215"
|
|
181
|
+
},
|
|
182
|
+
"60": {
|
|
183
|
+
"output": "#9a6014"
|
|
184
|
+
},
|
|
185
|
+
"61": {
|
|
186
|
+
"output": "#985e12"
|
|
187
|
+
},
|
|
188
|
+
"62": {
|
|
189
|
+
"output": "#955c0f"
|
|
190
|
+
},
|
|
191
|
+
"63": {
|
|
192
|
+
"output": "#92590c"
|
|
193
|
+
},
|
|
194
|
+
"64": {
|
|
195
|
+
"output": "#8f5609"
|
|
196
|
+
},
|
|
197
|
+
"65": {
|
|
198
|
+
"output": "#8c5407"
|
|
199
|
+
},
|
|
200
|
+
"66": {
|
|
201
|
+
"output": "#895206"
|
|
202
|
+
},
|
|
203
|
+
"67": {
|
|
204
|
+
"output": "#854f07"
|
|
205
|
+
},
|
|
206
|
+
"68": {
|
|
207
|
+
"output": "#824d08"
|
|
208
|
+
},
|
|
209
|
+
"69": {
|
|
210
|
+
"output": "#7e4b09"
|
|
211
|
+
},
|
|
212
|
+
"70": {
|
|
213
|
+
"output": "#7a4909"
|
|
214
|
+
},
|
|
215
|
+
"71": {
|
|
216
|
+
"output": "#764709"
|
|
217
|
+
},
|
|
218
|
+
"72": {
|
|
219
|
+
"output": "#724408"
|
|
220
|
+
},
|
|
221
|
+
"73": {
|
|
222
|
+
"output": "#6d4108"
|
|
223
|
+
},
|
|
224
|
+
"74": {
|
|
225
|
+
"output": "#683d09"
|
|
226
|
+
},
|
|
227
|
+
"75": {
|
|
228
|
+
"output": "#633a0a"
|
|
229
|
+
},
|
|
230
|
+
"76": {
|
|
231
|
+
"output": "#5f380b"
|
|
232
|
+
},
|
|
233
|
+
"77": {
|
|
234
|
+
"output": "#5b360b"
|
|
235
|
+
},
|
|
236
|
+
"78": {
|
|
237
|
+
"output": "#583409"
|
|
238
|
+
},
|
|
239
|
+
"79": {
|
|
240
|
+
"output": "#553106"
|
|
241
|
+
},
|
|
242
|
+
"80": {
|
|
243
|
+
"output": "#522e03"
|
|
244
|
+
},
|
|
245
|
+
"81": {
|
|
246
|
+
"output": "#502c02"
|
|
247
|
+
},
|
|
248
|
+
"82": {
|
|
249
|
+
"output": "#4e2b03"
|
|
250
|
+
},
|
|
251
|
+
"83": {
|
|
252
|
+
"output": "#4a2903"
|
|
253
|
+
},
|
|
254
|
+
"84": {
|
|
255
|
+
"output": "#452602"
|
|
256
|
+
},
|
|
257
|
+
"85": {
|
|
258
|
+
"output": "#3f2300"
|
|
259
|
+
},
|
|
260
|
+
"86": {
|
|
261
|
+
"output": "#3a2000"
|
|
262
|
+
},
|
|
263
|
+
"87": {
|
|
264
|
+
"output": "#361e00"
|
|
265
|
+
},
|
|
266
|
+
"88": {
|
|
267
|
+
"output": "#331c00"
|
|
268
|
+
},
|
|
269
|
+
"89": {
|
|
270
|
+
"output": "#301a02"
|
|
271
|
+
},
|
|
272
|
+
"90": {
|
|
273
|
+
"output": "#2d1803"
|
|
274
|
+
},
|
|
275
|
+
"91": {
|
|
276
|
+
"output": "#291603"
|
|
277
|
+
},
|
|
278
|
+
"92": {
|
|
279
|
+
"output": "#251402"
|
|
280
|
+
},
|
|
281
|
+
"93": {
|
|
282
|
+
"output": "#211202"
|
|
283
|
+
},
|
|
284
|
+
"94": {
|
|
285
|
+
"output": "#1d1003"
|
|
286
|
+
},
|
|
287
|
+
"95": {
|
|
288
|
+
"output": "#1a0e04"
|
|
289
|
+
},
|
|
290
|
+
"96": {
|
|
291
|
+
"output": "#170c04"
|
|
292
|
+
},
|
|
293
|
+
"97": {
|
|
294
|
+
"output": "#150904"
|
|
295
|
+
},
|
|
296
|
+
"98": {
|
|
297
|
+
"output": "#120603"
|
|
298
|
+
},
|
|
299
|
+
"99": {
|
|
300
|
+
"output": "#110302"
|
|
301
|
+
},
|
|
302
|
+
"100": {
|
|
303
|
+
"output": "#0f0000"
|
|
304
|
+
}
|
|
305
|
+
}
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
{
|
|
2
|
+
"0": {
|
|
3
|
+
"output": "#fbfbfb"
|
|
4
|
+
},
|
|
5
|
+
"1": {
|
|
6
|
+
"output": "#f9f8f8"
|
|
7
|
+
},
|
|
8
|
+
"2": {
|
|
9
|
+
"output": "#f6f6f5"
|
|
10
|
+
},
|
|
11
|
+
"3": {
|
|
12
|
+
"output": "#f4f3f2"
|
|
13
|
+
},
|
|
14
|
+
"4": {
|
|
15
|
+
"output": "#f2f1ef"
|
|
16
|
+
},
|
|
17
|
+
"5": {
|
|
18
|
+
"output": "#f0eeed"
|
|
19
|
+
},
|
|
20
|
+
"6": {
|
|
21
|
+
"output": "#edeceb"
|
|
22
|
+
},
|
|
23
|
+
"7": {
|
|
24
|
+
"output": "#ebe9e8"
|
|
25
|
+
},
|
|
26
|
+
"8": {
|
|
27
|
+
"output": "#e8e6e5"
|
|
28
|
+
},
|
|
29
|
+
"9": {
|
|
30
|
+
"output": "#e6e3e2"
|
|
31
|
+
},
|
|
32
|
+
"10": {
|
|
33
|
+
"output": "#e3e0df"
|
|
34
|
+
},
|
|
35
|
+
"11": {
|
|
36
|
+
"output": "#e0dddc"
|
|
37
|
+
},
|
|
38
|
+
"12": {
|
|
39
|
+
"output": "#dedbda"
|
|
40
|
+
},
|
|
41
|
+
"13": {
|
|
42
|
+
"output": "#dcd9d8"
|
|
43
|
+
},
|
|
44
|
+
"14": {
|
|
45
|
+
"output": "#d9d6d5"
|
|
46
|
+
},
|
|
47
|
+
"15": {
|
|
48
|
+
"output": "#d7d4d3"
|
|
49
|
+
},
|
|
50
|
+
"16": {
|
|
51
|
+
"output": "#d5d1d0"
|
|
52
|
+
},
|
|
53
|
+
"17": {
|
|
54
|
+
"output": "#d2cfce"
|
|
55
|
+
},
|
|
56
|
+
"18": {
|
|
57
|
+
"output": "#d0cccb"
|
|
58
|
+
},
|
|
59
|
+
"19": {
|
|
60
|
+
"output": "#cdc9c8"
|
|
61
|
+
},
|
|
62
|
+
"20": {
|
|
63
|
+
"output": "#cbc7c6"
|
|
64
|
+
},
|
|
65
|
+
"21": {
|
|
66
|
+
"output": "#c9c5c4"
|
|
67
|
+
},
|
|
68
|
+
"22": {
|
|
69
|
+
"output": "#c6c3c2"
|
|
70
|
+
},
|
|
71
|
+
"23": {
|
|
72
|
+
"output": "#c4c0bf"
|
|
73
|
+
},
|
|
74
|
+
"24": {
|
|
75
|
+
"output": "#c1bebd"
|
|
76
|
+
},
|
|
77
|
+
"25": {
|
|
78
|
+
"output": "#bfbcbb"
|
|
79
|
+
},
|
|
80
|
+
"26": {
|
|
81
|
+
"output": "#bdb9b8"
|
|
82
|
+
},
|
|
83
|
+
"27": {
|
|
84
|
+
"output": "#bab7b6"
|
|
85
|
+
},
|
|
86
|
+
"28": {
|
|
87
|
+
"output": "#b8b4b3"
|
|
88
|
+
},
|
|
89
|
+
"29": {
|
|
90
|
+
"output": "#b5b1b0"
|
|
91
|
+
},
|
|
92
|
+
"30": {
|
|
93
|
+
"output": "#b3afae"
|
|
94
|
+
},
|
|
95
|
+
"31": {
|
|
96
|
+
"output": "#b1adac"
|
|
97
|
+
},
|
|
98
|
+
"32": {
|
|
99
|
+
"output": "#aeabaa"
|
|
100
|
+
},
|
|
101
|
+
"33": {
|
|
102
|
+
"output": "#aca8a7"
|
|
103
|
+
},
|
|
104
|
+
"34": {
|
|
105
|
+
"output": "#a9a6a5"
|
|
106
|
+
},
|
|
107
|
+
"35": {
|
|
108
|
+
"output": "#a7a4a3"
|
|
109
|
+
},
|
|
110
|
+
"36": {
|
|
111
|
+
"output": "#a5a1a0"
|
|
112
|
+
},
|
|
113
|
+
"37": {
|
|
114
|
+
"output": "#a29f9e"
|
|
115
|
+
},
|
|
116
|
+
"38": {
|
|
117
|
+
"output": "#a09c9b"
|
|
118
|
+
},
|
|
119
|
+
"39": {
|
|
120
|
+
"output": "#9d9a99"
|
|
121
|
+
},
|
|
122
|
+
"40": {
|
|
123
|
+
"output": "#9b9796"
|
|
124
|
+
},
|
|
125
|
+
"41": {
|
|
126
|
+
"output": "#999594"
|
|
127
|
+
},
|
|
128
|
+
"42": {
|
|
129
|
+
"output": "#969392"
|
|
130
|
+
},
|
|
131
|
+
"43": {
|
|
132
|
+
"output": "#94908f"
|
|
133
|
+
},
|
|
134
|
+
"44": {
|
|
135
|
+
"output": "#918e8d"
|
|
136
|
+
},
|
|
137
|
+
"45": {
|
|
138
|
+
"output": "#8f8c8b"
|
|
139
|
+
},
|
|
140
|
+
"46": {
|
|
141
|
+
"output": "#8c8a89"
|
|
142
|
+
},
|
|
143
|
+
"47": {
|
|
144
|
+
"output": "#8a8786"
|
|
145
|
+
},
|
|
146
|
+
"48": {
|
|
147
|
+
"output": "#878483"
|
|
148
|
+
},
|
|
149
|
+
"49": {
|
|
150
|
+
"output": "#858281"
|
|
151
|
+
},
|
|
152
|
+
"50": {
|
|
153
|
+
"output": "#827f7e"
|
|
154
|
+
},
|
|
155
|
+
"51": {
|
|
156
|
+
"output": "#807c7b"
|
|
157
|
+
},
|
|
158
|
+
"52": {
|
|
159
|
+
"output": "#7d7a79"
|
|
160
|
+
},
|
|
161
|
+
"53": {
|
|
162
|
+
"output": "#7b7877"
|
|
163
|
+
},
|
|
164
|
+
"54": {
|
|
165
|
+
"output": "#787574"
|
|
166
|
+
},
|
|
167
|
+
"55": {
|
|
168
|
+
"output": "#767372"
|
|
169
|
+
},
|
|
170
|
+
"56": {
|
|
171
|
+
"output": "#747170"
|
|
172
|
+
},
|
|
173
|
+
"57": {
|
|
174
|
+
"output": "#716e6d"
|
|
175
|
+
},
|
|
176
|
+
"58": {
|
|
177
|
+
"output": "#6f6c6b"
|
|
178
|
+
},
|
|
179
|
+
"59": {
|
|
180
|
+
"output": "#6c6968"
|
|
181
|
+
},
|
|
182
|
+
"60": {
|
|
183
|
+
"output": "#6a6766"
|
|
184
|
+
},
|
|
185
|
+
"61": {
|
|
186
|
+
"output": "#686564"
|
|
187
|
+
},
|
|
188
|
+
"62": {
|
|
189
|
+
"output": "#656261"
|
|
190
|
+
},
|
|
191
|
+
"63": {
|
|
192
|
+
"output": "#63605f"
|
|
193
|
+
},
|
|
194
|
+
"64": {
|
|
195
|
+
"output": "#615e5d"
|
|
196
|
+
},
|
|
197
|
+
"65": {
|
|
198
|
+
"output": "#5e5b5a"
|
|
199
|
+
},
|
|
200
|
+
"66": {
|
|
201
|
+
"output": "#5b5857"
|
|
202
|
+
},
|
|
203
|
+
"67": {
|
|
204
|
+
"output": "#585554"
|
|
205
|
+
},
|
|
206
|
+
"68": {
|
|
207
|
+
"output": "#555251"
|
|
208
|
+
},
|
|
209
|
+
"69": {
|
|
210
|
+
"output": "#53504f"
|
|
211
|
+
},
|
|
212
|
+
"70": {
|
|
213
|
+
"output": "#514e4d"
|
|
214
|
+
},
|
|
215
|
+
"71": {
|
|
216
|
+
"output": "#504d4c"
|
|
217
|
+
},
|
|
218
|
+
"72": {
|
|
219
|
+
"output": "#4f4b4a"
|
|
220
|
+
},
|
|
221
|
+
"73": {
|
|
222
|
+
"output": "#4c4948"
|
|
223
|
+
},
|
|
224
|
+
"74": {
|
|
225
|
+
"output": "#484544"
|
|
226
|
+
},
|
|
227
|
+
"75": {
|
|
228
|
+
"output": "#444140"
|
|
229
|
+
},
|
|
230
|
+
"76": {
|
|
231
|
+
"output": "#423f3e"
|
|
232
|
+
},
|
|
233
|
+
"77": {
|
|
234
|
+
"output": "#413e3d"
|
|
235
|
+
},
|
|
236
|
+
"78": {
|
|
237
|
+
"output": "#3f3c3b"
|
|
238
|
+
},
|
|
239
|
+
"79": {
|
|
240
|
+
"output": "#3c3938"
|
|
241
|
+
},
|
|
242
|
+
"80": {
|
|
243
|
+
"output": "#383635"
|
|
244
|
+
},
|
|
245
|
+
"81": {
|
|
246
|
+
"output": "#363433"
|
|
247
|
+
},
|
|
248
|
+
"82": {
|
|
249
|
+
"output": "#343231"
|
|
250
|
+
},
|
|
251
|
+
"83": {
|
|
252
|
+
"output": "#32302f"
|
|
253
|
+
},
|
|
254
|
+
"84": {
|
|
255
|
+
"output": "#2f2d2c"
|
|
256
|
+
},
|
|
257
|
+
"85": {
|
|
258
|
+
"output": "#2c2a29"
|
|
259
|
+
},
|
|
260
|
+
"86": {
|
|
261
|
+
"output": "#2b2928"
|
|
262
|
+
},
|
|
263
|
+
"87": {
|
|
264
|
+
"output": "#2a2827"
|
|
265
|
+
},
|
|
266
|
+
"88": {
|
|
267
|
+
"output": "#282625"
|
|
268
|
+
},
|
|
269
|
+
"89": {
|
|
270
|
+
"output": "#242221"
|
|
271
|
+
},
|
|
272
|
+
"90": {
|
|
273
|
+
"output": "#201e1d"
|
|
274
|
+
},
|
|
275
|
+
"91": {
|
|
276
|
+
"output": "#1e1c1b"
|
|
277
|
+
},
|
|
278
|
+
"92": {
|
|
279
|
+
"output": "#1d1b1a"
|
|
280
|
+
},
|
|
281
|
+
"93": {
|
|
282
|
+
"output": "#1b1918"
|
|
283
|
+
},
|
|
284
|
+
"94": {
|
|
285
|
+
"output": "#181615"
|
|
286
|
+
},
|
|
287
|
+
"95": {
|
|
288
|
+
"output": "#141110"
|
|
289
|
+
},
|
|
290
|
+
"96": {
|
|
291
|
+
"output": "#100d0c"
|
|
292
|
+
},
|
|
293
|
+
"97": {
|
|
294
|
+
"output": "#0e0908"
|
|
295
|
+
},
|
|
296
|
+
"98": {
|
|
297
|
+
"output": "#0b0705"
|
|
298
|
+
},
|
|
299
|
+
"99": {
|
|
300
|
+
"output": "#090503"
|
|
301
|
+
},
|
|
302
|
+
"100": {
|
|
303
|
+
"output": "#080402"
|
|
304
|
+
}
|
|
305
|
+
}
|