@vef-framework/shared 2.0.10 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/_internal/_rolldown/runtime.cjs +1 -0
- package/dist/cjs/color/color-ops.cjs +1 -1
- package/dist/cjs/color/index.cjs +1 -1
- package/dist/cjs/color/name.cjs +1 -1
- package/dist/cjs/color/palette.cjs +1 -1
- package/dist/cjs/constants/color-names.cjs +1 -1
- package/dist/cjs/constants/color-palettes.cjs +1 -1
- package/dist/cjs/constants/index.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/types/color.cjs +0 -1
- package/dist/cjs/types/common.cjs +0 -1
- package/dist/cjs/types/deep-keys.cjs +0 -1
- package/dist/cjs/types/index.cjs +0 -1
- package/dist/cjs/utils/chrono.cjs +1 -1
- package/dist/cjs/utils/equal.cjs +1 -1
- package/dist/cjs/utils/error.cjs +2 -3
- package/dist/cjs/utils/event.cjs +1 -1
- package/dist/cjs/utils/format.cjs +1 -1
- package/dist/cjs/utils/function.cjs +1 -1
- package/dist/cjs/utils/id.cjs +1 -1
- package/dist/cjs/utils/index.cjs +1 -1
- package/dist/cjs/utils/key.cjs +1 -1
- package/dist/cjs/utils/lib.cjs +1 -1
- package/dist/cjs/utils/object.cjs +1 -1
- package/dist/cjs/utils/path.cjs +1 -1
- package/dist/cjs/utils/pinyin.cjs +1 -1
- package/dist/cjs/utils/security.cjs +1 -1
- package/dist/cjs/utils/string.cjs +1 -1
- package/dist/cjs/utils/table.cjs +1 -0
- package/dist/cjs/utils/task.cjs +1 -1
- package/dist/cjs/utils/tree.cjs +1 -1
- package/dist/cjs/utils/zod.cjs +1 -1
- package/dist/es/color/color-ops.js +55 -68
- package/dist/es/color/index.js +4 -18
- package/dist/es/color/name.js +25 -27
- package/dist/es/color/palette.js +70 -82
- package/dist/es/constants/color-names.js +1572 -1572
- package/dist/es/constants/color-palettes.js +1085 -360
- package/dist/es/constants/index.js +3 -8
- package/dist/es/index.js +25 -165
- package/dist/es/types/color.js +1 -1
- package/dist/es/types/common.js +1 -1
- package/dist/es/types/deep-keys.js +1 -1
- package/dist/es/types/index.js +1 -3
- package/dist/es/utils/chrono.js +77 -92
- package/dist/es/utils/equal.js +83 -118
- package/dist/es/utils/error.js +27 -29
- package/dist/es/utils/event.js +27 -51
- package/dist/es/utils/format.js +27 -18
- package/dist/es/utils/function.js +26 -36
- package/dist/es/utils/id.js +21 -21
- package/dist/es/utils/index.js +18 -79
- package/dist/es/utils/key.js +17 -23
- package/dist/es/utils/lib.js +8 -64
- package/dist/es/utils/object.js +12 -12
- package/dist/es/utils/path.js +37 -58
- package/dist/es/utils/pinyin.js +41 -43
- package/dist/es/utils/security.js +73 -31
- package/dist/es/utils/string.js +19 -7
- package/dist/es/utils/table.js +15 -0
- package/dist/es/utils/task.js +6 -7
- package/dist/es/utils/tree.js +159 -181
- package/dist/es/utils/zod.js +7 -7
- package/dist/types/constants/color-names.d.ts +2 -2
- package/dist/types/constants/color-palettes.d.ts +2 -2
- package/dist/types/src/color/color-ops.d.ts +84 -0
- package/dist/types/src/color/index.d.ts +3 -0
- package/dist/types/src/color/name.d.ts +7 -0
- package/dist/types/src/color/palette.d.ts +8 -0
- package/dist/types/src/constants/color-names.d.ts +11 -0
- package/dist/types/src/constants/color-palettes.d.ts +823 -0
- package/dist/types/src/constants/index.d.ts +2 -0
- package/dist/types/src/index.d.ts +4 -0
- package/dist/types/src/types/color.d.ts +25 -0
- package/dist/types/src/types/common.d.ts +29 -0
- package/dist/types/src/types/deep-keys.d.ts +37 -0
- package/dist/types/src/types/index.d.ts +3 -0
- package/dist/types/src/utils/chrono.d.ts +152 -0
- package/dist/types/src/utils/equal.d.ts +16 -0
- package/dist/types/src/utils/error.d.ts +22 -0
- package/dist/types/src/utils/event.d.ts +46 -0
- package/dist/types/src/utils/format.d.ts +31 -0
- package/dist/types/src/utils/function.d.ts +27 -0
- package/dist/types/src/utils/id.d.ts +6 -0
- package/dist/types/src/utils/index.d.ts +18 -0
- package/dist/types/src/utils/key.d.ts +5 -0
- package/dist/types/src/utils/lib.d.ts +5 -0
- package/dist/types/src/utils/object.d.ts +9 -0
- package/dist/types/src/utils/path.d.ts +13 -0
- package/dist/types/src/utils/pinyin.d.ts +40 -0
- package/dist/types/src/utils/security.d.ts +60 -0
- package/dist/types/src/utils/string.d.ts +15 -0
- package/dist/types/src/utils/table.d.ts +25 -0
- package/dist/types/src/utils/task.d.ts +4 -0
- package/dist/types/src/utils/tree.d.ts +216 -0
- package/dist/types/src/utils/zod.d.ts +2 -0
- package/dist/types/types/color.d.ts +1 -49
- package/dist/types/types/common.d.ts +7 -3
- package/dist/types/types/deep-keys.d.ts +28 -0
- package/dist/types/utils/chrono.d.ts +3 -13
- package/dist/types/utils/error.d.ts +5 -21
- package/dist/types/utils/event.d.ts +9 -31
- package/dist/types/utils/format.d.ts +0 -2
- package/dist/types/utils/function.d.ts +4 -36
- package/dist/types/utils/id.d.ts +2 -2
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/key.d.ts +2 -4
- package/dist/types/utils/path.d.ts +7 -70
- package/dist/types/utils/pinyin.d.ts +2 -3
- package/dist/types/utils/security.d.ts +44 -2
- package/dist/types/utils/string.d.ts +8 -0
- package/dist/types/utils/table.d.ts +25 -0
- package/dist/types/utils/task.d.ts +1 -3
- package/dist/types/utils/tree.d.ts +8 -0
- package/dist/types/utils/zod.d.ts +1 -0
- package/package.json +13 -13
|
@@ -0,0 +1,823 @@
|
|
|
1
|
+
import { ColorPalette, ColorSwatch, KebabCase } from '../types';
|
|
2
|
+
/**
|
|
3
|
+
* The color palettes
|
|
4
|
+
*/
|
|
5
|
+
export declare const colorPalettes: [{
|
|
6
|
+
readonly name: "Red";
|
|
7
|
+
readonly swatches: [{
|
|
8
|
+
readonly number: 50;
|
|
9
|
+
readonly hex: "#fef2f2";
|
|
10
|
+
}, {
|
|
11
|
+
readonly number: 100;
|
|
12
|
+
readonly hex: "#ffe2e2";
|
|
13
|
+
}, {
|
|
14
|
+
readonly number: 200;
|
|
15
|
+
readonly hex: "#ffc9c9";
|
|
16
|
+
}, {
|
|
17
|
+
readonly number: 300;
|
|
18
|
+
readonly hex: "#ffa2a2";
|
|
19
|
+
}, {
|
|
20
|
+
readonly number: 400;
|
|
21
|
+
readonly hex: "#ff6467";
|
|
22
|
+
}, {
|
|
23
|
+
readonly number: 500;
|
|
24
|
+
readonly hex: "#fb2c36";
|
|
25
|
+
}, {
|
|
26
|
+
readonly number: 600;
|
|
27
|
+
readonly hex: "#e7000b";
|
|
28
|
+
}, {
|
|
29
|
+
readonly number: 700;
|
|
30
|
+
readonly hex: "#c10007";
|
|
31
|
+
}, {
|
|
32
|
+
readonly number: 800;
|
|
33
|
+
readonly hex: "#9f0712";
|
|
34
|
+
}, {
|
|
35
|
+
readonly number: 900;
|
|
36
|
+
readonly hex: "#82181a";
|
|
37
|
+
}, {
|
|
38
|
+
readonly number: 950;
|
|
39
|
+
readonly hex: "#460809";
|
|
40
|
+
}];
|
|
41
|
+
}, {
|
|
42
|
+
readonly name: "Orange";
|
|
43
|
+
readonly swatches: [{
|
|
44
|
+
readonly number: 50;
|
|
45
|
+
readonly hex: "#fff7ed";
|
|
46
|
+
}, {
|
|
47
|
+
readonly number: 100;
|
|
48
|
+
readonly hex: "#ffedd4";
|
|
49
|
+
}, {
|
|
50
|
+
readonly number: 200;
|
|
51
|
+
readonly hex: "#ffd6a7";
|
|
52
|
+
}, {
|
|
53
|
+
readonly number: 300;
|
|
54
|
+
readonly hex: "#ffb86a";
|
|
55
|
+
}, {
|
|
56
|
+
readonly number: 400;
|
|
57
|
+
readonly hex: "#ff8904";
|
|
58
|
+
}, {
|
|
59
|
+
readonly number: 500;
|
|
60
|
+
readonly hex: "#ff6900";
|
|
61
|
+
}, {
|
|
62
|
+
readonly number: 600;
|
|
63
|
+
readonly hex: "#f54900";
|
|
64
|
+
}, {
|
|
65
|
+
readonly number: 700;
|
|
66
|
+
readonly hex: "#ca3500";
|
|
67
|
+
}, {
|
|
68
|
+
readonly number: 800;
|
|
69
|
+
readonly hex: "#9f2d00";
|
|
70
|
+
}, {
|
|
71
|
+
readonly number: 900;
|
|
72
|
+
readonly hex: "#7e2a0c";
|
|
73
|
+
}, {
|
|
74
|
+
readonly number: 950;
|
|
75
|
+
readonly hex: "#441306";
|
|
76
|
+
}];
|
|
77
|
+
}, {
|
|
78
|
+
readonly name: "Amber";
|
|
79
|
+
readonly swatches: [{
|
|
80
|
+
readonly number: 50;
|
|
81
|
+
readonly hex: "#fffbeb";
|
|
82
|
+
}, {
|
|
83
|
+
readonly number: 100;
|
|
84
|
+
readonly hex: "#fef3c6";
|
|
85
|
+
}, {
|
|
86
|
+
readonly number: 200;
|
|
87
|
+
readonly hex: "#fee685";
|
|
88
|
+
}, {
|
|
89
|
+
readonly number: 300;
|
|
90
|
+
readonly hex: "#ffd230";
|
|
91
|
+
}, {
|
|
92
|
+
readonly number: 400;
|
|
93
|
+
readonly hex: "#ffb900";
|
|
94
|
+
}, {
|
|
95
|
+
readonly number: 500;
|
|
96
|
+
readonly hex: "#fe9a00";
|
|
97
|
+
}, {
|
|
98
|
+
readonly number: 600;
|
|
99
|
+
readonly hex: "#e17100";
|
|
100
|
+
}, {
|
|
101
|
+
readonly number: 700;
|
|
102
|
+
readonly hex: "#bb4d00";
|
|
103
|
+
}, {
|
|
104
|
+
readonly number: 800;
|
|
105
|
+
readonly hex: "#973c00";
|
|
106
|
+
}, {
|
|
107
|
+
readonly number: 900;
|
|
108
|
+
readonly hex: "#7b3306";
|
|
109
|
+
}, {
|
|
110
|
+
readonly number: 950;
|
|
111
|
+
readonly hex: "#461901";
|
|
112
|
+
}];
|
|
113
|
+
}, {
|
|
114
|
+
readonly name: "Yellow";
|
|
115
|
+
readonly swatches: [{
|
|
116
|
+
readonly number: 50;
|
|
117
|
+
readonly hex: "#fefce8";
|
|
118
|
+
}, {
|
|
119
|
+
readonly number: 100;
|
|
120
|
+
readonly hex: "#fef9c2";
|
|
121
|
+
}, {
|
|
122
|
+
readonly number: 200;
|
|
123
|
+
readonly hex: "#fff085";
|
|
124
|
+
}, {
|
|
125
|
+
readonly number: 300;
|
|
126
|
+
readonly hex: "#ffdf20";
|
|
127
|
+
}, {
|
|
128
|
+
readonly number: 400;
|
|
129
|
+
readonly hex: "#fdc700";
|
|
130
|
+
}, {
|
|
131
|
+
readonly number: 500;
|
|
132
|
+
readonly hex: "#f0b100";
|
|
133
|
+
}, {
|
|
134
|
+
readonly number: 600;
|
|
135
|
+
readonly hex: "#d08700";
|
|
136
|
+
}, {
|
|
137
|
+
readonly number: 700;
|
|
138
|
+
readonly hex: "#a65f00";
|
|
139
|
+
}, {
|
|
140
|
+
readonly number: 800;
|
|
141
|
+
readonly hex: "#894b00";
|
|
142
|
+
}, {
|
|
143
|
+
readonly number: 900;
|
|
144
|
+
readonly hex: "#733e0a";
|
|
145
|
+
}, {
|
|
146
|
+
readonly number: 950;
|
|
147
|
+
readonly hex: "#432004";
|
|
148
|
+
}];
|
|
149
|
+
}, {
|
|
150
|
+
readonly name: "Lime";
|
|
151
|
+
readonly swatches: [{
|
|
152
|
+
readonly number: 50;
|
|
153
|
+
readonly hex: "#f7fee7";
|
|
154
|
+
}, {
|
|
155
|
+
readonly number: 100;
|
|
156
|
+
readonly hex: "#ecfcca";
|
|
157
|
+
}, {
|
|
158
|
+
readonly number: 200;
|
|
159
|
+
readonly hex: "#d8f999";
|
|
160
|
+
}, {
|
|
161
|
+
readonly number: 300;
|
|
162
|
+
readonly hex: "#bbf451";
|
|
163
|
+
}, {
|
|
164
|
+
readonly number: 400;
|
|
165
|
+
readonly hex: "#9ae600";
|
|
166
|
+
}, {
|
|
167
|
+
readonly number: 500;
|
|
168
|
+
readonly hex: "#7ccf00";
|
|
169
|
+
}, {
|
|
170
|
+
readonly number: 600;
|
|
171
|
+
readonly hex: "#5ea500";
|
|
172
|
+
}, {
|
|
173
|
+
readonly number: 700;
|
|
174
|
+
readonly hex: "#497d00";
|
|
175
|
+
}, {
|
|
176
|
+
readonly number: 800;
|
|
177
|
+
readonly hex: "#3c6300";
|
|
178
|
+
}, {
|
|
179
|
+
readonly number: 900;
|
|
180
|
+
readonly hex: "#35530e";
|
|
181
|
+
}, {
|
|
182
|
+
readonly number: 950;
|
|
183
|
+
readonly hex: "#192e03";
|
|
184
|
+
}];
|
|
185
|
+
}, {
|
|
186
|
+
readonly name: "Green";
|
|
187
|
+
readonly swatches: [{
|
|
188
|
+
readonly number: 50;
|
|
189
|
+
readonly hex: "#f0fdf4";
|
|
190
|
+
}, {
|
|
191
|
+
readonly number: 100;
|
|
192
|
+
readonly hex: "#dcfce7";
|
|
193
|
+
}, {
|
|
194
|
+
readonly number: 200;
|
|
195
|
+
readonly hex: "#b9f8cf";
|
|
196
|
+
}, {
|
|
197
|
+
readonly number: 300;
|
|
198
|
+
readonly hex: "#7bf1a8";
|
|
199
|
+
}, {
|
|
200
|
+
readonly number: 400;
|
|
201
|
+
readonly hex: "#05df72";
|
|
202
|
+
}, {
|
|
203
|
+
readonly number: 500;
|
|
204
|
+
readonly hex: "#00c950";
|
|
205
|
+
}, {
|
|
206
|
+
readonly number: 600;
|
|
207
|
+
readonly hex: "#00a63e";
|
|
208
|
+
}, {
|
|
209
|
+
readonly number: 700;
|
|
210
|
+
readonly hex: "#008236";
|
|
211
|
+
}, {
|
|
212
|
+
readonly number: 800;
|
|
213
|
+
readonly hex: "#016630";
|
|
214
|
+
}, {
|
|
215
|
+
readonly number: 900;
|
|
216
|
+
readonly hex: "#0d542b";
|
|
217
|
+
}, {
|
|
218
|
+
readonly number: 950;
|
|
219
|
+
readonly hex: "#032e15";
|
|
220
|
+
}];
|
|
221
|
+
}, {
|
|
222
|
+
readonly name: "Emerald";
|
|
223
|
+
readonly swatches: [{
|
|
224
|
+
readonly number: 50;
|
|
225
|
+
readonly hex: "#ecfdf5";
|
|
226
|
+
}, {
|
|
227
|
+
readonly number: 100;
|
|
228
|
+
readonly hex: "#d0fae5";
|
|
229
|
+
}, {
|
|
230
|
+
readonly number: 200;
|
|
231
|
+
readonly hex: "#a4f4cf";
|
|
232
|
+
}, {
|
|
233
|
+
readonly number: 300;
|
|
234
|
+
readonly hex: "#5ee9b5";
|
|
235
|
+
}, {
|
|
236
|
+
readonly number: 400;
|
|
237
|
+
readonly hex: "#00d492";
|
|
238
|
+
}, {
|
|
239
|
+
readonly number: 500;
|
|
240
|
+
readonly hex: "#00bc7d";
|
|
241
|
+
}, {
|
|
242
|
+
readonly number: 600;
|
|
243
|
+
readonly hex: "#009966";
|
|
244
|
+
}, {
|
|
245
|
+
readonly number: 700;
|
|
246
|
+
readonly hex: "#007a55";
|
|
247
|
+
}, {
|
|
248
|
+
readonly number: 800;
|
|
249
|
+
readonly hex: "#006045";
|
|
250
|
+
}, {
|
|
251
|
+
readonly number: 900;
|
|
252
|
+
readonly hex: "#004f3b";
|
|
253
|
+
}, {
|
|
254
|
+
readonly number: 950;
|
|
255
|
+
readonly hex: "#002c22";
|
|
256
|
+
}];
|
|
257
|
+
}, {
|
|
258
|
+
readonly name: "Teal";
|
|
259
|
+
readonly swatches: [{
|
|
260
|
+
readonly number: 50;
|
|
261
|
+
readonly hex: "#f0fdfa";
|
|
262
|
+
}, {
|
|
263
|
+
readonly number: 100;
|
|
264
|
+
readonly hex: "#cbfbf1";
|
|
265
|
+
}, {
|
|
266
|
+
readonly number: 200;
|
|
267
|
+
readonly hex: "#96f7e4";
|
|
268
|
+
}, {
|
|
269
|
+
readonly number: 300;
|
|
270
|
+
readonly hex: "#46ecd5";
|
|
271
|
+
}, {
|
|
272
|
+
readonly number: 400;
|
|
273
|
+
readonly hex: "#00d5be";
|
|
274
|
+
}, {
|
|
275
|
+
readonly number: 500;
|
|
276
|
+
readonly hex: "#00bba7";
|
|
277
|
+
}, {
|
|
278
|
+
readonly number: 600;
|
|
279
|
+
readonly hex: "#009689";
|
|
280
|
+
}, {
|
|
281
|
+
readonly number: 700;
|
|
282
|
+
readonly hex: "#00786f";
|
|
283
|
+
}, {
|
|
284
|
+
readonly number: 800;
|
|
285
|
+
readonly hex: "#005f5a";
|
|
286
|
+
}, {
|
|
287
|
+
readonly number: 900;
|
|
288
|
+
readonly hex: "#0b4f4a";
|
|
289
|
+
}, {
|
|
290
|
+
readonly number: 950;
|
|
291
|
+
readonly hex: "#022f2e";
|
|
292
|
+
}];
|
|
293
|
+
}, {
|
|
294
|
+
readonly name: "Cyan";
|
|
295
|
+
readonly swatches: [{
|
|
296
|
+
readonly number: 50;
|
|
297
|
+
readonly hex: "#ecfeff";
|
|
298
|
+
}, {
|
|
299
|
+
readonly number: 100;
|
|
300
|
+
readonly hex: "#cefafe";
|
|
301
|
+
}, {
|
|
302
|
+
readonly number: 200;
|
|
303
|
+
readonly hex: "#a2f4fd";
|
|
304
|
+
}, {
|
|
305
|
+
readonly number: 300;
|
|
306
|
+
readonly hex: "#53eafd";
|
|
307
|
+
}, {
|
|
308
|
+
readonly number: 400;
|
|
309
|
+
readonly hex: "#00d3f2";
|
|
310
|
+
}, {
|
|
311
|
+
readonly number: 500;
|
|
312
|
+
readonly hex: "#00b8db";
|
|
313
|
+
}, {
|
|
314
|
+
readonly number: 600;
|
|
315
|
+
readonly hex: "#0092b8";
|
|
316
|
+
}, {
|
|
317
|
+
readonly number: 700;
|
|
318
|
+
readonly hex: "#007595";
|
|
319
|
+
}, {
|
|
320
|
+
readonly number: 800;
|
|
321
|
+
readonly hex: "#005f78";
|
|
322
|
+
}, {
|
|
323
|
+
readonly number: 900;
|
|
324
|
+
readonly hex: "#104e64";
|
|
325
|
+
}, {
|
|
326
|
+
readonly number: 950;
|
|
327
|
+
readonly hex: "#053345";
|
|
328
|
+
}];
|
|
329
|
+
}, {
|
|
330
|
+
readonly name: "Sky";
|
|
331
|
+
readonly swatches: [{
|
|
332
|
+
readonly number: 50;
|
|
333
|
+
readonly hex: "#f0f9ff";
|
|
334
|
+
}, {
|
|
335
|
+
readonly number: 100;
|
|
336
|
+
readonly hex: "#dff2fe";
|
|
337
|
+
}, {
|
|
338
|
+
readonly number: 200;
|
|
339
|
+
readonly hex: "#b8e6fe";
|
|
340
|
+
}, {
|
|
341
|
+
readonly number: 300;
|
|
342
|
+
readonly hex: "#74d4ff";
|
|
343
|
+
}, {
|
|
344
|
+
readonly number: 400;
|
|
345
|
+
readonly hex: "#00bcff";
|
|
346
|
+
}, {
|
|
347
|
+
readonly number: 500;
|
|
348
|
+
readonly hex: "#00a6f4";
|
|
349
|
+
}, {
|
|
350
|
+
readonly number: 600;
|
|
351
|
+
readonly hex: "#0084d1";
|
|
352
|
+
}, {
|
|
353
|
+
readonly number: 700;
|
|
354
|
+
readonly hex: "#0069a8";
|
|
355
|
+
}, {
|
|
356
|
+
readonly number: 800;
|
|
357
|
+
readonly hex: "#00598a";
|
|
358
|
+
}, {
|
|
359
|
+
readonly number: 900;
|
|
360
|
+
readonly hex: "#024a70";
|
|
361
|
+
}, {
|
|
362
|
+
readonly number: 950;
|
|
363
|
+
readonly hex: "#052f4a";
|
|
364
|
+
}];
|
|
365
|
+
}, {
|
|
366
|
+
readonly name: "Blue";
|
|
367
|
+
readonly swatches: [{
|
|
368
|
+
readonly number: 50;
|
|
369
|
+
readonly hex: "#eff6ff";
|
|
370
|
+
}, {
|
|
371
|
+
readonly number: 100;
|
|
372
|
+
readonly hex: "#dbeafe";
|
|
373
|
+
}, {
|
|
374
|
+
readonly number: 200;
|
|
375
|
+
readonly hex: "#bedbff";
|
|
376
|
+
}, {
|
|
377
|
+
readonly number: 300;
|
|
378
|
+
readonly hex: "#8ec5ff";
|
|
379
|
+
}, {
|
|
380
|
+
readonly number: 400;
|
|
381
|
+
readonly hex: "#51a2ff";
|
|
382
|
+
}, {
|
|
383
|
+
readonly number: 500;
|
|
384
|
+
readonly hex: "#2b7fff";
|
|
385
|
+
}, {
|
|
386
|
+
readonly number: 600;
|
|
387
|
+
readonly hex: "#155dfc";
|
|
388
|
+
}, {
|
|
389
|
+
readonly number: 700;
|
|
390
|
+
readonly hex: "#1447e6";
|
|
391
|
+
}, {
|
|
392
|
+
readonly number: 800;
|
|
393
|
+
readonly hex: "#193cb8";
|
|
394
|
+
}, {
|
|
395
|
+
readonly number: 900;
|
|
396
|
+
readonly hex: "#1c398e";
|
|
397
|
+
}, {
|
|
398
|
+
readonly number: 950;
|
|
399
|
+
readonly hex: "#162456";
|
|
400
|
+
}];
|
|
401
|
+
}, {
|
|
402
|
+
readonly name: "Indigo";
|
|
403
|
+
readonly swatches: [{
|
|
404
|
+
readonly number: 50;
|
|
405
|
+
readonly hex: "#eef2ff";
|
|
406
|
+
}, {
|
|
407
|
+
readonly number: 100;
|
|
408
|
+
readonly hex: "#e0e7ff";
|
|
409
|
+
}, {
|
|
410
|
+
readonly number: 200;
|
|
411
|
+
readonly hex: "#c6d2ff";
|
|
412
|
+
}, {
|
|
413
|
+
readonly number: 300;
|
|
414
|
+
readonly hex: "#a3b3ff";
|
|
415
|
+
}, {
|
|
416
|
+
readonly number: 400;
|
|
417
|
+
readonly hex: "#7c86ff";
|
|
418
|
+
}, {
|
|
419
|
+
readonly number: 500;
|
|
420
|
+
readonly hex: "#615fff";
|
|
421
|
+
}, {
|
|
422
|
+
readonly number: 600;
|
|
423
|
+
readonly hex: "#4f39f6";
|
|
424
|
+
}, {
|
|
425
|
+
readonly number: 700;
|
|
426
|
+
readonly hex: "#432dd7";
|
|
427
|
+
}, {
|
|
428
|
+
readonly number: 800;
|
|
429
|
+
readonly hex: "#372aac";
|
|
430
|
+
}, {
|
|
431
|
+
readonly number: 900;
|
|
432
|
+
readonly hex: "#312c85";
|
|
433
|
+
}, {
|
|
434
|
+
readonly number: 950;
|
|
435
|
+
readonly hex: "#1e1a4d";
|
|
436
|
+
}];
|
|
437
|
+
}, {
|
|
438
|
+
readonly name: "Violet";
|
|
439
|
+
readonly swatches: [{
|
|
440
|
+
readonly number: 50;
|
|
441
|
+
readonly hex: "#f5f3ff";
|
|
442
|
+
}, {
|
|
443
|
+
readonly number: 100;
|
|
444
|
+
readonly hex: "#ede9fe";
|
|
445
|
+
}, {
|
|
446
|
+
readonly number: 200;
|
|
447
|
+
readonly hex: "#ddd6ff";
|
|
448
|
+
}, {
|
|
449
|
+
readonly number: 300;
|
|
450
|
+
readonly hex: "#c4b4ff";
|
|
451
|
+
}, {
|
|
452
|
+
readonly number: 400;
|
|
453
|
+
readonly hex: "#a684ff";
|
|
454
|
+
}, {
|
|
455
|
+
readonly number: 500;
|
|
456
|
+
readonly hex: "#8e51ff";
|
|
457
|
+
}, {
|
|
458
|
+
readonly number: 600;
|
|
459
|
+
readonly hex: "#7f22fe";
|
|
460
|
+
}, {
|
|
461
|
+
readonly number: 700;
|
|
462
|
+
readonly hex: "#7008e7";
|
|
463
|
+
}, {
|
|
464
|
+
readonly number: 800;
|
|
465
|
+
readonly hex: "#5d0ec0";
|
|
466
|
+
}, {
|
|
467
|
+
readonly number: 900;
|
|
468
|
+
readonly hex: "#4d179a";
|
|
469
|
+
}, {
|
|
470
|
+
readonly number: 950;
|
|
471
|
+
readonly hex: "#2f0d68";
|
|
472
|
+
}];
|
|
473
|
+
}, {
|
|
474
|
+
readonly name: "Purple";
|
|
475
|
+
readonly swatches: [{
|
|
476
|
+
readonly number: 50;
|
|
477
|
+
readonly hex: "#faf5ff";
|
|
478
|
+
}, {
|
|
479
|
+
readonly number: 100;
|
|
480
|
+
readonly hex: "#f3e8ff";
|
|
481
|
+
}, {
|
|
482
|
+
readonly number: 200;
|
|
483
|
+
readonly hex: "#e9d4ff";
|
|
484
|
+
}, {
|
|
485
|
+
readonly number: 300;
|
|
486
|
+
readonly hex: "#dab2ff";
|
|
487
|
+
}, {
|
|
488
|
+
readonly number: 400;
|
|
489
|
+
readonly hex: "#c27aff";
|
|
490
|
+
}, {
|
|
491
|
+
readonly number: 500;
|
|
492
|
+
readonly hex: "#ad46ff";
|
|
493
|
+
}, {
|
|
494
|
+
readonly number: 600;
|
|
495
|
+
readonly hex: "#9810fa";
|
|
496
|
+
}, {
|
|
497
|
+
readonly number: 700;
|
|
498
|
+
readonly hex: "#8200db";
|
|
499
|
+
}, {
|
|
500
|
+
readonly number: 800;
|
|
501
|
+
readonly hex: "#6e11b0";
|
|
502
|
+
}, {
|
|
503
|
+
readonly number: 900;
|
|
504
|
+
readonly hex: "#59168b";
|
|
505
|
+
}, {
|
|
506
|
+
readonly number: 950;
|
|
507
|
+
readonly hex: "#3c0366";
|
|
508
|
+
}];
|
|
509
|
+
}, {
|
|
510
|
+
readonly name: "Fuchsia";
|
|
511
|
+
readonly swatches: [{
|
|
512
|
+
readonly number: 50;
|
|
513
|
+
readonly hex: "#fdf4ff";
|
|
514
|
+
}, {
|
|
515
|
+
readonly number: 100;
|
|
516
|
+
readonly hex: "#fae8ff";
|
|
517
|
+
}, {
|
|
518
|
+
readonly number: 200;
|
|
519
|
+
readonly hex: "#f6cfff";
|
|
520
|
+
}, {
|
|
521
|
+
readonly number: 300;
|
|
522
|
+
readonly hex: "#f4a8ff";
|
|
523
|
+
}, {
|
|
524
|
+
readonly number: 400;
|
|
525
|
+
readonly hex: "#ed6aff";
|
|
526
|
+
}, {
|
|
527
|
+
readonly number: 500;
|
|
528
|
+
readonly hex: "#e12afb";
|
|
529
|
+
}, {
|
|
530
|
+
readonly number: 600;
|
|
531
|
+
readonly hex: "#c800de";
|
|
532
|
+
}, {
|
|
533
|
+
readonly number: 700;
|
|
534
|
+
readonly hex: "#a800b7";
|
|
535
|
+
}, {
|
|
536
|
+
readonly number: 800;
|
|
537
|
+
readonly hex: "#8a0194";
|
|
538
|
+
}, {
|
|
539
|
+
readonly number: 900;
|
|
540
|
+
readonly hex: "#721378";
|
|
541
|
+
}, {
|
|
542
|
+
readonly number: 950;
|
|
543
|
+
readonly hex: "#4b004f";
|
|
544
|
+
}];
|
|
545
|
+
}, {
|
|
546
|
+
readonly name: "Pink";
|
|
547
|
+
readonly swatches: [{
|
|
548
|
+
readonly number: 50;
|
|
549
|
+
readonly hex: "#fdf2f8";
|
|
550
|
+
}, {
|
|
551
|
+
readonly number: 100;
|
|
552
|
+
readonly hex: "#fce7f3";
|
|
553
|
+
}, {
|
|
554
|
+
readonly number: 200;
|
|
555
|
+
readonly hex: "#fccee8";
|
|
556
|
+
}, {
|
|
557
|
+
readonly number: 300;
|
|
558
|
+
readonly hex: "#fda5d5";
|
|
559
|
+
}, {
|
|
560
|
+
readonly number: 400;
|
|
561
|
+
readonly hex: "#fb64b6";
|
|
562
|
+
}, {
|
|
563
|
+
readonly number: 500;
|
|
564
|
+
readonly hex: "#f6339a";
|
|
565
|
+
}, {
|
|
566
|
+
readonly number: 600;
|
|
567
|
+
readonly hex: "#e60076";
|
|
568
|
+
}, {
|
|
569
|
+
readonly number: 700;
|
|
570
|
+
readonly hex: "#c6005c";
|
|
571
|
+
}, {
|
|
572
|
+
readonly number: 800;
|
|
573
|
+
readonly hex: "#a3004c";
|
|
574
|
+
}, {
|
|
575
|
+
readonly number: 900;
|
|
576
|
+
readonly hex: "#861043";
|
|
577
|
+
}, {
|
|
578
|
+
readonly number: 950;
|
|
579
|
+
readonly hex: "#510424";
|
|
580
|
+
}];
|
|
581
|
+
}, {
|
|
582
|
+
readonly name: "Rose";
|
|
583
|
+
readonly swatches: [{
|
|
584
|
+
readonly number: 50;
|
|
585
|
+
readonly hex: "#fff1f2";
|
|
586
|
+
}, {
|
|
587
|
+
readonly number: 100;
|
|
588
|
+
readonly hex: "#ffe4e6";
|
|
589
|
+
}, {
|
|
590
|
+
readonly number: 200;
|
|
591
|
+
readonly hex: "#ffccd3";
|
|
592
|
+
}, {
|
|
593
|
+
readonly number: 300;
|
|
594
|
+
readonly hex: "#ffa1ad";
|
|
595
|
+
}, {
|
|
596
|
+
readonly number: 400;
|
|
597
|
+
readonly hex: "#ff637e";
|
|
598
|
+
}, {
|
|
599
|
+
readonly number: 500;
|
|
600
|
+
readonly hex: "#ff2056";
|
|
601
|
+
}, {
|
|
602
|
+
readonly number: 600;
|
|
603
|
+
readonly hex: "#ec003f";
|
|
604
|
+
}, {
|
|
605
|
+
readonly number: 700;
|
|
606
|
+
readonly hex: "#c70036";
|
|
607
|
+
}, {
|
|
608
|
+
readonly number: 800;
|
|
609
|
+
readonly hex: "#a50036";
|
|
610
|
+
}, {
|
|
611
|
+
readonly number: 900;
|
|
612
|
+
readonly hex: "#8b0836";
|
|
613
|
+
}, {
|
|
614
|
+
readonly number: 950;
|
|
615
|
+
readonly hex: "#4d0218";
|
|
616
|
+
}];
|
|
617
|
+
}, {
|
|
618
|
+
readonly name: "Slate";
|
|
619
|
+
readonly swatches: [{
|
|
620
|
+
readonly number: 50;
|
|
621
|
+
readonly hex: "#f8fafc";
|
|
622
|
+
}, {
|
|
623
|
+
readonly number: 100;
|
|
624
|
+
readonly hex: "#f1f5f9";
|
|
625
|
+
}, {
|
|
626
|
+
readonly number: 200;
|
|
627
|
+
readonly hex: "#e2e8f0";
|
|
628
|
+
}, {
|
|
629
|
+
readonly number: 300;
|
|
630
|
+
readonly hex: "#cad5e2";
|
|
631
|
+
}, {
|
|
632
|
+
readonly number: 400;
|
|
633
|
+
readonly hex: "#90a1b9";
|
|
634
|
+
}, {
|
|
635
|
+
readonly number: 500;
|
|
636
|
+
readonly hex: "#62748e";
|
|
637
|
+
}, {
|
|
638
|
+
readonly number: 600;
|
|
639
|
+
readonly hex: "#45556c";
|
|
640
|
+
}, {
|
|
641
|
+
readonly number: 700;
|
|
642
|
+
readonly hex: "#314158";
|
|
643
|
+
}, {
|
|
644
|
+
readonly number: 800;
|
|
645
|
+
readonly hex: "#1d293d";
|
|
646
|
+
}, {
|
|
647
|
+
readonly number: 900;
|
|
648
|
+
readonly hex: "#0f172b";
|
|
649
|
+
}, {
|
|
650
|
+
readonly number: 950;
|
|
651
|
+
readonly hex: "#020618";
|
|
652
|
+
}];
|
|
653
|
+
}, {
|
|
654
|
+
readonly name: "Gray";
|
|
655
|
+
readonly swatches: [{
|
|
656
|
+
readonly number: 50;
|
|
657
|
+
readonly hex: "#f9fafb";
|
|
658
|
+
}, {
|
|
659
|
+
readonly number: 100;
|
|
660
|
+
readonly hex: "#f3f4f6";
|
|
661
|
+
}, {
|
|
662
|
+
readonly number: 200;
|
|
663
|
+
readonly hex: "#e5e7eb";
|
|
664
|
+
}, {
|
|
665
|
+
readonly number: 300;
|
|
666
|
+
readonly hex: "#d1d5dc";
|
|
667
|
+
}, {
|
|
668
|
+
readonly number: 400;
|
|
669
|
+
readonly hex: "#99a1af";
|
|
670
|
+
}, {
|
|
671
|
+
readonly number: 500;
|
|
672
|
+
readonly hex: "#6a7282";
|
|
673
|
+
}, {
|
|
674
|
+
readonly number: 600;
|
|
675
|
+
readonly hex: "#4a5565";
|
|
676
|
+
}, {
|
|
677
|
+
readonly number: 700;
|
|
678
|
+
readonly hex: "#364153";
|
|
679
|
+
}, {
|
|
680
|
+
readonly number: 800;
|
|
681
|
+
readonly hex: "#1e2939";
|
|
682
|
+
}, {
|
|
683
|
+
readonly number: 900;
|
|
684
|
+
readonly hex: "#101828";
|
|
685
|
+
}, {
|
|
686
|
+
readonly number: 950;
|
|
687
|
+
readonly hex: "#030712";
|
|
688
|
+
}];
|
|
689
|
+
}, {
|
|
690
|
+
readonly name: "Zinc";
|
|
691
|
+
readonly swatches: [{
|
|
692
|
+
readonly number: 50;
|
|
693
|
+
readonly hex: "#fafafa";
|
|
694
|
+
}, {
|
|
695
|
+
readonly number: 100;
|
|
696
|
+
readonly hex: "#f4f4f5";
|
|
697
|
+
}, {
|
|
698
|
+
readonly number: 200;
|
|
699
|
+
readonly hex: "#e4e4e7";
|
|
700
|
+
}, {
|
|
701
|
+
readonly number: 300;
|
|
702
|
+
readonly hex: "#d4d4d8";
|
|
703
|
+
}, {
|
|
704
|
+
readonly number: 400;
|
|
705
|
+
readonly hex: "#9f9fa9";
|
|
706
|
+
}, {
|
|
707
|
+
readonly number: 500;
|
|
708
|
+
readonly hex: "#71717b";
|
|
709
|
+
}, {
|
|
710
|
+
readonly number: 600;
|
|
711
|
+
readonly hex: "#52525c";
|
|
712
|
+
}, {
|
|
713
|
+
readonly number: 700;
|
|
714
|
+
readonly hex: "#3f3f46";
|
|
715
|
+
}, {
|
|
716
|
+
readonly number: 800;
|
|
717
|
+
readonly hex: "#27272a";
|
|
718
|
+
}, {
|
|
719
|
+
readonly number: 900;
|
|
720
|
+
readonly hex: "#18181b";
|
|
721
|
+
}, {
|
|
722
|
+
readonly number: 950;
|
|
723
|
+
readonly hex: "#09090b";
|
|
724
|
+
}];
|
|
725
|
+
}, {
|
|
726
|
+
readonly name: "Neutral";
|
|
727
|
+
readonly swatches: [{
|
|
728
|
+
readonly number: 50;
|
|
729
|
+
readonly hex: "#fafafa";
|
|
730
|
+
}, {
|
|
731
|
+
readonly number: 100;
|
|
732
|
+
readonly hex: "#f5f5f5";
|
|
733
|
+
}, {
|
|
734
|
+
readonly number: 200;
|
|
735
|
+
readonly hex: "#e5e5e5";
|
|
736
|
+
}, {
|
|
737
|
+
readonly number: 300;
|
|
738
|
+
readonly hex: "#d4d4d4";
|
|
739
|
+
}, {
|
|
740
|
+
readonly number: 400;
|
|
741
|
+
readonly hex: "#a1a1a1";
|
|
742
|
+
}, {
|
|
743
|
+
readonly number: 500;
|
|
744
|
+
readonly hex: "#737373";
|
|
745
|
+
}, {
|
|
746
|
+
readonly number: 600;
|
|
747
|
+
readonly hex: "#525252";
|
|
748
|
+
}, {
|
|
749
|
+
readonly number: 700;
|
|
750
|
+
readonly hex: "#404040";
|
|
751
|
+
}, {
|
|
752
|
+
readonly number: 800;
|
|
753
|
+
readonly hex: "#262626";
|
|
754
|
+
}, {
|
|
755
|
+
readonly number: 900;
|
|
756
|
+
readonly hex: "#171717";
|
|
757
|
+
}, {
|
|
758
|
+
readonly number: 950;
|
|
759
|
+
readonly hex: "#0a0a0a";
|
|
760
|
+
}];
|
|
761
|
+
}, {
|
|
762
|
+
readonly name: "Stone";
|
|
763
|
+
readonly swatches: [{
|
|
764
|
+
readonly number: 50;
|
|
765
|
+
readonly hex: "#fafaf9";
|
|
766
|
+
}, {
|
|
767
|
+
readonly number: 100;
|
|
768
|
+
readonly hex: "#f5f5f4";
|
|
769
|
+
}, {
|
|
770
|
+
readonly number: 200;
|
|
771
|
+
readonly hex: "#e7e5e4";
|
|
772
|
+
}, {
|
|
773
|
+
readonly number: 300;
|
|
774
|
+
readonly hex: "#d6d3d1";
|
|
775
|
+
}, {
|
|
776
|
+
readonly number: 400;
|
|
777
|
+
readonly hex: "#a6a09b";
|
|
778
|
+
}, {
|
|
779
|
+
readonly number: 500;
|
|
780
|
+
readonly hex: "#79716b";
|
|
781
|
+
}, {
|
|
782
|
+
readonly number: 600;
|
|
783
|
+
readonly hex: "#57534d";
|
|
784
|
+
}, {
|
|
785
|
+
readonly number: 700;
|
|
786
|
+
readonly hex: "#44403b";
|
|
787
|
+
}, {
|
|
788
|
+
readonly number: 800;
|
|
789
|
+
readonly hex: "#292524";
|
|
790
|
+
}, {
|
|
791
|
+
readonly number: 900;
|
|
792
|
+
readonly hex: "#1c1917";
|
|
793
|
+
}, {
|
|
794
|
+
readonly number: 950;
|
|
795
|
+
readonly hex: "#0c0a09";
|
|
796
|
+
}];
|
|
797
|
+
}];
|
|
798
|
+
/**
|
|
799
|
+
* The color palettes mapped as an object type
|
|
800
|
+
* Structure: { [kebab-case-name]: { [number]: hex } }
|
|
801
|
+
*/
|
|
802
|
+
export type ColorPaletteObject = ColorPalettesToObject<typeof colorPalettes>;
|
|
803
|
+
/**
|
|
804
|
+
* The preset color
|
|
805
|
+
*/
|
|
806
|
+
export type PresetColor = KebabCase<(typeof colorPalettes)[number]["name"]>;
|
|
807
|
+
/**
|
|
808
|
+
* Transform array of swatches to an object with number as key and hex as value
|
|
809
|
+
*/
|
|
810
|
+
type SwatchesToObject<T extends readonly ColorSwatch[]> = T extends any ? {
|
|
811
|
+
[K in T[number] as K["number"]]: K["hex"];
|
|
812
|
+
} : never;
|
|
813
|
+
/**
|
|
814
|
+
* Transform color palettes array to a mapped object type
|
|
815
|
+
*/
|
|
816
|
+
type ColorPalettesToObject<T extends readonly ColorPalette[]> = {
|
|
817
|
+
[K in T[number] as KebabCase<K["name"]>]: SwatchesToObject<K["swatches"]>;
|
|
818
|
+
};
|
|
819
|
+
/**
|
|
820
|
+
* The color palette map
|
|
821
|
+
*/
|
|
822
|
+
export declare const colorPaletteMap: Map<PresetColor, Map<50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950, "#e5e5e5" | "#fafafa" | "#fef2f2" | "#ffe2e2" | "#ffc9c9" | "#ffa2a2" | "#ff6467" | "#fb2c36" | "#e7000b" | "#c10007" | "#9f0712" | "#82181a" | "#460809" | "#fff7ed" | "#ffedd4" | "#ffd6a7" | "#ffb86a" | "#ff8904" | "#ff6900" | "#f54900" | "#ca3500" | "#9f2d00" | "#7e2a0c" | "#441306" | "#fffbeb" | "#fef3c6" | "#fee685" | "#ffd230" | "#ffb900" | "#fe9a00" | "#e17100" | "#bb4d00" | "#973c00" | "#7b3306" | "#461901" | "#fefce8" | "#fef9c2" | "#fff085" | "#ffdf20" | "#fdc700" | "#f0b100" | "#d08700" | "#a65f00" | "#894b00" | "#733e0a" | "#432004" | "#f7fee7" | "#ecfcca" | "#d8f999" | "#bbf451" | "#9ae600" | "#7ccf00" | "#5ea500" | "#497d00" | "#3c6300" | "#35530e" | "#192e03" | "#f0fdf4" | "#dcfce7" | "#b9f8cf" | "#7bf1a8" | "#05df72" | "#00c950" | "#00a63e" | "#008236" | "#016630" | "#0d542b" | "#032e15" | "#ecfdf5" | "#d0fae5" | "#a4f4cf" | "#5ee9b5" | "#00d492" | "#00bc7d" | "#009966" | "#007a55" | "#006045" | "#004f3b" | "#002c22" | "#f0fdfa" | "#cbfbf1" | "#96f7e4" | "#46ecd5" | "#00d5be" | "#00bba7" | "#009689" | "#00786f" | "#005f5a" | "#0b4f4a" | "#022f2e" | "#ecfeff" | "#cefafe" | "#a2f4fd" | "#53eafd" | "#00d3f2" | "#00b8db" | "#0092b8" | "#007595" | "#005f78" | "#104e64" | "#053345" | "#f0f9ff" | "#dff2fe" | "#b8e6fe" | "#74d4ff" | "#00bcff" | "#00a6f4" | "#0084d1" | "#0069a8" | "#00598a" | "#024a70" | "#052f4a" | "#eff6ff" | "#dbeafe" | "#bedbff" | "#8ec5ff" | "#51a2ff" | "#2b7fff" | "#155dfc" | "#1447e6" | "#193cb8" | "#1c398e" | "#162456" | "#eef2ff" | "#e0e7ff" | "#c6d2ff" | "#a3b3ff" | "#7c86ff" | "#615fff" | "#4f39f6" | "#432dd7" | "#372aac" | "#312c85" | "#1e1a4d" | "#f5f3ff" | "#ede9fe" | "#ddd6ff" | "#c4b4ff" | "#a684ff" | "#8e51ff" | "#7f22fe" | "#7008e7" | "#5d0ec0" | "#4d179a" | "#2f0d68" | "#faf5ff" | "#f3e8ff" | "#e9d4ff" | "#dab2ff" | "#c27aff" | "#ad46ff" | "#9810fa" | "#8200db" | "#6e11b0" | "#59168b" | "#3c0366" | "#fdf4ff" | "#fae8ff" | "#f6cfff" | "#f4a8ff" | "#ed6aff" | "#e12afb" | "#c800de" | "#a800b7" | "#8a0194" | "#721378" | "#4b004f" | "#fdf2f8" | "#fce7f3" | "#fccee8" | "#fda5d5" | "#fb64b6" | "#f6339a" | "#e60076" | "#c6005c" | "#a3004c" | "#861043" | "#510424" | "#fff1f2" | "#ffe4e6" | "#ffccd3" | "#ffa1ad" | "#ff637e" | "#ff2056" | "#ec003f" | "#c70036" | "#a50036" | "#8b0836" | "#4d0218" | "#f8fafc" | "#f1f5f9" | "#e2e8f0" | "#cad5e2" | "#90a1b9" | "#62748e" | "#45556c" | "#314158" | "#1d293d" | "#0f172b" | "#020618" | "#f9fafb" | "#f3f4f6" | "#e5e7eb" | "#d1d5dc" | "#99a1af" | "#6a7282" | "#4a5565" | "#364153" | "#1e2939" | "#101828" | "#030712" | "#f4f4f5" | "#e4e4e7" | "#d4d4d8" | "#9f9fa9" | "#71717b" | "#52525c" | "#3f3f46" | "#27272a" | "#18181b" | "#09090b" | "#f5f5f5" | "#d4d4d4" | "#a1a1a1" | "#737373" | "#525252" | "#404040" | "#262626" | "#171717" | "#0a0a0a" | "#fafaf9" | "#f5f5f4" | "#e7e5e4" | "#d6d3d1" | "#a6a09b" | "#79716b" | "#57534d" | "#44403b" | "#292524" | "#1c1917" | "#0c0a09">>;
|
|
823
|
+
export {};
|