@yahoo/uds 0.3.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- package/cli/README.md +78 -131
- package/cli/commands/purge.ts +7 -3
- package/cli/env.d.ts +1 -0
- package/cli/utils/purgeCSS.test.ts +43 -3
- package/cli/utils/purgeCSS.ts +100 -14
- package/dist/Image.native-B3I4JoH3.d.cts +38 -0
- package/dist/Image.native-DUAFJodS.d.ts +38 -0
- package/dist/VStack-BHlRUsOR.d.cts +103 -0
- package/dist/VStack-DMb_RGRS.d.ts +103 -0
- package/dist/experimental/index.cjs +1 -1
- package/dist/experimental/index.d.cts +8 -8
- package/dist/experimental/index.d.ts +8 -8
- package/dist/experimental/index.js +1 -1
- package/dist/experimental/index.native.cjs +1 -1
- package/dist/experimental/index.native.d.cts +3 -3
- package/dist/experimental/index.native.d.ts +3 -3
- package/dist/experimental/index.native.js +1 -1
- package/dist/fixtures.cjs +1990 -0
- package/dist/fixtures.d.ts +81 -0
- package/dist/fixtures.js +1954 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +42 -237
- package/dist/index.d.ts +42 -237
- package/dist/index.js +1 -1
- package/dist/{index.native-CisPq4BI.d.ts → index.native-BTfOSmUx.d.ts} +1 -1
- package/dist/{index.native-DJlx-bfM.d.cts → index.native-Bm-r2Dpa.d.cts} +1 -1
- package/dist/index.native.cjs +1 -1
- package/dist/index.native.d.cts +21 -84
- package/dist/index.native.d.ts +21 -84
- package/dist/index.native.js +1 -1
- package/dist/styles/globals.css +0 -1
- package/dist/styles/toast.css +1 -0
- package/dist/styles/toast.d.cts +2 -0
- package/dist/styles/toast.d.ts +2 -0
- package/dist/tailwindPlugin.cjs +1 -1
- package/dist/tailwindPlugin.d.cts +8 -2
- package/dist/tailwindPlugin.d.ts +8 -2
- package/dist/tailwindPlugin.js +1 -1
- package/dist/tailwindPurge.cjs +1 -1
- package/dist/tailwindPurge.js +1 -1
- package/dist/tokens/index.cjs +1 -1
- package/dist/tokens/index.d.cts +8 -3
- package/dist/tokens/index.d.ts +8 -3
- package/dist/tokens/index.js +1 -1
- package/dist/tokens/index.native.cjs +1 -1
- package/dist/tokens/index.native.d.cts +2 -2
- package/dist/tokens/index.native.d.ts +2 -2
- package/dist/tokens/index.native.js +1 -1
- package/dist/tokens/parseTokens.cjs +1 -1
- package/dist/tokens/parseTokens.d.cts +8 -18
- package/dist/tokens/parseTokens.d.ts +8 -18
- package/dist/tokens/parseTokens.js +1 -1
- package/dist/tokens/parseTokens.native.cjs +1 -1
- package/dist/tokens/parseTokens.native.d.cts +4 -21
- package/dist/tokens/parseTokens.native.d.ts +4 -21
- package/dist/tokens/parseTokens.native.js +1 -1
- package/dist/{types-CzJpH_Oi.d.cts → types-COiuE8XK.d.cts} +49 -138
- package/dist/{types-CzJpH_Oi.d.ts → types-COiuE8XK.d.ts} +49 -138
- package/package.json +14 -13
- package/dist/Image.native-C6kOWgnf.d.ts +0 -38
- package/dist/Image.native-VeXt5aeI.d.cts +0 -38
- package/dist/VStack-BSD9TbBd.d.cts +0 -114
- package/dist/VStack-Dk3-8IyU.d.ts +0 -114
- package/dist/fixtures/index.cjs +0 -1
- package/dist/fixtures/index.d.cts +0 -154
- package/dist/fixtures/index.d.ts +0 -154
- package/dist/fixtures/index.js +0 -1
package/dist/fixtures.js
ADDED
@@ -0,0 +1,1954 @@
|
|
1
|
+
// src/fixtures/index.ts
|
2
|
+
var colorModes = [
|
3
|
+
"light",
|
4
|
+
"dark"
|
5
|
+
];
|
6
|
+
var scaleModes = [
|
7
|
+
"xSmall",
|
8
|
+
"small",
|
9
|
+
"medium",
|
10
|
+
"large",
|
11
|
+
"xLarge",
|
12
|
+
"xxLarge",
|
13
|
+
"xxxLarge"
|
14
|
+
];
|
15
|
+
var regionModes = [
|
16
|
+
"\uD83C\uDDFA\uD83C\uDDF8 US",
|
17
|
+
"\uD83C\uDDE9\uD83C\uDDEA DE",
|
18
|
+
"\uD83C\uDDEB\uD83C\uDDF7 FR",
|
19
|
+
"\uD83C\uDDE8\uD83C\uDDF3 CN"
|
20
|
+
];
|
21
|
+
var hues = [
|
22
|
+
"gray",
|
23
|
+
"purple",
|
24
|
+
"indigo",
|
25
|
+
"blue",
|
26
|
+
"cyan",
|
27
|
+
"teal",
|
28
|
+
"mint",
|
29
|
+
"green",
|
30
|
+
"lime",
|
31
|
+
"citron",
|
32
|
+
"yellow",
|
33
|
+
"brown",
|
34
|
+
"nude",
|
35
|
+
"orange",
|
36
|
+
"sunset",
|
37
|
+
"red",
|
38
|
+
"rose",
|
39
|
+
"pink",
|
40
|
+
"magenta",
|
41
|
+
"carbon"
|
42
|
+
];
|
43
|
+
var hueSteps = [
|
44
|
+
"0",
|
45
|
+
"1",
|
46
|
+
"2",
|
47
|
+
"3",
|
48
|
+
"4",
|
49
|
+
"5",
|
50
|
+
"6",
|
51
|
+
"7",
|
52
|
+
"8",
|
53
|
+
"9",
|
54
|
+
"10",
|
55
|
+
"11",
|
56
|
+
"12",
|
57
|
+
"13",
|
58
|
+
"14",
|
59
|
+
"15"
|
60
|
+
];
|
61
|
+
var spectrumColors = [
|
62
|
+
"gray-0",
|
63
|
+
"gray-1",
|
64
|
+
"gray-2",
|
65
|
+
"gray-3",
|
66
|
+
"gray-4",
|
67
|
+
"gray-5",
|
68
|
+
"gray-6",
|
69
|
+
"gray-7",
|
70
|
+
"gray-8",
|
71
|
+
"gray-9",
|
72
|
+
"gray-10",
|
73
|
+
"gray-11",
|
74
|
+
"gray-12",
|
75
|
+
"gray-13",
|
76
|
+
"gray-14",
|
77
|
+
"gray-15",
|
78
|
+
"purple-0",
|
79
|
+
"purple-1",
|
80
|
+
"purple-2",
|
81
|
+
"purple-3",
|
82
|
+
"purple-4",
|
83
|
+
"purple-5",
|
84
|
+
"purple-6",
|
85
|
+
"purple-7",
|
86
|
+
"purple-8",
|
87
|
+
"purple-9",
|
88
|
+
"purple-10",
|
89
|
+
"purple-11",
|
90
|
+
"purple-12",
|
91
|
+
"purple-13",
|
92
|
+
"purple-14",
|
93
|
+
"purple-15",
|
94
|
+
"indigo-0",
|
95
|
+
"indigo-1",
|
96
|
+
"indigo-2",
|
97
|
+
"indigo-3",
|
98
|
+
"indigo-4",
|
99
|
+
"indigo-5",
|
100
|
+
"indigo-6",
|
101
|
+
"indigo-7",
|
102
|
+
"indigo-8",
|
103
|
+
"indigo-9",
|
104
|
+
"indigo-10",
|
105
|
+
"indigo-11",
|
106
|
+
"indigo-12",
|
107
|
+
"indigo-13",
|
108
|
+
"indigo-14",
|
109
|
+
"indigo-15",
|
110
|
+
"blue-0",
|
111
|
+
"blue-1",
|
112
|
+
"blue-2",
|
113
|
+
"blue-3",
|
114
|
+
"blue-4",
|
115
|
+
"blue-5",
|
116
|
+
"blue-6",
|
117
|
+
"blue-7",
|
118
|
+
"blue-8",
|
119
|
+
"blue-9",
|
120
|
+
"blue-10",
|
121
|
+
"blue-11",
|
122
|
+
"blue-12",
|
123
|
+
"blue-13",
|
124
|
+
"blue-14",
|
125
|
+
"blue-15",
|
126
|
+
"cyan-0",
|
127
|
+
"cyan-1",
|
128
|
+
"cyan-2",
|
129
|
+
"cyan-3",
|
130
|
+
"cyan-4",
|
131
|
+
"cyan-5",
|
132
|
+
"cyan-6",
|
133
|
+
"cyan-7",
|
134
|
+
"cyan-8",
|
135
|
+
"cyan-9",
|
136
|
+
"cyan-10",
|
137
|
+
"cyan-11",
|
138
|
+
"cyan-12",
|
139
|
+
"cyan-13",
|
140
|
+
"cyan-14",
|
141
|
+
"cyan-15",
|
142
|
+
"teal-0",
|
143
|
+
"teal-1",
|
144
|
+
"teal-2",
|
145
|
+
"teal-3",
|
146
|
+
"teal-4",
|
147
|
+
"teal-5",
|
148
|
+
"teal-6",
|
149
|
+
"teal-7",
|
150
|
+
"teal-8",
|
151
|
+
"teal-9",
|
152
|
+
"teal-10",
|
153
|
+
"teal-11",
|
154
|
+
"teal-12",
|
155
|
+
"teal-13",
|
156
|
+
"teal-14",
|
157
|
+
"teal-15",
|
158
|
+
"mint-0",
|
159
|
+
"mint-1",
|
160
|
+
"mint-2",
|
161
|
+
"mint-3",
|
162
|
+
"mint-4",
|
163
|
+
"mint-5",
|
164
|
+
"mint-6",
|
165
|
+
"mint-7",
|
166
|
+
"mint-8",
|
167
|
+
"mint-9",
|
168
|
+
"mint-10",
|
169
|
+
"mint-11",
|
170
|
+
"mint-12",
|
171
|
+
"mint-13",
|
172
|
+
"mint-14",
|
173
|
+
"mint-15",
|
174
|
+
"green-0",
|
175
|
+
"green-1",
|
176
|
+
"green-2",
|
177
|
+
"green-3",
|
178
|
+
"green-4",
|
179
|
+
"green-5",
|
180
|
+
"green-6",
|
181
|
+
"green-7",
|
182
|
+
"green-8",
|
183
|
+
"green-9",
|
184
|
+
"green-10",
|
185
|
+
"green-11",
|
186
|
+
"green-12",
|
187
|
+
"green-13",
|
188
|
+
"green-14",
|
189
|
+
"green-15",
|
190
|
+
"lime-0",
|
191
|
+
"lime-1",
|
192
|
+
"lime-2",
|
193
|
+
"lime-3",
|
194
|
+
"lime-4",
|
195
|
+
"lime-5",
|
196
|
+
"lime-6",
|
197
|
+
"lime-7",
|
198
|
+
"lime-8",
|
199
|
+
"lime-9",
|
200
|
+
"lime-10",
|
201
|
+
"lime-11",
|
202
|
+
"lime-12",
|
203
|
+
"lime-13",
|
204
|
+
"lime-14",
|
205
|
+
"lime-15",
|
206
|
+
"citron-0",
|
207
|
+
"citron-1",
|
208
|
+
"citron-2",
|
209
|
+
"citron-3",
|
210
|
+
"citron-4",
|
211
|
+
"citron-5",
|
212
|
+
"citron-6",
|
213
|
+
"citron-7",
|
214
|
+
"citron-8",
|
215
|
+
"citron-9",
|
216
|
+
"citron-10",
|
217
|
+
"citron-11",
|
218
|
+
"citron-12",
|
219
|
+
"citron-13",
|
220
|
+
"citron-14",
|
221
|
+
"citron-15",
|
222
|
+
"yellow-0",
|
223
|
+
"yellow-1",
|
224
|
+
"yellow-2",
|
225
|
+
"yellow-3",
|
226
|
+
"yellow-4",
|
227
|
+
"yellow-5",
|
228
|
+
"yellow-6",
|
229
|
+
"yellow-7",
|
230
|
+
"yellow-8",
|
231
|
+
"yellow-9",
|
232
|
+
"yellow-10",
|
233
|
+
"yellow-11",
|
234
|
+
"yellow-12",
|
235
|
+
"yellow-13",
|
236
|
+
"yellow-14",
|
237
|
+
"yellow-15",
|
238
|
+
"brown-0",
|
239
|
+
"brown-1",
|
240
|
+
"brown-2",
|
241
|
+
"brown-3",
|
242
|
+
"brown-4",
|
243
|
+
"brown-5",
|
244
|
+
"brown-6",
|
245
|
+
"brown-7",
|
246
|
+
"brown-8",
|
247
|
+
"brown-9",
|
248
|
+
"brown-10",
|
249
|
+
"brown-11",
|
250
|
+
"brown-12",
|
251
|
+
"brown-13",
|
252
|
+
"brown-14",
|
253
|
+
"brown-15",
|
254
|
+
"nude-0",
|
255
|
+
"nude-1",
|
256
|
+
"nude-2",
|
257
|
+
"nude-3",
|
258
|
+
"nude-4",
|
259
|
+
"nude-5",
|
260
|
+
"nude-6",
|
261
|
+
"nude-7",
|
262
|
+
"nude-8",
|
263
|
+
"nude-9",
|
264
|
+
"nude-10",
|
265
|
+
"nude-11",
|
266
|
+
"nude-12",
|
267
|
+
"nude-13",
|
268
|
+
"nude-14",
|
269
|
+
"nude-15",
|
270
|
+
"orange-0",
|
271
|
+
"orange-1",
|
272
|
+
"orange-2",
|
273
|
+
"orange-3",
|
274
|
+
"orange-4",
|
275
|
+
"orange-5",
|
276
|
+
"orange-6",
|
277
|
+
"orange-7",
|
278
|
+
"orange-8",
|
279
|
+
"orange-9",
|
280
|
+
"orange-10",
|
281
|
+
"orange-11",
|
282
|
+
"orange-12",
|
283
|
+
"orange-13",
|
284
|
+
"orange-14",
|
285
|
+
"orange-15",
|
286
|
+
"sunset-0",
|
287
|
+
"sunset-1",
|
288
|
+
"sunset-2",
|
289
|
+
"sunset-3",
|
290
|
+
"sunset-4",
|
291
|
+
"sunset-5",
|
292
|
+
"sunset-6",
|
293
|
+
"sunset-7",
|
294
|
+
"sunset-8",
|
295
|
+
"sunset-9",
|
296
|
+
"sunset-10",
|
297
|
+
"sunset-11",
|
298
|
+
"sunset-12",
|
299
|
+
"sunset-13",
|
300
|
+
"sunset-14",
|
301
|
+
"sunset-15",
|
302
|
+
"red-0",
|
303
|
+
"red-1",
|
304
|
+
"red-2",
|
305
|
+
"red-3",
|
306
|
+
"red-4",
|
307
|
+
"red-5",
|
308
|
+
"red-6",
|
309
|
+
"red-7",
|
310
|
+
"red-8",
|
311
|
+
"red-9",
|
312
|
+
"red-10",
|
313
|
+
"red-11",
|
314
|
+
"red-12",
|
315
|
+
"red-13",
|
316
|
+
"red-14",
|
317
|
+
"red-15",
|
318
|
+
"rose-0",
|
319
|
+
"rose-1",
|
320
|
+
"rose-2",
|
321
|
+
"rose-3",
|
322
|
+
"rose-4",
|
323
|
+
"rose-5",
|
324
|
+
"rose-6",
|
325
|
+
"rose-7",
|
326
|
+
"rose-8",
|
327
|
+
"rose-9",
|
328
|
+
"rose-10",
|
329
|
+
"rose-11",
|
330
|
+
"rose-12",
|
331
|
+
"rose-13",
|
332
|
+
"rose-14",
|
333
|
+
"rose-15",
|
334
|
+
"pink-0",
|
335
|
+
"pink-1",
|
336
|
+
"pink-2",
|
337
|
+
"pink-3",
|
338
|
+
"pink-4",
|
339
|
+
"pink-5",
|
340
|
+
"pink-6",
|
341
|
+
"pink-7",
|
342
|
+
"pink-8",
|
343
|
+
"pink-9",
|
344
|
+
"pink-10",
|
345
|
+
"pink-11",
|
346
|
+
"pink-12",
|
347
|
+
"pink-13",
|
348
|
+
"pink-14",
|
349
|
+
"pink-15",
|
350
|
+
"magenta-0",
|
351
|
+
"magenta-1",
|
352
|
+
"magenta-2",
|
353
|
+
"magenta-3",
|
354
|
+
"magenta-4",
|
355
|
+
"magenta-5",
|
356
|
+
"magenta-6",
|
357
|
+
"magenta-7",
|
358
|
+
"magenta-8",
|
359
|
+
"magenta-9",
|
360
|
+
"magenta-10",
|
361
|
+
"magenta-11",
|
362
|
+
"magenta-12",
|
363
|
+
"magenta-13",
|
364
|
+
"magenta-14",
|
365
|
+
"magenta-15",
|
366
|
+
"carbon-0",
|
367
|
+
"carbon-1",
|
368
|
+
"carbon-2",
|
369
|
+
"carbon-3",
|
370
|
+
"carbon-4",
|
371
|
+
"carbon-5",
|
372
|
+
"carbon-6",
|
373
|
+
"carbon-7",
|
374
|
+
"carbon-8",
|
375
|
+
"carbon-9",
|
376
|
+
"carbon-10",
|
377
|
+
"carbon-11",
|
378
|
+
"carbon-12",
|
379
|
+
"carbon-13",
|
380
|
+
"carbon-14",
|
381
|
+
"carbon-15"
|
382
|
+
];
|
383
|
+
var corePaletteColors = [
|
384
|
+
"accent",
|
385
|
+
"alert",
|
386
|
+
"brand",
|
387
|
+
"positive",
|
388
|
+
"warning"
|
389
|
+
];
|
390
|
+
var backgroundPaletteColors = [
|
391
|
+
"primary",
|
392
|
+
"secondary"
|
393
|
+
];
|
394
|
+
var foregroundPaletteColors = [
|
395
|
+
"primary",
|
396
|
+
"secondary",
|
397
|
+
"tertiary",
|
398
|
+
"muted",
|
399
|
+
"on-color"
|
400
|
+
];
|
401
|
+
var linePaletteColors = [
|
402
|
+
"primary",
|
403
|
+
"secondary",
|
404
|
+
"tertiary",
|
405
|
+
"muted"
|
406
|
+
];
|
407
|
+
var alwaysPaletteAliases = [
|
408
|
+
"transparent",
|
409
|
+
"white",
|
410
|
+
"black"
|
411
|
+
];
|
412
|
+
var backgroundColors = [
|
413
|
+
...corePaletteColors,
|
414
|
+
...backgroundPaletteColors,
|
415
|
+
...alwaysPaletteAliases
|
416
|
+
];
|
417
|
+
var foregroundColors = [
|
418
|
+
...corePaletteColors,
|
419
|
+
...foregroundPaletteColors,
|
420
|
+
...alwaysPaletteAliases
|
421
|
+
];
|
422
|
+
var lineColors = [...corePaletteColors, ...linePaletteColors, ...alwaysPaletteAliases];
|
423
|
+
var palette = {
|
424
|
+
core: corePaletteColors,
|
425
|
+
background: backgroundPaletteColors,
|
426
|
+
foreground: foregroundPaletteColors,
|
427
|
+
line: linePaletteColors
|
428
|
+
};
|
429
|
+
var tailwindColorsAsUds = {
|
430
|
+
slate: {
|
431
|
+
"50": "rgb(var(--uds-spectrum-color-gray-1))",
|
432
|
+
"100": "rgb(var(--uds-spectrum-color-gray-2))",
|
433
|
+
"200": "rgb(var(--uds-spectrum-color-gray-3))",
|
434
|
+
"300": "rgb(var(--uds-spectrum-color-gray-4))",
|
435
|
+
"400": "rgb(var(--uds-spectrum-color-gray-6))",
|
436
|
+
"500": "rgb(var(--uds-spectrum-color-gray-8))",
|
437
|
+
"600": "rgb(var(--uds-spectrum-color-gray-10))",
|
438
|
+
"700": "rgb(var(--uds-spectrum-color-gray-10))",
|
439
|
+
"800": "rgb(var(--uds-spectrum-color-gray-12))",
|
440
|
+
"900": "rgb(var(--uds-spectrum-color-cyan-14))",
|
441
|
+
"950": "rgb(var(--uds-spectrum-color-cyan-15))"
|
442
|
+
},
|
443
|
+
gray: {
|
444
|
+
"50": "rgb(var(--uds-spectrum-color-carbon-1))",
|
445
|
+
"100": "rgb(var(--uds-spectrum-color-carbon-2))",
|
446
|
+
"200": "rgb(var(--uds-spectrum-color-gray-3))",
|
447
|
+
"300": "rgb(var(--uds-spectrum-color-gray-4))",
|
448
|
+
"400": "rgb(var(--uds-spectrum-color-gray-6))",
|
449
|
+
"500": "rgb(var(--uds-spectrum-color-gray-8))",
|
450
|
+
"600": "rgb(var(--uds-spectrum-color-gray-10))",
|
451
|
+
"700": "rgb(var(--uds-spectrum-color-carbon-9))",
|
452
|
+
"800": "rgb(var(--uds-spectrum-color-gray-12))",
|
453
|
+
"900": "rgb(var(--uds-spectrum-color-cyan-14))",
|
454
|
+
"950": "rgb(var(--uds-spectrum-color-carbon-14))"
|
455
|
+
},
|
456
|
+
zinc: {
|
457
|
+
"50": "rgb(var(--uds-spectrum-color-carbon-1))",
|
458
|
+
"100": "rgb(var(--uds-spectrum-color-carbon-2))",
|
459
|
+
"200": "rgb(var(--uds-spectrum-color-carbon-3))",
|
460
|
+
"300": "rgb(var(--uds-spectrum-color-carbon-4))",
|
461
|
+
"400": "rgb(var(--uds-spectrum-color-gray-6))",
|
462
|
+
"500": "rgb(var(--uds-spectrum-color-gray-8))",
|
463
|
+
"600": "rgb(var(--uds-spectrum-color-carbon-8))",
|
464
|
+
"700": "rgb(var(--uds-spectrum-color-carbon-9))",
|
465
|
+
"800": "rgb(var(--uds-spectrum-color-carbon-11))",
|
466
|
+
"900": "rgb(var(--uds-spectrum-color-carbon-13))",
|
467
|
+
"950": "rgb(var(--uds-spectrum-color-carbon-14))"
|
468
|
+
},
|
469
|
+
neutral: {
|
470
|
+
"50": "rgb(var(--uds-spectrum-color-carbon-1))",
|
471
|
+
"100": "rgb(var(--uds-spectrum-color-carbon-2))",
|
472
|
+
"200": "rgb(var(--uds-spectrum-color-carbon-3))",
|
473
|
+
"300": "rgb(var(--uds-spectrum-color-carbon-4))",
|
474
|
+
"400": "rgb(var(--uds-spectrum-color-gray-6))",
|
475
|
+
"500": "rgb(var(--uds-spectrum-color-gray-8))",
|
476
|
+
"600": "rgb(var(--uds-spectrum-color-gray-10))",
|
477
|
+
"700": "rgb(var(--uds-spectrum-color-carbon-9))",
|
478
|
+
"800": "rgb(var(--uds-spectrum-color-carbon-11))",
|
479
|
+
"900": "rgb(var(--uds-spectrum-color-carbon-13))",
|
480
|
+
"950": "rgb(var(--uds-spectrum-color-carbon-14))"
|
481
|
+
},
|
482
|
+
stone: {
|
483
|
+
"50": "rgb(var(--uds-spectrum-color-carbon-1))",
|
484
|
+
"100": "rgb(var(--uds-spectrum-color-carbon-2))",
|
485
|
+
"200": "rgb(var(--uds-spectrum-color-carbon-3))",
|
486
|
+
"300": "rgb(var(--uds-spectrum-color-carbon-4))",
|
487
|
+
"400": "rgb(var(--uds-spectrum-color-gray-6))",
|
488
|
+
"500": "rgb(var(--uds-spectrum-color-carbon-7))",
|
489
|
+
"600": "rgb(var(--uds-spectrum-color-carbon-8))",
|
490
|
+
"700": "rgb(var(--uds-spectrum-color-carbon-9))",
|
491
|
+
"800": "rgb(var(--uds-spectrum-color-carbon-11))",
|
492
|
+
"900": "rgb(var(--uds-spectrum-color-carbon-13))",
|
493
|
+
"950": "rgb(var(--uds-spectrum-color-carbon-14))"
|
494
|
+
},
|
495
|
+
red: {
|
496
|
+
"50": "rgb(var(--uds-spectrum-color-red-1))",
|
497
|
+
"100": "rgb(var(--uds-spectrum-color-nude-1))",
|
498
|
+
"200": "rgb(var(--uds-spectrum-color-sunset-2))",
|
499
|
+
"300": "rgb(var(--uds-spectrum-color-red-5))",
|
500
|
+
"400": "rgb(var(--uds-spectrum-color-red-6))",
|
501
|
+
"500": "rgb(var(--uds-spectrum-color-red-7))",
|
502
|
+
"600": "rgb(var(--uds-spectrum-color-red-9))",
|
503
|
+
"700": "rgb(var(--uds-spectrum-color-sunset-8))",
|
504
|
+
"800": "rgb(var(--uds-spectrum-color-sunset-9))",
|
505
|
+
"900": "rgb(var(--uds-spectrum-color-sunset-10))",
|
506
|
+
"950": "rgb(var(--uds-spectrum-color-red-14))"
|
507
|
+
},
|
508
|
+
orange: {
|
509
|
+
"50": "rgb(var(--uds-spectrum-color-orange-0))",
|
510
|
+
"100": "rgb(var(--uds-spectrum-color-brown-2))",
|
511
|
+
"200": "rgb(var(--uds-spectrum-color-orange-3))",
|
512
|
+
"300": "rgb(var(--uds-spectrum-color-orange-4))",
|
513
|
+
"400": "rgb(var(--uds-spectrum-color-orange-5))",
|
514
|
+
"500": "rgb(var(--uds-spectrum-color-orange-6))",
|
515
|
+
"600": "rgb(var(--uds-spectrum-color-orange-7))",
|
516
|
+
"700": "rgb(var(--uds-spectrum-color-orange-9))",
|
517
|
+
"800": "rgb(var(--uds-spectrum-color-sunset-9))",
|
518
|
+
"900": "rgb(var(--uds-spectrum-color-orange-12))",
|
519
|
+
"950": "rgb(var(--uds-spectrum-color-orange-14))"
|
520
|
+
},
|
521
|
+
amber: {
|
522
|
+
"50": "rgb(var(--uds-spectrum-color-yellow-0))",
|
523
|
+
"100": "rgb(var(--uds-spectrum-color-yellow-1))",
|
524
|
+
"200": "rgb(var(--uds-spectrum-color-yellow-3))",
|
525
|
+
"300": "rgb(var(--uds-spectrum-color-yellow-4))",
|
526
|
+
"400": "rgb(var(--uds-spectrum-color-yellow-5))",
|
527
|
+
"500": "rgb(var(--uds-spectrum-color-orange-6))",
|
528
|
+
"600": "rgb(var(--uds-spectrum-color-orange-7))",
|
529
|
+
"700": "rgb(var(--uds-spectrum-color-orange-9))",
|
530
|
+
"800": "rgb(var(--uds-spectrum-color-orange-11))",
|
531
|
+
"900": "rgb(var(--uds-spectrum-color-orange-12))",
|
532
|
+
"950": "rgb(var(--uds-spectrum-color-orange-14))"
|
533
|
+
},
|
534
|
+
yellow: {
|
535
|
+
"50": "rgb(var(--uds-spectrum-color-citron-0))",
|
536
|
+
"100": "rgb(var(--uds-spectrum-color-citron-1))",
|
537
|
+
"200": "rgb(var(--uds-spectrum-color-yellow-3))",
|
538
|
+
"300": "rgb(var(--uds-spectrum-color-yellow-4))",
|
539
|
+
"400": "rgb(var(--uds-spectrum-color-yellow-6))",
|
540
|
+
"500": "rgb(var(--uds-spectrum-color-yellow-6))",
|
541
|
+
"600": "rgb(var(--uds-spectrum-color-orange-7))",
|
542
|
+
"700": "rgb(var(--uds-spectrum-color-yellow-7))",
|
543
|
+
"800": "rgb(var(--uds-spectrum-color-brown-9))",
|
544
|
+
"900": "rgb(var(--uds-spectrum-color-brown-9))",
|
545
|
+
"950": "rgb(var(--uds-spectrum-color-orange-14))"
|
546
|
+
},
|
547
|
+
lime: {
|
548
|
+
"50": "rgb(var(--uds-spectrum-color-citron-0))",
|
549
|
+
"100": "rgb(var(--uds-spectrum-color-lime-2))",
|
550
|
+
"200": "rgb(var(--uds-spectrum-color-lime-4))",
|
551
|
+
"300": "rgb(var(--uds-spectrum-color-lime-5))",
|
552
|
+
"400": "rgb(var(--uds-spectrum-color-lime-6))",
|
553
|
+
"500": "rgb(var(--uds-spectrum-color-lime-7))",
|
554
|
+
"600": "rgb(var(--uds-spectrum-color-lime-7))",
|
555
|
+
"700": "rgb(var(--uds-spectrum-color-lime-9))",
|
556
|
+
"800": "rgb(var(--uds-spectrum-color-lime-10))",
|
557
|
+
"900": "rgb(var(--uds-spectrum-color-lime-11))",
|
558
|
+
"950": "rgb(var(--uds-spectrum-color-lime-14))"
|
559
|
+
},
|
560
|
+
green: {
|
561
|
+
"50": "rgb(var(--uds-spectrum-color-green-0))",
|
562
|
+
"100": "rgb(var(--uds-spectrum-color-mint-2))",
|
563
|
+
"200": "rgb(var(--uds-spectrum-color-green-2))",
|
564
|
+
"300": "rgb(var(--uds-spectrum-color-green-3))",
|
565
|
+
"400": "rgb(var(--uds-spectrum-color-green-5))",
|
566
|
+
"500": "rgb(var(--uds-spectrum-color-green-6))",
|
567
|
+
"600": "rgb(var(--uds-spectrum-color-green-6))",
|
568
|
+
"700": "rgb(var(--uds-spectrum-color-green-8))",
|
569
|
+
"800": "rgb(var(--uds-spectrum-color-green-10))",
|
570
|
+
"900": "rgb(var(--uds-spectrum-color-green-11))",
|
571
|
+
"950": "rgb(var(--uds-spectrum-color-green-14))"
|
572
|
+
},
|
573
|
+
emerald: {
|
574
|
+
"50": "rgb(var(--uds-spectrum-color-mint-1))",
|
575
|
+
"100": "rgb(var(--uds-spectrum-color-mint-2))",
|
576
|
+
"200": "rgb(var(--uds-spectrum-color-mint-4))",
|
577
|
+
"300": "rgb(var(--uds-spectrum-color-mint-5))",
|
578
|
+
"400": "rgb(var(--uds-spectrum-color-mint-6))",
|
579
|
+
"500": "rgb(var(--uds-spectrum-color-teal-7))",
|
580
|
+
"600": "rgb(var(--uds-spectrum-color-green-7))",
|
581
|
+
"700": "rgb(var(--uds-spectrum-color-mint-8))",
|
582
|
+
"800": "rgb(var(--uds-spectrum-color-mint-10))",
|
583
|
+
"900": "rgb(var(--uds-spectrum-color-mint-11))",
|
584
|
+
"950": "rgb(var(--uds-spectrum-color-mint-14))"
|
585
|
+
},
|
586
|
+
teal: {
|
587
|
+
"50": "rgb(var(--uds-spectrum-color-teal-0))",
|
588
|
+
"100": "rgb(var(--uds-spectrum-color-teal-2))",
|
589
|
+
"200": "rgb(var(--uds-spectrum-color-teal-4))",
|
590
|
+
"300": "rgb(var(--uds-spectrum-color-teal-5))",
|
591
|
+
"400": "rgb(var(--uds-spectrum-color-teal-6))",
|
592
|
+
"500": "rgb(var(--uds-spectrum-color-teal-7))",
|
593
|
+
"600": "rgb(var(--uds-spectrum-color-teal-8))",
|
594
|
+
"700": "rgb(var(--uds-spectrum-color-teal-10))",
|
595
|
+
"800": "rgb(var(--uds-spectrum-color-teal-11))",
|
596
|
+
"900": "rgb(var(--uds-spectrum-color-cyan-11))",
|
597
|
+
"950": "rgb(var(--uds-spectrum-color-teal-14))"
|
598
|
+
},
|
599
|
+
cyan: {
|
600
|
+
"50": "rgb(var(--uds-spectrum-color-blue-0))",
|
601
|
+
"100": "rgb(var(--uds-spectrum-color-teal-2))",
|
602
|
+
"200": "rgb(var(--uds-spectrum-color-cyan-3))",
|
603
|
+
"300": "rgb(var(--uds-spectrum-color-cyan-4))",
|
604
|
+
"400": "rgb(var(--uds-spectrum-color-teal-6))",
|
605
|
+
"500": "rgb(var(--uds-spectrum-color-teal-6))",
|
606
|
+
"600": "rgb(var(--uds-spectrum-color-cyan-7))",
|
607
|
+
"700": "rgb(var(--uds-spectrum-color-cyan-8))",
|
608
|
+
"800": "rgb(var(--uds-spectrum-color-cyan-10))",
|
609
|
+
"900": "rgb(var(--uds-spectrum-color-cyan-10))",
|
610
|
+
"950": "rgb(var(--uds-spectrum-color-cyan-12))"
|
611
|
+
},
|
612
|
+
sky: {
|
613
|
+
"50": "rgb(var(--uds-spectrum-color-blue-0))",
|
614
|
+
"100": "rgb(var(--uds-spectrum-color-blue-1))",
|
615
|
+
"200": "rgb(var(--uds-spectrum-color-blue-2))",
|
616
|
+
"300": "rgb(var(--uds-spectrum-color-blue-4))",
|
617
|
+
"400": "rgb(var(--uds-spectrum-color-blue-5))",
|
618
|
+
"500": "rgb(var(--uds-spectrum-color-blue-6))",
|
619
|
+
"600": "rgb(var(--uds-spectrum-color-cyan-7))",
|
620
|
+
"700": "rgb(var(--uds-spectrum-color-cyan-8))",
|
621
|
+
"800": "rgb(var(--uds-spectrum-color-cyan-9))",
|
622
|
+
"900": "rgb(var(--uds-spectrum-color-cyan-10))",
|
623
|
+
"950": "rgb(var(--uds-spectrum-color-cyan-12))"
|
624
|
+
},
|
625
|
+
blue: {
|
626
|
+
"50": "rgb(var(--uds-spectrum-color-indigo-0))",
|
627
|
+
"100": "rgb(var(--uds-spectrum-color-indigo-1))",
|
628
|
+
"200": "rgb(var(--uds-spectrum-color-blue-2))",
|
629
|
+
"300": "rgb(var(--uds-spectrum-color-blue-4))",
|
630
|
+
"400": "rgb(var(--uds-spectrum-color-blue-5))",
|
631
|
+
"500": "rgb(var(--uds-spectrum-color-blue-7))",
|
632
|
+
"600": "rgb(var(--uds-spectrum-color-blue-8))",
|
633
|
+
"700": "rgb(var(--uds-spectrum-color-blue-10))",
|
634
|
+
"800": "rgb(var(--uds-spectrum-color-blue-12))",
|
635
|
+
"900": "rgb(var(--uds-spectrum-color-blue-13))",
|
636
|
+
"950": "rgb(var(--uds-spectrum-color-cyan-12))"
|
637
|
+
},
|
638
|
+
indigo: {
|
639
|
+
"50": "rgb(var(--uds-spectrum-color-indigo-0))",
|
640
|
+
"100": "rgb(var(--uds-spectrum-color-indigo-1))",
|
641
|
+
"200": "rgb(var(--uds-spectrum-color-indigo-2))",
|
642
|
+
"300": "rgb(var(--uds-spectrum-color-indigo-3))",
|
643
|
+
"400": "rgb(var(--uds-spectrum-color-indigo-5))",
|
644
|
+
"500": "rgb(var(--uds-spectrum-color-indigo-7))",
|
645
|
+
"600": "rgb(var(--uds-spectrum-color-indigo-8))",
|
646
|
+
"700": "rgb(var(--uds-spectrum-color-indigo-8))",
|
647
|
+
"800": "rgb(var(--uds-spectrum-color-purple-11))",
|
648
|
+
"900": "rgb(var(--uds-spectrum-color-purple-12))",
|
649
|
+
"950": "rgb(var(--uds-spectrum-color-purple-14))"
|
650
|
+
},
|
651
|
+
violet: {
|
652
|
+
"50": "rgb(var(--uds-spectrum-color-purple-0))",
|
653
|
+
"100": "rgb(var(--uds-spectrum-color-purple-1))",
|
654
|
+
"200": "rgb(var(--uds-spectrum-color-purple-2))",
|
655
|
+
"300": "rgb(var(--uds-spectrum-color-indigo-3))",
|
656
|
+
"400": "rgb(var(--uds-spectrum-color-purple-5))",
|
657
|
+
"500": "rgb(var(--uds-spectrum-color-purple-7))",
|
658
|
+
"600": "rgb(var(--uds-spectrum-color-purple-8))",
|
659
|
+
"700": "rgb(var(--uds-spectrum-color-purple-10))",
|
660
|
+
"800": "rgb(var(--uds-spectrum-color-purple-11))",
|
661
|
+
"900": "rgb(var(--uds-spectrum-color-purple-11))",
|
662
|
+
"950": "rgb(var(--uds-spectrum-color-purple-13))"
|
663
|
+
},
|
664
|
+
purple: {
|
665
|
+
"50": "rgb(var(--uds-spectrum-color-purple-0))",
|
666
|
+
"100": "rgb(var(--uds-spectrum-color-magenta-0))",
|
667
|
+
"200": "rgb(var(--uds-spectrum-color-magenta-1))",
|
668
|
+
"300": "rgb(var(--uds-spectrum-color-magenta-3))",
|
669
|
+
"400": "rgb(var(--uds-spectrum-color-purple-5))",
|
670
|
+
"500": "rgb(var(--uds-spectrum-color-purple-7))",
|
671
|
+
"600": "rgb(var(--uds-spectrum-color-purple-9))",
|
672
|
+
"700": "rgb(var(--uds-spectrum-color-purple-10))",
|
673
|
+
"800": "rgb(var(--uds-spectrum-color-purple-11))",
|
674
|
+
"900": "rgb(var(--uds-spectrum-color-purple-11))",
|
675
|
+
"950": "rgb(var(--uds-spectrum-color-purple-13))"
|
676
|
+
},
|
677
|
+
fuchsia: {
|
678
|
+
"50": "rgb(var(--uds-spectrum-color-pink-0))",
|
679
|
+
"100": "rgb(var(--uds-spectrum-color-magenta-0))",
|
680
|
+
"200": "rgb(var(--uds-spectrum-color-magenta-1))",
|
681
|
+
"300": "rgb(var(--uds-spectrum-color-magenta-3))",
|
682
|
+
"400": "rgb(var(--uds-spectrum-color-magenta-5))",
|
683
|
+
"500": "rgb(var(--uds-spectrum-color-magenta-7))",
|
684
|
+
"600": "rgb(var(--uds-spectrum-color-magenta-8))",
|
685
|
+
"700": "rgb(var(--uds-spectrum-color-magenta-9))",
|
686
|
+
"800": "rgb(var(--uds-spectrum-color-magenta-10))",
|
687
|
+
"900": "rgb(var(--uds-spectrum-color-magenta-11))",
|
688
|
+
"950": "rgb(var(--uds-spectrum-color-magenta-13))"
|
689
|
+
},
|
690
|
+
pink: {
|
691
|
+
"50": "rgb(var(--uds-spectrum-color-nude-0))",
|
692
|
+
"100": "rgb(var(--uds-spectrum-color-rose-1))",
|
693
|
+
"200": "rgb(var(--uds-spectrum-color-rose-3))",
|
694
|
+
"300": "rgb(var(--uds-spectrum-color-pink-3))",
|
695
|
+
"400": "rgb(var(--uds-spectrum-color-rose-6))",
|
696
|
+
"500": "rgb(var(--uds-spectrum-color-pink-6))",
|
697
|
+
"600": "rgb(var(--uds-spectrum-color-pink-9))",
|
698
|
+
"700": "rgb(var(--uds-spectrum-color-pink-10))",
|
699
|
+
"800": "rgb(var(--uds-spectrum-color-rose-10))",
|
700
|
+
"900": "rgb(var(--uds-spectrum-color-rose-11))",
|
701
|
+
"950": "rgb(var(--uds-spectrum-color-rose-13))"
|
702
|
+
},
|
703
|
+
rose: {
|
704
|
+
"50": "rgb(var(--uds-spectrum-color-red-1))",
|
705
|
+
"100": "rgb(var(--uds-spectrum-color-red-2))",
|
706
|
+
"200": "rgb(var(--uds-spectrum-color-red-3))",
|
707
|
+
"300": "rgb(var(--uds-spectrum-color-rose-5))",
|
708
|
+
"400": "rgb(var(--uds-spectrum-color-red-6))",
|
709
|
+
"500": "rgb(var(--uds-spectrum-color-red-7))",
|
710
|
+
"600": "rgb(var(--uds-spectrum-color-red-9))",
|
711
|
+
"700": "rgb(var(--uds-spectrum-color-red-9))",
|
712
|
+
"800": "rgb(var(--uds-spectrum-color-rose-10))",
|
713
|
+
"900": "rgb(var(--uds-spectrum-color-rose-11))",
|
714
|
+
"950": "rgb(var(--uds-spectrum-color-rose-13))"
|
715
|
+
}
|
716
|
+
};
|
717
|
+
var textVariants = [
|
718
|
+
"display1",
|
719
|
+
"display2",
|
720
|
+
"display3",
|
721
|
+
"title1",
|
722
|
+
"title2",
|
723
|
+
"title3",
|
724
|
+
"title4",
|
725
|
+
"headline1",
|
726
|
+
"body1",
|
727
|
+
"label1",
|
728
|
+
"label2",
|
729
|
+
"caption1",
|
730
|
+
"caption2",
|
731
|
+
"legal1"
|
732
|
+
];
|
733
|
+
var fontFamilies = [
|
734
|
+
"icons",
|
735
|
+
"sans",
|
736
|
+
"sans-beta",
|
737
|
+
"sans-condensed",
|
738
|
+
"serif-text",
|
739
|
+
"serif-display"
|
740
|
+
];
|
741
|
+
var fontWeights = [
|
742
|
+
"light",
|
743
|
+
"medium",
|
744
|
+
"black",
|
745
|
+
"thin",
|
746
|
+
"extralight",
|
747
|
+
"regular",
|
748
|
+
"semibold",
|
749
|
+
"bold",
|
750
|
+
"extrabold"
|
751
|
+
];
|
752
|
+
var textTransforms = [
|
753
|
+
"none",
|
754
|
+
"uppercase",
|
755
|
+
"lowercase",
|
756
|
+
"capitalize"
|
757
|
+
];
|
758
|
+
var fontSizeRamp = {
|
759
|
+
xSmall: {
|
760
|
+
display1: -2,
|
761
|
+
display2: -3,
|
762
|
+
display3: -3,
|
763
|
+
title1: -3,
|
764
|
+
title2: -3,
|
765
|
+
title3: -3,
|
766
|
+
title4: -3,
|
767
|
+
headline1: -3,
|
768
|
+
body1: -3,
|
769
|
+
label1: -2,
|
770
|
+
label2: -2,
|
771
|
+
caption1: -1,
|
772
|
+
caption2: -1,
|
773
|
+
legal1: -1
|
774
|
+
},
|
775
|
+
small: {
|
776
|
+
display1: -2,
|
777
|
+
display2: -2,
|
778
|
+
display3: -2,
|
779
|
+
title1: -2,
|
780
|
+
title2: -2,
|
781
|
+
title3: -2,
|
782
|
+
title4: -2,
|
783
|
+
headline1: -2,
|
784
|
+
body1: -2,
|
785
|
+
label1: -1,
|
786
|
+
label2: -1,
|
787
|
+
caption1: 0,
|
788
|
+
caption2: 0,
|
789
|
+
legal1: 0
|
790
|
+
},
|
791
|
+
medium: {
|
792
|
+
display1: -1,
|
793
|
+
display2: -1,
|
794
|
+
display3: -1,
|
795
|
+
title1: -1,
|
796
|
+
title2: -1,
|
797
|
+
title3: -1,
|
798
|
+
title4: -1,
|
799
|
+
headline1: -1,
|
800
|
+
body1: -1,
|
801
|
+
label1: -1,
|
802
|
+
label2: -1,
|
803
|
+
caption1: 0,
|
804
|
+
caption2: 0,
|
805
|
+
legal1: 0
|
806
|
+
},
|
807
|
+
large: {
|
808
|
+
display1: 0,
|
809
|
+
display2: 0,
|
810
|
+
display3: 0,
|
811
|
+
title1: 0,
|
812
|
+
title2: 0,
|
813
|
+
title3: 0,
|
814
|
+
title4: 0,
|
815
|
+
headline1: 0,
|
816
|
+
body1: 0,
|
817
|
+
label1: 0,
|
818
|
+
label2: 0,
|
819
|
+
caption1: 0,
|
820
|
+
caption2: 0,
|
821
|
+
legal1: 0
|
822
|
+
},
|
823
|
+
xLarge: {
|
824
|
+
display1: 2,
|
825
|
+
display2: 2,
|
826
|
+
display3: 2,
|
827
|
+
title1: 2,
|
828
|
+
title2: 2,
|
829
|
+
title3: 2,
|
830
|
+
title4: 2,
|
831
|
+
headline1: 2,
|
832
|
+
body1: 0,
|
833
|
+
label1: 2,
|
834
|
+
label2: 2,
|
835
|
+
caption1: 2,
|
836
|
+
caption2: 2,
|
837
|
+
legal1: 2
|
838
|
+
},
|
839
|
+
xxLarge: {
|
840
|
+
display1: 4,
|
841
|
+
display2: 4,
|
842
|
+
display3: 4,
|
843
|
+
title1: 4,
|
844
|
+
title2: 4,
|
845
|
+
title3: 4,
|
846
|
+
title4: 6,
|
847
|
+
headline1: 4,
|
848
|
+
body1: 4,
|
849
|
+
label1: 4,
|
850
|
+
label2: 4,
|
851
|
+
caption1: 4,
|
852
|
+
caption2: 4,
|
853
|
+
legal1: 4
|
854
|
+
},
|
855
|
+
xxxLarge: {
|
856
|
+
display1: 6,
|
857
|
+
display2: 6,
|
858
|
+
display3: 6,
|
859
|
+
title1: 6,
|
860
|
+
title2: 6,
|
861
|
+
title3: 6,
|
862
|
+
title4: 8,
|
863
|
+
headline1: 6,
|
864
|
+
body1: 6,
|
865
|
+
label1: 6,
|
866
|
+
label2: 6,
|
867
|
+
caption1: 6,
|
868
|
+
caption2: 6,
|
869
|
+
legal1: 6
|
870
|
+
}
|
871
|
+
};
|
872
|
+
var lineHeightRamp = {
|
873
|
+
xSmall: {
|
874
|
+
display1: 0,
|
875
|
+
display2: 0,
|
876
|
+
display3: 0,
|
877
|
+
title1: -4,
|
878
|
+
title2: -4,
|
879
|
+
title3: -4,
|
880
|
+
title4: 0,
|
881
|
+
headline1: -4,
|
882
|
+
body1: -4,
|
883
|
+
label1: -4,
|
884
|
+
label2: -4,
|
885
|
+
caption1: 0,
|
886
|
+
caption2: 0,
|
887
|
+
legal1: -4
|
888
|
+
},
|
889
|
+
small: {
|
890
|
+
display1: 0,
|
891
|
+
display2: 0,
|
892
|
+
display3: 0,
|
893
|
+
title1: 0,
|
894
|
+
title2: -4,
|
895
|
+
title3: -4,
|
896
|
+
title4: 0,
|
897
|
+
headline1: 0,
|
898
|
+
body1: 0,
|
899
|
+
label1: -4,
|
900
|
+
label2: -4,
|
901
|
+
caption1: 0,
|
902
|
+
caption2: 0,
|
903
|
+
legal1: 0
|
904
|
+
},
|
905
|
+
medium: {
|
906
|
+
display1: 0,
|
907
|
+
display2: 0,
|
908
|
+
display3: 0,
|
909
|
+
title1: 0,
|
910
|
+
title2: 0,
|
911
|
+
title3: 0,
|
912
|
+
title4: 0,
|
913
|
+
headline1: 0,
|
914
|
+
body1: 0,
|
915
|
+
label1: -4,
|
916
|
+
label2: -4,
|
917
|
+
caption1: 0,
|
918
|
+
caption2: 0,
|
919
|
+
legal1: 0
|
920
|
+
},
|
921
|
+
large: {
|
922
|
+
display1: 0,
|
923
|
+
display2: 0,
|
924
|
+
display3: 0,
|
925
|
+
title1: 0,
|
926
|
+
title2: 0,
|
927
|
+
title3: 0,
|
928
|
+
title4: 0,
|
929
|
+
headline1: 0,
|
930
|
+
body1: 0,
|
931
|
+
label1: 0,
|
932
|
+
label2: 0,
|
933
|
+
caption1: 0,
|
934
|
+
caption2: 0,
|
935
|
+
legal1: 0
|
936
|
+
},
|
937
|
+
xLarge: {
|
938
|
+
display1: 0,
|
939
|
+
display2: 0,
|
940
|
+
display3: 0,
|
941
|
+
title1: 4,
|
942
|
+
title2: 0,
|
943
|
+
title3: 0,
|
944
|
+
title4: 0,
|
945
|
+
headline1: 4,
|
946
|
+
body1: 4,
|
947
|
+
label1: 0,
|
948
|
+
label2: 0,
|
949
|
+
caption1: 4,
|
950
|
+
caption2: 4,
|
951
|
+
legal1: 0
|
952
|
+
},
|
953
|
+
xxLarge: {
|
954
|
+
display1: 0,
|
955
|
+
display2: 0,
|
956
|
+
display3: 0,
|
957
|
+
title1: 4,
|
958
|
+
title2: 4,
|
959
|
+
title3: 4,
|
960
|
+
title4: 0,
|
961
|
+
headline1: 8,
|
962
|
+
body1: 8,
|
963
|
+
label1: 4,
|
964
|
+
label2: 4,
|
965
|
+
caption1: 4,
|
966
|
+
caption2: 4,
|
967
|
+
legal1: 4
|
968
|
+
},
|
969
|
+
xxxLarge: {
|
970
|
+
display1: 0,
|
971
|
+
display2: 0,
|
972
|
+
display3: 0,
|
973
|
+
title1: 8,
|
974
|
+
title2: 8,
|
975
|
+
title3: 4,
|
976
|
+
title4: 8,
|
977
|
+
headline1: 8,
|
978
|
+
body1: 8,
|
979
|
+
label1: 8,
|
980
|
+
label2: 8,
|
981
|
+
caption1: 8,
|
982
|
+
caption2: 8,
|
983
|
+
legal1: 4
|
984
|
+
}
|
985
|
+
};
|
986
|
+
var avatarSizes = [
|
987
|
+
"s",
|
988
|
+
"m",
|
989
|
+
"l"
|
990
|
+
];
|
991
|
+
var avatarShapes = [
|
992
|
+
"none",
|
993
|
+
"xs",
|
994
|
+
"sm",
|
995
|
+
"md",
|
996
|
+
"lg",
|
997
|
+
"xl",
|
998
|
+
"full"
|
999
|
+
];
|
1000
|
+
var borderRadii = [
|
1001
|
+
"none",
|
1002
|
+
"xs",
|
1003
|
+
"sm",
|
1004
|
+
"md",
|
1005
|
+
"lg",
|
1006
|
+
"xl",
|
1007
|
+
"full"
|
1008
|
+
];
|
1009
|
+
var borderRadiusRamp = {
|
1010
|
+
xSmall: {
|
1011
|
+
none: 0,
|
1012
|
+
xs: 0,
|
1013
|
+
sm: 0,
|
1014
|
+
md: 0,
|
1015
|
+
lg: -4,
|
1016
|
+
xl: -8,
|
1017
|
+
full: 0
|
1018
|
+
},
|
1019
|
+
small: {
|
1020
|
+
none: 0,
|
1021
|
+
xs: 0,
|
1022
|
+
sm: 0,
|
1023
|
+
md: 0,
|
1024
|
+
lg: -4,
|
1025
|
+
xl: -8,
|
1026
|
+
full: 0
|
1027
|
+
},
|
1028
|
+
medium: {
|
1029
|
+
none: 0,
|
1030
|
+
xs: 0,
|
1031
|
+
sm: 0,
|
1032
|
+
md: 0,
|
1033
|
+
lg: -4,
|
1034
|
+
xl: -8,
|
1035
|
+
full: 0
|
1036
|
+
},
|
1037
|
+
large: {
|
1038
|
+
none: 0,
|
1039
|
+
xs: 0,
|
1040
|
+
sm: 0,
|
1041
|
+
md: 0,
|
1042
|
+
lg: 0,
|
1043
|
+
xl: 0,
|
1044
|
+
full: 0
|
1045
|
+
},
|
1046
|
+
xLarge: {
|
1047
|
+
none: 0,
|
1048
|
+
xs: 0,
|
1049
|
+
sm: 0,
|
1050
|
+
md: 0,
|
1051
|
+
lg: 0,
|
1052
|
+
xl: 0,
|
1053
|
+
full: 0
|
1054
|
+
},
|
1055
|
+
xxLarge: {
|
1056
|
+
none: 0,
|
1057
|
+
xs: 0,
|
1058
|
+
sm: 0,
|
1059
|
+
md: 0,
|
1060
|
+
lg: 0,
|
1061
|
+
xl: 0,
|
1062
|
+
full: 0
|
1063
|
+
},
|
1064
|
+
xxxLarge: {
|
1065
|
+
none: 0,
|
1066
|
+
xs: 0,
|
1067
|
+
sm: 0,
|
1068
|
+
md: 0,
|
1069
|
+
lg: 0,
|
1070
|
+
xl: 0,
|
1071
|
+
full: 0
|
1072
|
+
}
|
1073
|
+
};
|
1074
|
+
var borderWidths = [
|
1075
|
+
"medium",
|
1076
|
+
"thin",
|
1077
|
+
"none",
|
1078
|
+
"thick"
|
1079
|
+
];
|
1080
|
+
var borderWidthRamp = {
|
1081
|
+
xSmall: {
|
1082
|
+
none: 0,
|
1083
|
+
thin: 0,
|
1084
|
+
medium: 0,
|
1085
|
+
thick: -2
|
1086
|
+
},
|
1087
|
+
small: {
|
1088
|
+
none: 0,
|
1089
|
+
thin: 0,
|
1090
|
+
medium: 0,
|
1091
|
+
thick: -2
|
1092
|
+
},
|
1093
|
+
medium: {
|
1094
|
+
none: 0,
|
1095
|
+
thin: 0,
|
1096
|
+
medium: 0,
|
1097
|
+
thick: -2
|
1098
|
+
},
|
1099
|
+
large: {
|
1100
|
+
none: 0,
|
1101
|
+
thin: 0,
|
1102
|
+
medium: 0,
|
1103
|
+
thick: 0
|
1104
|
+
},
|
1105
|
+
xLarge: {
|
1106
|
+
none: 0,
|
1107
|
+
thin: 0,
|
1108
|
+
medium: 0,
|
1109
|
+
thick: 0
|
1110
|
+
},
|
1111
|
+
xxLarge: {
|
1112
|
+
none: 0,
|
1113
|
+
thin: 0,
|
1114
|
+
medium: 0,
|
1115
|
+
thick: 0
|
1116
|
+
},
|
1117
|
+
xxxLarge: {
|
1118
|
+
none: 0,
|
1119
|
+
thin: 0,
|
1120
|
+
medium: 0,
|
1121
|
+
thick: 0
|
1122
|
+
}
|
1123
|
+
};
|
1124
|
+
var iconSizes = [
|
1125
|
+
"sm",
|
1126
|
+
"md",
|
1127
|
+
"lg"
|
1128
|
+
];
|
1129
|
+
var spacingAliases = [
|
1130
|
+
"1",
|
1131
|
+
"2",
|
1132
|
+
"3",
|
1133
|
+
"4",
|
1134
|
+
"5",
|
1135
|
+
"6",
|
1136
|
+
"7",
|
1137
|
+
"8",
|
1138
|
+
"9",
|
1139
|
+
"10",
|
1140
|
+
"11",
|
1141
|
+
"12",
|
1142
|
+
"13",
|
1143
|
+
"14",
|
1144
|
+
"none"
|
1145
|
+
];
|
1146
|
+
var spacingRamp = {
|
1147
|
+
xSmall: {
|
1148
|
+
"1": 0,
|
1149
|
+
"2": 0,
|
1150
|
+
"3": 0,
|
1151
|
+
"4": 0,
|
1152
|
+
"5": 0,
|
1153
|
+
"6": 0,
|
1154
|
+
"7": -4,
|
1155
|
+
"8": -8,
|
1156
|
+
"9": -12,
|
1157
|
+
"10": -16,
|
1158
|
+
"11": -20,
|
1159
|
+
"12": -24,
|
1160
|
+
"13": -28,
|
1161
|
+
"14": -32,
|
1162
|
+
none: 0
|
1163
|
+
},
|
1164
|
+
small: {
|
1165
|
+
"1": 0,
|
1166
|
+
"2": 0,
|
1167
|
+
"3": 0,
|
1168
|
+
"4": 0,
|
1169
|
+
"5": 0,
|
1170
|
+
"6": 0,
|
1171
|
+
"7": -4,
|
1172
|
+
"8": -8,
|
1173
|
+
"9": -12,
|
1174
|
+
"10": -16,
|
1175
|
+
"11": -20,
|
1176
|
+
"12": -24,
|
1177
|
+
"13": -28,
|
1178
|
+
"14": -32,
|
1179
|
+
none: 0
|
1180
|
+
},
|
1181
|
+
medium: {
|
1182
|
+
"1": 0,
|
1183
|
+
"2": 0,
|
1184
|
+
"3": 0,
|
1185
|
+
"4": 0,
|
1186
|
+
"5": 0,
|
1187
|
+
"6": 0,
|
1188
|
+
"7": -4,
|
1189
|
+
"8": -8,
|
1190
|
+
"9": -12,
|
1191
|
+
"10": -16,
|
1192
|
+
"11": -20,
|
1193
|
+
"12": -24,
|
1194
|
+
"13": -28,
|
1195
|
+
"14": -32,
|
1196
|
+
none: 0
|
1197
|
+
},
|
1198
|
+
large: {
|
1199
|
+
"1": 0,
|
1200
|
+
"2": 0,
|
1201
|
+
"3": 0,
|
1202
|
+
"4": 0,
|
1203
|
+
"5": 0,
|
1204
|
+
"6": 0,
|
1205
|
+
"7": 0,
|
1206
|
+
"8": 0,
|
1207
|
+
"9": 0,
|
1208
|
+
"10": 0,
|
1209
|
+
"11": 0,
|
1210
|
+
"12": 0,
|
1211
|
+
"13": 0,
|
1212
|
+
"14": 0,
|
1213
|
+
none: 0
|
1214
|
+
},
|
1215
|
+
xLarge: {
|
1216
|
+
"1": 0,
|
1217
|
+
"2": 0,
|
1218
|
+
"3": 0,
|
1219
|
+
"4": 0,
|
1220
|
+
"5": 0,
|
1221
|
+
"6": 0,
|
1222
|
+
"7": 0,
|
1223
|
+
"8": 0,
|
1224
|
+
"9": 0,
|
1225
|
+
"10": 0,
|
1226
|
+
"11": 0,
|
1227
|
+
"12": 0,
|
1228
|
+
"13": 0,
|
1229
|
+
"14": 0,
|
1230
|
+
none: 0
|
1231
|
+
},
|
1232
|
+
xxLarge: {
|
1233
|
+
"1": 0,
|
1234
|
+
"2": 0,
|
1235
|
+
"3": 0,
|
1236
|
+
"4": 0,
|
1237
|
+
"5": 0,
|
1238
|
+
"6": 0,
|
1239
|
+
"7": 0,
|
1240
|
+
"8": 0,
|
1241
|
+
"9": 0,
|
1242
|
+
"10": 0,
|
1243
|
+
"11": 0,
|
1244
|
+
"12": 0,
|
1245
|
+
"13": 0,
|
1246
|
+
"14": 0,
|
1247
|
+
none: 0
|
1248
|
+
},
|
1249
|
+
xxxLarge: {
|
1250
|
+
"1": 0,
|
1251
|
+
"2": 0,
|
1252
|
+
"3": 0,
|
1253
|
+
"4": 0,
|
1254
|
+
"5": 0,
|
1255
|
+
"6": 0,
|
1256
|
+
"7": 0,
|
1257
|
+
"8": 0,
|
1258
|
+
"9": 0,
|
1259
|
+
"10": 0,
|
1260
|
+
"11": 0,
|
1261
|
+
"12": 0,
|
1262
|
+
"13": 0,
|
1263
|
+
"14": 0,
|
1264
|
+
none: 0
|
1265
|
+
}
|
1266
|
+
};
|
1267
|
+
var buttonVariants = [
|
1268
|
+
"accent",
|
1269
|
+
"alert",
|
1270
|
+
"brand",
|
1271
|
+
"positive",
|
1272
|
+
"warning",
|
1273
|
+
"secondary",
|
1274
|
+
"accent-outline",
|
1275
|
+
"alert-outline",
|
1276
|
+
"brand-outline",
|
1277
|
+
"positive-outline",
|
1278
|
+
"warning-outline",
|
1279
|
+
"accent-ghost",
|
1280
|
+
"alert-ghost",
|
1281
|
+
"brand-ghost",
|
1282
|
+
"positive-ghost",
|
1283
|
+
"warning-ghost",
|
1284
|
+
"primary-ghost",
|
1285
|
+
"primary-outline"
|
1286
|
+
];
|
1287
|
+
var buttonSizes = [
|
1288
|
+
"s",
|
1289
|
+
"m",
|
1290
|
+
"l"
|
1291
|
+
];
|
1292
|
+
var iconNames = [
|
1293
|
+
"sunset",
|
1294
|
+
"bold",
|
1295
|
+
"academicCap",
|
1296
|
+
"academicCap_fill",
|
1297
|
+
"accept",
|
1298
|
+
"accept_fill",
|
1299
|
+
"accessibility",
|
1300
|
+
"accountKey",
|
1301
|
+
"accountKey_fill",
|
1302
|
+
"accountKeyAndroid",
|
1303
|
+
"accountKeyAndroid_fill",
|
1304
|
+
"addAttachments",
|
1305
|
+
"addAttachments_fill",
|
1306
|
+
"addDocument",
|
1307
|
+
"addDocument_fill",
|
1308
|
+
"addFolder",
|
1309
|
+
"addFolder_fill",
|
1310
|
+
"addLink",
|
1311
|
+
"addPerson",
|
1312
|
+
"addPerson_fill",
|
1313
|
+
"addToCalendar",
|
1314
|
+
"addToCalendar_fill",
|
1315
|
+
"ads",
|
1316
|
+
"adsEuro",
|
1317
|
+
"adsPound",
|
1318
|
+
"alarmClock",
|
1319
|
+
"alarmClock_fill",
|
1320
|
+
"analytics",
|
1321
|
+
"announcement",
|
1322
|
+
"announcement_fill",
|
1323
|
+
"appPublishing",
|
1324
|
+
"appPublishing_fill",
|
1325
|
+
"apparel",
|
1326
|
+
"apparel_fill",
|
1327
|
+
"appleWatch_fill",
|
1328
|
+
"ar3d",
|
1329
|
+
"archive",
|
1330
|
+
"archive_fill",
|
1331
|
+
"arrowCurveLeft",
|
1332
|
+
"arrowCurveRight",
|
1333
|
+
"arrowCurveUp",
|
1334
|
+
"arrowDown",
|
1335
|
+
"arrowDownAboveLine",
|
1336
|
+
"arrowDownAndIn",
|
1337
|
+
"arrowLeft",
|
1338
|
+
"arrowRight",
|
1339
|
+
"arrowUp",
|
1340
|
+
"arrowUpAndOut",
|
1341
|
+
"arrowUpUnderLine",
|
1342
|
+
"ascender",
|
1343
|
+
"astroAquarius",
|
1344
|
+
"astroAries",
|
1345
|
+
"astroCancer",
|
1346
|
+
"astroCapricorn",
|
1347
|
+
"astroGemini",
|
1348
|
+
"astroLeo",
|
1349
|
+
"astroLibra",
|
1350
|
+
"astroPisces",
|
1351
|
+
"astroSagittarius",
|
1352
|
+
"astroScorpio",
|
1353
|
+
"astroTaurus",
|
1354
|
+
"astroVirgo",
|
1355
|
+
"atSymbol",
|
1356
|
+
"attachment",
|
1357
|
+
"badge",
|
1358
|
+
"badge_fill",
|
1359
|
+
"barGraph",
|
1360
|
+
"barGraph_fill",
|
1361
|
+
"baseball",
|
1362
|
+
"baseball_fill",
|
1363
|
+
"baseballBat_fill",
|
1364
|
+
"basket",
|
1365
|
+
"basket_fill",
|
1366
|
+
"basketball",
|
1367
|
+
"basketball_fill",
|
1368
|
+
"beachUmbrella",
|
1369
|
+
"beachUmbrella_fill",
|
1370
|
+
"bed",
|
1371
|
+
"bed_fill",
|
1372
|
+
"beer",
|
1373
|
+
"beer_fill",
|
1374
|
+
"bell",
|
1375
|
+
"bell_fill",
|
1376
|
+
"bellOff",
|
1377
|
+
"bellOff_fill",
|
1378
|
+
"bellPlus",
|
1379
|
+
"bill",
|
1380
|
+
"bill_fill",
|
1381
|
+
"billing",
|
1382
|
+
"billing_fill",
|
1383
|
+
"binoculars",
|
1384
|
+
"binoculars_fill",
|
1385
|
+
"biometrics",
|
1386
|
+
"birthdayCake",
|
1387
|
+
"birthdayCake_fill",
|
1388
|
+
"blockPerson",
|
1389
|
+
"blockPerson_fill",
|
1390
|
+
"bookmark",
|
1391
|
+
"bookmark_fill",
|
1392
|
+
"box",
|
1393
|
+
"box_fill",
|
1394
|
+
"briefcase",
|
1395
|
+
"briefcase_fill",
|
1396
|
+
"bubbleGraph",
|
1397
|
+
"bubbleGraph_fill",
|
1398
|
+
"bulletList",
|
1399
|
+
"bulletListRectangle",
|
1400
|
+
"bulletListRectangle_fill",
|
1401
|
+
"bus",
|
1402
|
+
"bus_fill",
|
1403
|
+
"cal01",
|
1404
|
+
"cal01_fill",
|
1405
|
+
"cal02",
|
1406
|
+
"cal02_fill",
|
1407
|
+
"cal03",
|
1408
|
+
"cal03_fill",
|
1409
|
+
"cal04",
|
1410
|
+
"cal04_fill",
|
1411
|
+
"cal05",
|
1412
|
+
"cal05_fill",
|
1413
|
+
"cal06",
|
1414
|
+
"cal06_fill",
|
1415
|
+
"cal07",
|
1416
|
+
"cal07_fill",
|
1417
|
+
"cal08",
|
1418
|
+
"cal08_fill",
|
1419
|
+
"cal09",
|
1420
|
+
"cal09_fill",
|
1421
|
+
"cal10",
|
1422
|
+
"cal10_fill",
|
1423
|
+
"cal11",
|
1424
|
+
"cal11_fill",
|
1425
|
+
"cal12",
|
1426
|
+
"cal12_fill",
|
1427
|
+
"cal13",
|
1428
|
+
"cal13_fill",
|
1429
|
+
"cal14",
|
1430
|
+
"cal14_fill",
|
1431
|
+
"cal15",
|
1432
|
+
"cal15_fill",
|
1433
|
+
"cal16",
|
1434
|
+
"cal16_fill",
|
1435
|
+
"cal17",
|
1436
|
+
"cal17_fill",
|
1437
|
+
"cal18",
|
1438
|
+
"cal18_fill",
|
1439
|
+
"cal19",
|
1440
|
+
"cal19_fill",
|
1441
|
+
"cal20",
|
1442
|
+
"cal20_fill",
|
1443
|
+
"cal21",
|
1444
|
+
"cal21_fill",
|
1445
|
+
"cal22",
|
1446
|
+
"cal22_fill",
|
1447
|
+
"cal23",
|
1448
|
+
"cal23_fill",
|
1449
|
+
"cal24",
|
1450
|
+
"cal24_fill",
|
1451
|
+
"cal25",
|
1452
|
+
"cal25_fill",
|
1453
|
+
"cal26",
|
1454
|
+
"cal26_fill",
|
1455
|
+
"cal27",
|
1456
|
+
"cal27_fill",
|
1457
|
+
"cal28",
|
1458
|
+
"cal28_fill",
|
1459
|
+
"cal29",
|
1460
|
+
"cal29_fill",
|
1461
|
+
"cal30",
|
1462
|
+
"cal30_fill",
|
1463
|
+
"cal31",
|
1464
|
+
"cal31_fill",
|
1465
|
+
"calendar",
|
1466
|
+
"calendar_fill",
|
1467
|
+
"camera",
|
1468
|
+
"camera_fill",
|
1469
|
+
"candy",
|
1470
|
+
"canvas",
|
1471
|
+
"canvas_fill",
|
1472
|
+
"capitolBuilding",
|
1473
|
+
"capitolBuilding_fill",
|
1474
|
+
"capsule",
|
1475
|
+
"capsule_fill",
|
1476
|
+
"car",
|
1477
|
+
"car_fill",
|
1478
|
+
"card",
|
1479
|
+
"card_fill",
|
1480
|
+
"cart",
|
1481
|
+
"castAnimationFrame1",
|
1482
|
+
"castAnimationFrame2",
|
1483
|
+
"castUnavailable",
|
1484
|
+
"centerAligned",
|
1485
|
+
"cfl_fill",
|
1486
|
+
"changeFont",
|
1487
|
+
"checkboxMixed",
|
1488
|
+
"checkboxMixed_fill",
|
1489
|
+
"checkboxSelected",
|
1490
|
+
"checkboxSelected_fill",
|
1491
|
+
"checkboxUnselected",
|
1492
|
+
"checkmarkSelected",
|
1493
|
+
"chevronBack",
|
1494
|
+
"chevronDown",
|
1495
|
+
"chevronNext",
|
1496
|
+
"chevronUp",
|
1497
|
+
"chromeCast",
|
1498
|
+
"chromeCast_fill",
|
1499
|
+
"cleats",
|
1500
|
+
"cleats_fill",
|
1501
|
+
"clientAssist",
|
1502
|
+
"clientAssist_fill",
|
1503
|
+
"clock",
|
1504
|
+
"clock_fill",
|
1505
|
+
"close",
|
1506
|
+
"closedCaptioning",
|
1507
|
+
"closedCaptioning_fill",
|
1508
|
+
"cloud",
|
1509
|
+
"cloud_fill",
|
1510
|
+
"cloudDay",
|
1511
|
+
"cloudDrive",
|
1512
|
+
"cloudDrive_fill",
|
1513
|
+
"cloudNight",
|
1514
|
+
"code",
|
1515
|
+
"coffeeCup",
|
1516
|
+
"coffeeCup_fill",
|
1517
|
+
"coffeeMug",
|
1518
|
+
"coffeeMug_fill",
|
1519
|
+
"collapseList",
|
1520
|
+
"collegeFootball",
|
1521
|
+
"collegeFootball_fill",
|
1522
|
+
"colorPalette",
|
1523
|
+
"colorPalette_fill",
|
1524
|
+
"comedyTragedyMasks",
|
1525
|
+
"comedyTragedyMasks_fill",
|
1526
|
+
"comment",
|
1527
|
+
"comment_fill",
|
1528
|
+
"compass",
|
1529
|
+
"compass_fill",
|
1530
|
+
"compose",
|
1531
|
+
"compose_fill",
|
1532
|
+
"contactBook",
|
1533
|
+
"contactBook_fill",
|
1534
|
+
"contactCard",
|
1535
|
+
"contactCard_fill",
|
1536
|
+
"convenienceStore",
|
1537
|
+
"convenienceStore_fill",
|
1538
|
+
"conversations",
|
1539
|
+
"conversations_fill",
|
1540
|
+
"copy",
|
1541
|
+
"copy_fill",
|
1542
|
+
"copyright",
|
1543
|
+
"copyright_fill",
|
1544
|
+
"creativeCommons",
|
1545
|
+
"creativeCommons_fill",
|
1546
|
+
"creditCard",
|
1547
|
+
"creditCard_fill",
|
1548
|
+
"crescentMoon",
|
1549
|
+
"crescentMoonAlt",
|
1550
|
+
"cryptocurrency",
|
1551
|
+
"cryptocurrency_fill",
|
1552
|
+
"cursor",
|
1553
|
+
"cut",
|
1554
|
+
"dashboard",
|
1555
|
+
"dashboard_fill",
|
1556
|
+
"dating",
|
1557
|
+
"dating_fill",
|
1558
|
+
"decline",
|
1559
|
+
"decline_fill",
|
1560
|
+
"descender",
|
1561
|
+
"desktop",
|
1562
|
+
"desktop_fill",
|
1563
|
+
"diamond",
|
1564
|
+
"diamond_fill",
|
1565
|
+
"direction",
|
1566
|
+
"direction_fill",
|
1567
|
+
"discoBall",
|
1568
|
+
"document",
|
1569
|
+
"document_fill",
|
1570
|
+
"dollar",
|
1571
|
+
"doubleLeft",
|
1572
|
+
"doubleRight",
|
1573
|
+
"draft",
|
1574
|
+
"draft_fill",
|
1575
|
+
"dragBars",
|
1576
|
+
"dragBarsAlt",
|
1577
|
+
"dressForm_fill",
|
1578
|
+
"dressFrom",
|
1579
|
+
"dusk",
|
1580
|
+
"dusk_fill",
|
1581
|
+
"eclipse",
|
1582
|
+
"eclipse_fill",
|
1583
|
+
"edit",
|
1584
|
+
"edit_fill",
|
1585
|
+
"emoticon",
|
1586
|
+
"emoticon_fill",
|
1587
|
+
"euro",
|
1588
|
+
"exchange",
|
1589
|
+
"exclamation",
|
1590
|
+
"exclamation_fill",
|
1591
|
+
"exclamationAlt",
|
1592
|
+
"exclamationAlt_fill",
|
1593
|
+
"exitFullscreen",
|
1594
|
+
"expand",
|
1595
|
+
"expandAlt",
|
1596
|
+
"expandList",
|
1597
|
+
"eye",
|
1598
|
+
"eyeSlash",
|
1599
|
+
"eyelash",
|
1600
|
+
"fantasyBaseball",
|
1601
|
+
"fantasyBaseball_fill",
|
1602
|
+
"fantasyFootball",
|
1603
|
+
"fantasyFootball_fill",
|
1604
|
+
"files",
|
1605
|
+
"files_fill",
|
1606
|
+
"filter",
|
1607
|
+
"finance",
|
1608
|
+
"firstQuarter",
|
1609
|
+
"flag",
|
1610
|
+
"flag_fill",
|
1611
|
+
"flower",
|
1612
|
+
"fog",
|
1613
|
+
"fogDay",
|
1614
|
+
"fogNight",
|
1615
|
+
"folder",
|
1616
|
+
"folder_fill",
|
1617
|
+
"foodAndDrink",
|
1618
|
+
"foodAndDrink_fill",
|
1619
|
+
"football",
|
1620
|
+
"football_fill",
|
1621
|
+
"forkKnife",
|
1622
|
+
"forward",
|
1623
|
+
"forward_fill",
|
1624
|
+
"fourColumn",
|
1625
|
+
"fourColumn_fill",
|
1626
|
+
"fullMoon",
|
1627
|
+
"fullscreen",
|
1628
|
+
"fullscreenAudio",
|
1629
|
+
"gallery",
|
1630
|
+
"gallery_fill",
|
1631
|
+
"gasStation",
|
1632
|
+
"gear",
|
1633
|
+
"gear_fill",
|
1634
|
+
"gif",
|
1635
|
+
"gif_fill",
|
1636
|
+
"globe",
|
1637
|
+
"golf",
|
1638
|
+
"grid",
|
1639
|
+
"groups",
|
1640
|
+
"groups_fill",
|
1641
|
+
"guitar",
|
1642
|
+
"halfSun",
|
1643
|
+
"halfSun_fill",
|
1644
|
+
"hand",
|
1645
|
+
"hashtag",
|
1646
|
+
"haze",
|
1647
|
+
"hazeDay",
|
1648
|
+
"hazeNight",
|
1649
|
+
"heart",
|
1650
|
+
"heart_fill",
|
1651
|
+
"heavyRain",
|
1652
|
+
"heavyRainDay",
|
1653
|
+
"heavyRainLightning",
|
1654
|
+
"heavyRainLightningDay",
|
1655
|
+
"heavyRainLightningNight",
|
1656
|
+
"heavyRainNight",
|
1657
|
+
"history",
|
1658
|
+
"hockey",
|
1659
|
+
"home",
|
1660
|
+
"home_fill",
|
1661
|
+
"hurricane",
|
1662
|
+
"inbox",
|
1663
|
+
"inbox_fill",
|
1664
|
+
"indent",
|
1665
|
+
"information",
|
1666
|
+
"information_fill",
|
1667
|
+
"invitation",
|
1668
|
+
"invitation_fill",
|
1669
|
+
"italic",
|
1670
|
+
"key",
|
1671
|
+
"keyAlt",
|
1672
|
+
"keypad",
|
1673
|
+
"lastQuarter",
|
1674
|
+
"layout",
|
1675
|
+
"layout_fill",
|
1676
|
+
"layoutGrid",
|
1677
|
+
"layoutList",
|
1678
|
+
"leftAligned",
|
1679
|
+
"leftToRight",
|
1680
|
+
"lifePreserver",
|
1681
|
+
"lightning",
|
1682
|
+
"lightningBolt",
|
1683
|
+
"lightningBolt_fill",
|
1684
|
+
"lightningDay",
|
1685
|
+
"lightningNight",
|
1686
|
+
"lineGraph",
|
1687
|
+
"lineTypeBar",
|
1688
|
+
"lineTypeCandlestick",
|
1689
|
+
"link",
|
1690
|
+
"lipstick",
|
1691
|
+
"lipstick_fill",
|
1692
|
+
"list",
|
1693
|
+
"live",
|
1694
|
+
"locationArrow",
|
1695
|
+
"locationArrow_fill",
|
1696
|
+
"lock",
|
1697
|
+
"lock_fill",
|
1698
|
+
"logout",
|
1699
|
+
"magnifyingGlass",
|
1700
|
+
"magnifyingGlass_fill",
|
1701
|
+
"mail",
|
1702
|
+
"mail_fill",
|
1703
|
+
"manageAccount",
|
1704
|
+
"manageAccount_fill",
|
1705
|
+
"map",
|
1706
|
+
"mapPin",
|
1707
|
+
"mapPin_fill",
|
1708
|
+
"martini",
|
1709
|
+
"martini_fill",
|
1710
|
+
"meMail",
|
1711
|
+
"medal",
|
1712
|
+
"medal_fill",
|
1713
|
+
"medicalKit",
|
1714
|
+
"medicalKit_fill",
|
1715
|
+
"metrics",
|
1716
|
+
"mic",
|
1717
|
+
"mic_fill",
|
1718
|
+
"micOff",
|
1719
|
+
"micOff_fill",
|
1720
|
+
"microscope",
|
1721
|
+
"microscope_fill",
|
1722
|
+
"minus",
|
1723
|
+
"mlb",
|
1724
|
+
"moveToFolder",
|
1725
|
+
"moveToFolder_fill",
|
1726
|
+
"movies",
|
1727
|
+
"movies_fill",
|
1728
|
+
"music",
|
1729
|
+
"music_fill",
|
1730
|
+
"ncaab",
|
1731
|
+
"newComment",
|
1732
|
+
"newComment_fill",
|
1733
|
+
"newMoon",
|
1734
|
+
"news",
|
1735
|
+
"news_fill",
|
1736
|
+
"nextTrack",
|
1737
|
+
"nfc",
|
1738
|
+
"nfl",
|
1739
|
+
"notes",
|
1740
|
+
"notes_fill",
|
1741
|
+
"null",
|
1742
|
+
"numberedList",
|
1743
|
+
"oneColumn",
|
1744
|
+
"oneColumn_fill",
|
1745
|
+
"outbox",
|
1746
|
+
"outbox_fill",
|
1747
|
+
"outdent",
|
1748
|
+
"overflow",
|
1749
|
+
"overflowMail",
|
1750
|
+
"overflowVertical",
|
1751
|
+
"paperclip",
|
1752
|
+
"parenting",
|
1753
|
+
"parenting_fill",
|
1754
|
+
"parking",
|
1755
|
+
"parks",
|
1756
|
+
"parks_fill",
|
1757
|
+
"pause",
|
1758
|
+
"paw",
|
1759
|
+
"pawn",
|
1760
|
+
"pawn_fill",
|
1761
|
+
"person",
|
1762
|
+
"person_fill",
|
1763
|
+
"personArrowUturnLeft",
|
1764
|
+
"personArrowUturnLeft_fill",
|
1765
|
+
"phone",
|
1766
|
+
"phone_fill",
|
1767
|
+
"picture",
|
1768
|
+
"picture_fill",
|
1769
|
+
"pieChart",
|
1770
|
+
"pieChart_fill",
|
1771
|
+
"play",
|
1772
|
+
"play_fill",
|
1773
|
+
"playInCircle",
|
1774
|
+
"playInCircle_fill",
|
1775
|
+
"playMini",
|
1776
|
+
"plus",
|
1777
|
+
"poll",
|
1778
|
+
"poll_fill",
|
1779
|
+
"popular",
|
1780
|
+
"power",
|
1781
|
+
"print",
|
1782
|
+
"print_fill",
|
1783
|
+
"pro",
|
1784
|
+
"profile",
|
1785
|
+
"profile_fill",
|
1786
|
+
"prohibitionSign",
|
1787
|
+
"pulse",
|
1788
|
+
"question",
|
1789
|
+
"question_fill",
|
1790
|
+
"racingFlag",
|
1791
|
+
"radioSelected",
|
1792
|
+
"radioSelected_fill",
|
1793
|
+
"radioUnselected",
|
1794
|
+
"rain",
|
1795
|
+
"rainDay",
|
1796
|
+
"rainNight",
|
1797
|
+
"raindrop",
|
1798
|
+
"raindropDay",
|
1799
|
+
"raindropNight",
|
1800
|
+
"reblog",
|
1801
|
+
"reblogAlt",
|
1802
|
+
"recreation",
|
1803
|
+
"refresh",
|
1804
|
+
"refreshAlt",
|
1805
|
+
"removePerson",
|
1806
|
+
"removePerson_fill",
|
1807
|
+
"replay",
|
1808
|
+
"reply",
|
1809
|
+
"reply_fill",
|
1810
|
+
"replyAll",
|
1811
|
+
"replyAll_fill",
|
1812
|
+
"reverse",
|
1813
|
+
"revisions",
|
1814
|
+
"revisions_fill",
|
1815
|
+
"riceBowl",
|
1816
|
+
"rightAligned",
|
1817
|
+
"rightToLeft",
|
1818
|
+
"rugby",
|
1819
|
+
"scissors",
|
1820
|
+
"searchMail",
|
1821
|
+
"searchMail_fill",
|
1822
|
+
"searchWeb",
|
1823
|
+
"seekBackward10",
|
1824
|
+
"seekForward10",
|
1825
|
+
"segments",
|
1826
|
+
"segments_fill",
|
1827
|
+
"selector",
|
1828
|
+
"sendScheduled",
|
1829
|
+
"sendScheduled_fill",
|
1830
|
+
"sent",
|
1831
|
+
"sent_fill",
|
1832
|
+
"shield",
|
1833
|
+
"shieldWithCheckMark",
|
1834
|
+
"shieldWithCheckMark_fill",
|
1835
|
+
"shieldWithProhibitionSign",
|
1836
|
+
"shieldWithProhibitionSign_fill",
|
1837
|
+
"shieldWithX",
|
1838
|
+
"shieldWithX_fill",
|
1839
|
+
"shoppingBag",
|
1840
|
+
"shoppingBag_fill",
|
1841
|
+
"shrink",
|
1842
|
+
"sidebar",
|
1843
|
+
"sidebarError",
|
1844
|
+
"skull",
|
1845
|
+
"skull_fill",
|
1846
|
+
"slideRule",
|
1847
|
+
"smartPhone",
|
1848
|
+
"smartPhone_fill",
|
1849
|
+
"smiley",
|
1850
|
+
"smiley_fill",
|
1851
|
+
"snow",
|
1852
|
+
"snowDay",
|
1853
|
+
"snowNight",
|
1854
|
+
"snowflake",
|
1855
|
+
"soccer",
|
1856
|
+
"spellCheck",
|
1857
|
+
"sprinkle",
|
1858
|
+
"sprinkleDay",
|
1859
|
+
"sprinkleNight",
|
1860
|
+
"squareArrowDiagonalUpRight",
|
1861
|
+
"stadium",
|
1862
|
+
"star",
|
1863
|
+
"star_fill",
|
1864
|
+
"stardust",
|
1865
|
+
"stardust_fill",
|
1866
|
+
"stationery",
|
1867
|
+
"stationery_fill",
|
1868
|
+
"stationeryFall",
|
1869
|
+
"stationeryFall_fill",
|
1870
|
+
"stationerySpring",
|
1871
|
+
"stationerySpring_fill",
|
1872
|
+
"stationeryWinter",
|
1873
|
+
"stationeryWinter_fill",
|
1874
|
+
"statistics",
|
1875
|
+
"stop",
|
1876
|
+
"stopwatch",
|
1877
|
+
"stopwatch_fill",
|
1878
|
+
"stream",
|
1879
|
+
"sun",
|
1880
|
+
"sun_fill",
|
1881
|
+
"sunrise",
|
1882
|
+
"supply",
|
1883
|
+
"supply_fill",
|
1884
|
+
"suspicious",
|
1885
|
+
"suspicious_fill",
|
1886
|
+
"swipeleft",
|
1887
|
+
"swipeleft_fill",
|
1888
|
+
"swiperight",
|
1889
|
+
"swiperight_fill",
|
1890
|
+
"tablet",
|
1891
|
+
"tablet_fill",
|
1892
|
+
"tag",
|
1893
|
+
"tag_fill",
|
1894
|
+
"target",
|
1895
|
+
"targetArrow",
|
1896
|
+
"tech",
|
1897
|
+
"tech_fill",
|
1898
|
+
"techAlt",
|
1899
|
+
"textColor",
|
1900
|
+
"textHighlight",
|
1901
|
+
"textHighlight_fill",
|
1902
|
+
"theme",
|
1903
|
+
"theme_fill",
|
1904
|
+
"threeColumn",
|
1905
|
+
"threeColumn_fill",
|
1906
|
+
"thumbDown",
|
1907
|
+
"thumbDown_fill",
|
1908
|
+
"thumbUp",
|
1909
|
+
"thumbUp_fill",
|
1910
|
+
"tornado",
|
1911
|
+
"train",
|
1912
|
+
"train_fill",
|
1913
|
+
"trashCan",
|
1914
|
+
"trashCan_fill",
|
1915
|
+
"travel",
|
1916
|
+
"travel_fill",
|
1917
|
+
"trending",
|
1918
|
+
"truck",
|
1919
|
+
"truck_fill",
|
1920
|
+
"tsunami",
|
1921
|
+
"tv",
|
1922
|
+
"tv_fill",
|
1923
|
+
"twoColumn",
|
1924
|
+
"twoColumn_fill",
|
1925
|
+
"underline",
|
1926
|
+
"unsub",
|
1927
|
+
"unsub_fill",
|
1928
|
+
"videoCamera",
|
1929
|
+
"videoCamera_fill",
|
1930
|
+
"videoCameraOff",
|
1931
|
+
"videoCameraOff_fill",
|
1932
|
+
"volume",
|
1933
|
+
"volumeLow",
|
1934
|
+
"volumeMute",
|
1935
|
+
"waningCrescent",
|
1936
|
+
"waningGibbous",
|
1937
|
+
"waxingCrescent",
|
1938
|
+
"waxingGibbous",
|
1939
|
+
"wellness",
|
1940
|
+
"wifi",
|
1941
|
+
"wifiOffline",
|
1942
|
+
"wind",
|
1943
|
+
"windCloud",
|
1944
|
+
"windDay",
|
1945
|
+
"windNight",
|
1946
|
+
"wine",
|
1947
|
+
"wine_fill",
|
1948
|
+
"wrench",
|
1949
|
+
"wrench_fill",
|
1950
|
+
"yahooPlus",
|
1951
|
+
"zoomIn",
|
1952
|
+
"zoomOut"
|
1953
|
+
];
|
1954
|
+
export { textVariants, textTransforms, tailwindColorsAsUds, spectrumColors, spacingRamp, spacingAliases, scaleModes, regionModes, palette, linePaletteColors, lineHeightRamp, lineColors, iconSizes, iconNames, hues, hueSteps, foregroundPaletteColors, foregroundColors, fontWeights, fontSizeRamp, fontFamilies, corePaletteColors, colorModes, buttonVariants, buttonSizes, borderWidths, borderWidthRamp, borderRadiusRamp, borderRadii, backgroundPaletteColors, backgroundColors, avatarSizes, avatarShapes, alwaysPaletteAliases };
|