@mekari/pixel3-theme 0.4.4 → 0.5.0-dev.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/dist/conditions.d.mts +2 -0
- package/dist/conditions.d.ts +2 -0
- package/dist/index.js +576 -179
- package/dist/index.mjs +576 -179
- package/dist/semanticTokens/colors.d.mts +321 -12
- package/dist/semanticTokens/colors.d.ts +321 -12
- package/dist/semanticTokens/index.d.mts +321 -12
- package/dist/semanticTokens/index.d.ts +321 -12
- package/dist/tokens/colors.d.mts +3 -0
- package/dist/tokens/colors.d.ts +3 -0
- package/dist/tokens/index.d.mts +7 -0
- package/dist/tokens/index.d.ts +7 -0
- package/dist/tokens/spacing.d.mts +4 -0
- package/dist/tokens/spacing.d.ts +4 -0
- package/dist/tokens-next/colors.d.mts +118 -0
- package/dist/tokens-next/colors.d.ts +118 -0
- package/dist/tokens-next/index.d.mts +118 -0
- package/dist/tokens-next/index.d.ts +118 -0
- package/package.json +1 -1
- package/src/conditions.ts +3 -1
- package/src/recipes/avatar.ts +6 -2
- package/src/recipes/badge.ts +3 -3
- package/src/recipes/banner.ts +1 -1
- package/src/recipes/button.ts +29 -12
- package/src/recipes/modal.ts +16 -1
- package/src/semanticTokens/colors.ts +457 -142
- package/src/tokens/colors.ts +1 -0
- package/src/tokens/spacing.ts +1 -0
- package/src/tokens-next/colors.ts +45 -3
|
@@ -1,10 +1,39 @@
|
|
|
1
1
|
declare const colors: {
|
|
2
2
|
background: {
|
|
3
3
|
surface: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
DEFAULT: {
|
|
5
|
+
value: {
|
|
6
|
+
base: string;
|
|
7
|
+
_light: string;
|
|
8
|
+
_dark: string;
|
|
9
|
+
_enterprise: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
bold: {
|
|
13
|
+
value: {
|
|
14
|
+
base: string;
|
|
15
|
+
_light: string;
|
|
16
|
+
_dark: string;
|
|
17
|
+
_enterprise: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
information: {
|
|
22
|
+
DEFAULT: {
|
|
23
|
+
value: {
|
|
24
|
+
base: string;
|
|
25
|
+
_light: string;
|
|
26
|
+
_dark: string;
|
|
27
|
+
_enterprise: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
bold: {
|
|
31
|
+
value: {
|
|
32
|
+
base: string;
|
|
33
|
+
_light: string;
|
|
34
|
+
_dark: string;
|
|
35
|
+
_enterprise: string;
|
|
36
|
+
};
|
|
8
37
|
};
|
|
9
38
|
};
|
|
10
39
|
stage: {
|
|
@@ -12,6 +41,7 @@ declare const colors: {
|
|
|
12
41
|
base: string;
|
|
13
42
|
_light: string;
|
|
14
43
|
_dark: string;
|
|
44
|
+
_enterprise: string;
|
|
15
45
|
};
|
|
16
46
|
};
|
|
17
47
|
overlay: {
|
|
@@ -19,6 +49,7 @@ declare const colors: {
|
|
|
19
49
|
base: string;
|
|
20
50
|
_light: string;
|
|
21
51
|
_dark: string;
|
|
52
|
+
_enterprise: string;
|
|
22
53
|
};
|
|
23
54
|
};
|
|
24
55
|
disabled: {
|
|
@@ -26,6 +57,7 @@ declare const colors: {
|
|
|
26
57
|
base: string;
|
|
27
58
|
_light: string;
|
|
28
59
|
_dark: string;
|
|
60
|
+
_enterprise: string;
|
|
29
61
|
};
|
|
30
62
|
};
|
|
31
63
|
inverse: {
|
|
@@ -33,6 +65,7 @@ declare const colors: {
|
|
|
33
65
|
base: string;
|
|
34
66
|
_light: string;
|
|
35
67
|
_dark: string;
|
|
68
|
+
_enterprise: string;
|
|
36
69
|
};
|
|
37
70
|
};
|
|
38
71
|
shadow: {
|
|
@@ -40,6 +73,7 @@ declare const colors: {
|
|
|
40
73
|
base: string;
|
|
41
74
|
_light: string;
|
|
42
75
|
_dark: string;
|
|
76
|
+
_enterprise: string;
|
|
43
77
|
};
|
|
44
78
|
};
|
|
45
79
|
neutral: {
|
|
@@ -48,6 +82,7 @@ declare const colors: {
|
|
|
48
82
|
base: string;
|
|
49
83
|
_light: string;
|
|
50
84
|
_dark: string;
|
|
85
|
+
_enterprise: string;
|
|
51
86
|
};
|
|
52
87
|
};
|
|
53
88
|
hovered: {
|
|
@@ -55,6 +90,7 @@ declare const colors: {
|
|
|
55
90
|
base: string;
|
|
56
91
|
_light: string;
|
|
57
92
|
_dark: string;
|
|
93
|
+
_enterprise: string;
|
|
58
94
|
};
|
|
59
95
|
};
|
|
60
96
|
pressed: {
|
|
@@ -62,6 +98,15 @@ declare const colors: {
|
|
|
62
98
|
base: string;
|
|
63
99
|
_light: string;
|
|
64
100
|
_dark: string;
|
|
101
|
+
_enterprise: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
selected: {
|
|
105
|
+
value: {
|
|
106
|
+
base: string;
|
|
107
|
+
_light: string;
|
|
108
|
+
_dark: string;
|
|
109
|
+
_enterprise: string;
|
|
65
110
|
};
|
|
66
111
|
};
|
|
67
112
|
subtle: {
|
|
@@ -70,6 +115,7 @@ declare const colors: {
|
|
|
70
115
|
base: string;
|
|
71
116
|
_light: string;
|
|
72
117
|
_dark: string;
|
|
118
|
+
_enterprise: string;
|
|
73
119
|
};
|
|
74
120
|
};
|
|
75
121
|
hovered: {
|
|
@@ -77,6 +123,7 @@ declare const colors: {
|
|
|
77
123
|
base: string;
|
|
78
124
|
_light: string;
|
|
79
125
|
_dark: string;
|
|
126
|
+
_enterprise: string;
|
|
80
127
|
};
|
|
81
128
|
};
|
|
82
129
|
pressed: {
|
|
@@ -84,6 +131,15 @@ declare const colors: {
|
|
|
84
131
|
base: string;
|
|
85
132
|
_light: string;
|
|
86
133
|
_dark: string;
|
|
134
|
+
_enterprise: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
selected: {
|
|
138
|
+
value: {
|
|
139
|
+
base: string;
|
|
140
|
+
_light: string;
|
|
141
|
+
_dark: string;
|
|
142
|
+
_enterprise: string;
|
|
87
143
|
};
|
|
88
144
|
};
|
|
89
145
|
};
|
|
@@ -93,6 +149,7 @@ declare const colors: {
|
|
|
93
149
|
base: string;
|
|
94
150
|
_light: string;
|
|
95
151
|
_dark: string;
|
|
152
|
+
_enterprise: string;
|
|
96
153
|
};
|
|
97
154
|
};
|
|
98
155
|
hovered: {
|
|
@@ -100,6 +157,7 @@ declare const colors: {
|
|
|
100
157
|
base: string;
|
|
101
158
|
_light: string;
|
|
102
159
|
_dark: string;
|
|
160
|
+
_enterprise: string;
|
|
103
161
|
};
|
|
104
162
|
};
|
|
105
163
|
pressed: {
|
|
@@ -107,6 +165,15 @@ declare const colors: {
|
|
|
107
165
|
base: string;
|
|
108
166
|
_light: string;
|
|
109
167
|
_dark: string;
|
|
168
|
+
_enterprise: string;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
selected: {
|
|
172
|
+
value: {
|
|
173
|
+
base: string;
|
|
174
|
+
_light: string;
|
|
175
|
+
_dark: string;
|
|
176
|
+
_enterprise: string;
|
|
110
177
|
};
|
|
111
178
|
};
|
|
112
179
|
};
|
|
@@ -117,6 +184,7 @@ declare const colors: {
|
|
|
117
184
|
base: string;
|
|
118
185
|
_light: string;
|
|
119
186
|
_dark: string;
|
|
187
|
+
_enterprise: string;
|
|
120
188
|
};
|
|
121
189
|
};
|
|
122
190
|
hovered: {
|
|
@@ -124,6 +192,7 @@ declare const colors: {
|
|
|
124
192
|
base: string;
|
|
125
193
|
_light: string;
|
|
126
194
|
_dark: string;
|
|
195
|
+
_enterprise: string;
|
|
127
196
|
};
|
|
128
197
|
};
|
|
129
198
|
pressed: {
|
|
@@ -131,6 +200,7 @@ declare const colors: {
|
|
|
131
200
|
base: string;
|
|
132
201
|
_light: string;
|
|
133
202
|
_dark: string;
|
|
203
|
+
_enterprise: string;
|
|
134
204
|
};
|
|
135
205
|
};
|
|
136
206
|
selected: {
|
|
@@ -138,6 +208,7 @@ declare const colors: {
|
|
|
138
208
|
base: string;
|
|
139
209
|
_light: string;
|
|
140
210
|
_dark: string;
|
|
211
|
+
_enterprise: string;
|
|
141
212
|
};
|
|
142
213
|
};
|
|
143
214
|
bold: {
|
|
@@ -146,6 +217,7 @@ declare const colors: {
|
|
|
146
217
|
base: string;
|
|
147
218
|
_light: string;
|
|
148
219
|
_dark: string;
|
|
220
|
+
_enterprise: string;
|
|
149
221
|
};
|
|
150
222
|
};
|
|
151
223
|
hovered: {
|
|
@@ -153,6 +225,7 @@ declare const colors: {
|
|
|
153
225
|
base: string;
|
|
154
226
|
_light: string;
|
|
155
227
|
_dark: string;
|
|
228
|
+
_enterprise: string;
|
|
156
229
|
};
|
|
157
230
|
};
|
|
158
231
|
pressed: {
|
|
@@ -160,13 +233,25 @@ declare const colors: {
|
|
|
160
233
|
base: string;
|
|
161
234
|
_light: string;
|
|
162
235
|
_dark: string;
|
|
236
|
+
_enterprise: string;
|
|
163
237
|
};
|
|
164
238
|
};
|
|
165
239
|
selected: {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
240
|
+
DEFAULT: {
|
|
241
|
+
value: {
|
|
242
|
+
base: string;
|
|
243
|
+
_light: string;
|
|
244
|
+
_dark: string;
|
|
245
|
+
_enterprise: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
disabled: {
|
|
249
|
+
value: {
|
|
250
|
+
base: string;
|
|
251
|
+
_light: string;
|
|
252
|
+
_dark: string;
|
|
253
|
+
_enterprise: string;
|
|
254
|
+
};
|
|
170
255
|
};
|
|
171
256
|
};
|
|
172
257
|
};
|
|
@@ -177,6 +262,7 @@ declare const colors: {
|
|
|
177
262
|
base: string;
|
|
178
263
|
_light: string;
|
|
179
264
|
_dark: string;
|
|
265
|
+
_enterprise: string;
|
|
180
266
|
};
|
|
181
267
|
};
|
|
182
268
|
hovered: {
|
|
@@ -184,6 +270,7 @@ declare const colors: {
|
|
|
184
270
|
base: string;
|
|
185
271
|
_light: string;
|
|
186
272
|
_dark: string;
|
|
273
|
+
_enterprise: string;
|
|
187
274
|
};
|
|
188
275
|
};
|
|
189
276
|
pressed: {
|
|
@@ -191,6 +278,7 @@ declare const colors: {
|
|
|
191
278
|
base: string;
|
|
192
279
|
_light: string;
|
|
193
280
|
_dark: string;
|
|
281
|
+
_enterprise: string;
|
|
194
282
|
};
|
|
195
283
|
};
|
|
196
284
|
};
|
|
@@ -200,6 +288,7 @@ declare const colors: {
|
|
|
200
288
|
base: string;
|
|
201
289
|
_light: string;
|
|
202
290
|
_dark: string;
|
|
291
|
+
_enterprise: string;
|
|
203
292
|
};
|
|
204
293
|
};
|
|
205
294
|
hovered: {
|
|
@@ -207,6 +296,7 @@ declare const colors: {
|
|
|
207
296
|
base: string;
|
|
208
297
|
_light: string;
|
|
209
298
|
_dark: string;
|
|
299
|
+
_enterprise: string;
|
|
210
300
|
};
|
|
211
301
|
};
|
|
212
302
|
pressed: {
|
|
@@ -214,6 +304,15 @@ declare const colors: {
|
|
|
214
304
|
base: string;
|
|
215
305
|
_light: string;
|
|
216
306
|
_dark: string;
|
|
307
|
+
_enterprise: string;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
selected: {
|
|
311
|
+
value: {
|
|
312
|
+
base: string;
|
|
313
|
+
_light: string;
|
|
314
|
+
_dark: string;
|
|
315
|
+
_enterprise: string;
|
|
217
316
|
};
|
|
218
317
|
};
|
|
219
318
|
bold: {
|
|
@@ -222,6 +321,7 @@ declare const colors: {
|
|
|
222
321
|
base: string;
|
|
223
322
|
_light: string;
|
|
224
323
|
_dark: string;
|
|
324
|
+
_enterprise: string;
|
|
225
325
|
};
|
|
226
326
|
};
|
|
227
327
|
hovered: {
|
|
@@ -229,6 +329,7 @@ declare const colors: {
|
|
|
229
329
|
base: string;
|
|
230
330
|
_light: string;
|
|
231
331
|
_dark: string;
|
|
332
|
+
_enterprise: string;
|
|
232
333
|
};
|
|
233
334
|
};
|
|
234
335
|
pressed: {
|
|
@@ -236,6 +337,15 @@ declare const colors: {
|
|
|
236
337
|
base: string;
|
|
237
338
|
_light: string;
|
|
238
339
|
_dark: string;
|
|
340
|
+
_enterprise: string;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
selected: {
|
|
344
|
+
value: {
|
|
345
|
+
base: string;
|
|
346
|
+
_light: string;
|
|
347
|
+
_dark: string;
|
|
348
|
+
_enterprise: string;
|
|
239
349
|
};
|
|
240
350
|
};
|
|
241
351
|
};
|
|
@@ -246,6 +356,7 @@ declare const colors: {
|
|
|
246
356
|
base: string;
|
|
247
357
|
_light: string;
|
|
248
358
|
_dark: string;
|
|
359
|
+
_enterprise: string;
|
|
249
360
|
};
|
|
250
361
|
};
|
|
251
362
|
hovered: {
|
|
@@ -253,6 +364,7 @@ declare const colors: {
|
|
|
253
364
|
base: string;
|
|
254
365
|
_light: string;
|
|
255
366
|
_dark: string;
|
|
367
|
+
_enterprise: string;
|
|
256
368
|
};
|
|
257
369
|
};
|
|
258
370
|
pressed: {
|
|
@@ -260,6 +372,15 @@ declare const colors: {
|
|
|
260
372
|
base: string;
|
|
261
373
|
_light: string;
|
|
262
374
|
_dark: string;
|
|
375
|
+
_enterprise: string;
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
selected: {
|
|
379
|
+
value: {
|
|
380
|
+
base: string;
|
|
381
|
+
_light: string;
|
|
382
|
+
_dark: string;
|
|
383
|
+
_enterprise: string;
|
|
263
384
|
};
|
|
264
385
|
};
|
|
265
386
|
bold: {
|
|
@@ -268,6 +389,7 @@ declare const colors: {
|
|
|
268
389
|
base: string;
|
|
269
390
|
_light: string;
|
|
270
391
|
_dark: string;
|
|
392
|
+
_enterprise: string;
|
|
271
393
|
};
|
|
272
394
|
};
|
|
273
395
|
hovered: {
|
|
@@ -275,6 +397,7 @@ declare const colors: {
|
|
|
275
397
|
base: string;
|
|
276
398
|
_light: string;
|
|
277
399
|
_dark: string;
|
|
400
|
+
_enterprise: string;
|
|
278
401
|
};
|
|
279
402
|
};
|
|
280
403
|
pressed: {
|
|
@@ -282,6 +405,15 @@ declare const colors: {
|
|
|
282
405
|
base: string;
|
|
283
406
|
_light: string;
|
|
284
407
|
_dark: string;
|
|
408
|
+
_enterprise: string;
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
selected: {
|
|
412
|
+
value: {
|
|
413
|
+
base: string;
|
|
414
|
+
_light: string;
|
|
415
|
+
_dark: string;
|
|
416
|
+
_enterprise: string;
|
|
285
417
|
};
|
|
286
418
|
};
|
|
287
419
|
};
|
|
@@ -292,6 +424,7 @@ declare const colors: {
|
|
|
292
424
|
base: string;
|
|
293
425
|
_light: string;
|
|
294
426
|
_dark: string;
|
|
427
|
+
_enterprise: string;
|
|
295
428
|
};
|
|
296
429
|
};
|
|
297
430
|
hovered: {
|
|
@@ -299,6 +432,7 @@ declare const colors: {
|
|
|
299
432
|
base: string;
|
|
300
433
|
_light: string;
|
|
301
434
|
_dark: string;
|
|
435
|
+
_enterprise: string;
|
|
302
436
|
};
|
|
303
437
|
};
|
|
304
438
|
pressed: {
|
|
@@ -306,6 +440,15 @@ declare const colors: {
|
|
|
306
440
|
base: string;
|
|
307
441
|
_light: string;
|
|
308
442
|
_dark: string;
|
|
443
|
+
_enterprise: string;
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
selected: {
|
|
447
|
+
value: {
|
|
448
|
+
base: string;
|
|
449
|
+
_light: string;
|
|
450
|
+
_dark: string;
|
|
451
|
+
_enterprise: string;
|
|
309
452
|
};
|
|
310
453
|
};
|
|
311
454
|
bold: {
|
|
@@ -314,6 +457,7 @@ declare const colors: {
|
|
|
314
457
|
base: string;
|
|
315
458
|
_light: string;
|
|
316
459
|
_dark: string;
|
|
460
|
+
_enterprise: string;
|
|
317
461
|
};
|
|
318
462
|
};
|
|
319
463
|
hovered: {
|
|
@@ -321,6 +465,7 @@ declare const colors: {
|
|
|
321
465
|
base: string;
|
|
322
466
|
_light: string;
|
|
323
467
|
_dark: string;
|
|
468
|
+
_enterprise: string;
|
|
324
469
|
};
|
|
325
470
|
};
|
|
326
471
|
pressed: {
|
|
@@ -328,6 +473,15 @@ declare const colors: {
|
|
|
328
473
|
base: string;
|
|
329
474
|
_light: string;
|
|
330
475
|
_dark: string;
|
|
476
|
+
_enterprise: string;
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
selected: {
|
|
480
|
+
value: {
|
|
481
|
+
base: string;
|
|
482
|
+
_light: string;
|
|
483
|
+
_dark: string;
|
|
484
|
+
_enterprise: string;
|
|
331
485
|
};
|
|
332
486
|
};
|
|
333
487
|
};
|
|
@@ -338,6 +492,7 @@ declare const colors: {
|
|
|
338
492
|
base: string;
|
|
339
493
|
_light: string;
|
|
340
494
|
_dark: string;
|
|
495
|
+
_enterprise: string;
|
|
341
496
|
};
|
|
342
497
|
};
|
|
343
498
|
hovered: {
|
|
@@ -345,6 +500,7 @@ declare const colors: {
|
|
|
345
500
|
base: string;
|
|
346
501
|
_light: string;
|
|
347
502
|
_dark: string;
|
|
503
|
+
_enterprise: string;
|
|
348
504
|
};
|
|
349
505
|
};
|
|
350
506
|
pressed: {
|
|
@@ -352,6 +508,15 @@ declare const colors: {
|
|
|
352
508
|
base: string;
|
|
353
509
|
_light: string;
|
|
354
510
|
_dark: string;
|
|
511
|
+
_enterprise: string;
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
selected: {
|
|
515
|
+
value: {
|
|
516
|
+
base: string;
|
|
517
|
+
_light: string;
|
|
518
|
+
_dark: string;
|
|
519
|
+
_enterprise: string;
|
|
355
520
|
};
|
|
356
521
|
};
|
|
357
522
|
bold: {
|
|
@@ -360,6 +525,7 @@ declare const colors: {
|
|
|
360
525
|
base: string;
|
|
361
526
|
_light: string;
|
|
362
527
|
_dark: string;
|
|
528
|
+
_enterprise: string;
|
|
363
529
|
};
|
|
364
530
|
};
|
|
365
531
|
hovered: {
|
|
@@ -367,6 +533,7 @@ declare const colors: {
|
|
|
367
533
|
base: string;
|
|
368
534
|
_light: string;
|
|
369
535
|
_dark: string;
|
|
536
|
+
_enterprise: string;
|
|
370
537
|
};
|
|
371
538
|
};
|
|
372
539
|
pressed: {
|
|
@@ -374,6 +541,71 @@ declare const colors: {
|
|
|
374
541
|
base: string;
|
|
375
542
|
_light: string;
|
|
376
543
|
_dark: string;
|
|
544
|
+
_enterprise: string;
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
selected: {
|
|
548
|
+
value: {
|
|
549
|
+
base: string;
|
|
550
|
+
_light: string;
|
|
551
|
+
_dark: string;
|
|
552
|
+
_enterprise: string;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
nav: {
|
|
558
|
+
parent: {
|
|
559
|
+
value: {
|
|
560
|
+
base: string;
|
|
561
|
+
_light: string;
|
|
562
|
+
_dark: string;
|
|
563
|
+
_enterprise: string;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
stack: {
|
|
567
|
+
DEFAULT: {
|
|
568
|
+
value: {
|
|
569
|
+
base: string;
|
|
570
|
+
_light: string;
|
|
571
|
+
_dark: string;
|
|
572
|
+
_enterprise: string;
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
hovered: {
|
|
576
|
+
value: {
|
|
577
|
+
base: string;
|
|
578
|
+
_light: string;
|
|
579
|
+
_dark: string;
|
|
580
|
+
_enterprise: string;
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
header: {
|
|
586
|
+
DEFAULT: {
|
|
587
|
+
value: {
|
|
588
|
+
base: string;
|
|
589
|
+
_light: string;
|
|
590
|
+
_dark: string;
|
|
591
|
+
_enterprise: string;
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
menu: {
|
|
595
|
+
hovered: {
|
|
596
|
+
value: {
|
|
597
|
+
base: string;
|
|
598
|
+
_light: string;
|
|
599
|
+
_dark: string;
|
|
600
|
+
_enterprise: string;
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
selected: {
|
|
604
|
+
value: {
|
|
605
|
+
base: string;
|
|
606
|
+
_light: string;
|
|
607
|
+
_dark: string;
|
|
608
|
+
_enterprise: string;
|
|
377
609
|
};
|
|
378
610
|
};
|
|
379
611
|
};
|
|
@@ -383,6 +615,7 @@ declare const colors: {
|
|
|
383
615
|
base: string;
|
|
384
616
|
_light: string;
|
|
385
617
|
_dark: string;
|
|
618
|
+
_enterprise: string;
|
|
386
619
|
};
|
|
387
620
|
};
|
|
388
621
|
};
|
|
@@ -392,6 +625,7 @@ declare const colors: {
|
|
|
392
625
|
base: string;
|
|
393
626
|
_light: string;
|
|
394
627
|
_dark: string;
|
|
628
|
+
_enterprise: string;
|
|
395
629
|
};
|
|
396
630
|
};
|
|
397
631
|
stack: {
|
|
@@ -400,6 +634,7 @@ declare const colors: {
|
|
|
400
634
|
base: string;
|
|
401
635
|
_light: string;
|
|
402
636
|
_dark: string;
|
|
637
|
+
_enterprise: string;
|
|
403
638
|
};
|
|
404
639
|
};
|
|
405
640
|
hovered: {
|
|
@@ -407,6 +642,7 @@ declare const colors: {
|
|
|
407
642
|
base: string;
|
|
408
643
|
_light: string;
|
|
409
644
|
_dark: string;
|
|
645
|
+
_enterprise: string;
|
|
410
646
|
};
|
|
411
647
|
};
|
|
412
648
|
};
|
|
@@ -418,6 +654,7 @@ declare const colors: {
|
|
|
418
654
|
base: string;
|
|
419
655
|
_light: string;
|
|
420
656
|
_dark: string;
|
|
657
|
+
_enterprise: string;
|
|
421
658
|
};
|
|
422
659
|
};
|
|
423
660
|
static: {
|
|
@@ -425,6 +662,7 @@ declare const colors: {
|
|
|
425
662
|
base: string;
|
|
426
663
|
_light: string;
|
|
427
664
|
_dark: string;
|
|
665
|
+
_enterprise: string;
|
|
428
666
|
};
|
|
429
667
|
};
|
|
430
668
|
};
|
|
@@ -434,6 +672,7 @@ declare const colors: {
|
|
|
434
672
|
base: string;
|
|
435
673
|
_light: string;
|
|
436
674
|
_dark: string;
|
|
675
|
+
_enterprise: string;
|
|
437
676
|
};
|
|
438
677
|
};
|
|
439
678
|
pressed: {
|
|
@@ -441,6 +680,7 @@ declare const colors: {
|
|
|
441
680
|
base: string;
|
|
442
681
|
_light: string;
|
|
443
682
|
_dark: string;
|
|
683
|
+
_enterprise: string;
|
|
444
684
|
};
|
|
445
685
|
};
|
|
446
686
|
};
|
|
@@ -449,6 +689,7 @@ declare const colors: {
|
|
|
449
689
|
base: string;
|
|
450
690
|
_light: string;
|
|
451
691
|
_dark: string;
|
|
692
|
+
_enterprise: string;
|
|
452
693
|
};
|
|
453
694
|
};
|
|
454
695
|
disabled: {
|
|
@@ -456,6 +697,7 @@ declare const colors: {
|
|
|
456
697
|
base: string;
|
|
457
698
|
_light: string;
|
|
458
699
|
_dark: string;
|
|
700
|
+
_enterprise: string;
|
|
459
701
|
};
|
|
460
702
|
};
|
|
461
703
|
inverse: {
|
|
@@ -464,6 +706,7 @@ declare const colors: {
|
|
|
464
706
|
base: string;
|
|
465
707
|
_light: string;
|
|
466
708
|
_dark: string;
|
|
709
|
+
_enterprise: string;
|
|
467
710
|
};
|
|
468
711
|
};
|
|
469
712
|
static: {
|
|
@@ -471,6 +714,7 @@ declare const colors: {
|
|
|
471
714
|
base: string;
|
|
472
715
|
_light: string;
|
|
473
716
|
_dark: string;
|
|
717
|
+
_enterprise: string;
|
|
474
718
|
};
|
|
475
719
|
};
|
|
476
720
|
};
|
|
@@ -479,6 +723,7 @@ declare const colors: {
|
|
|
479
723
|
base: string;
|
|
480
724
|
_light: string;
|
|
481
725
|
_dark: string;
|
|
726
|
+
_enterprise: string;
|
|
482
727
|
};
|
|
483
728
|
};
|
|
484
729
|
danger: {
|
|
@@ -487,6 +732,7 @@ declare const colors: {
|
|
|
487
732
|
base: string;
|
|
488
733
|
_light: string;
|
|
489
734
|
_dark: string;
|
|
735
|
+
_enterprise: string;
|
|
490
736
|
};
|
|
491
737
|
};
|
|
492
738
|
pressed: {
|
|
@@ -494,6 +740,7 @@ declare const colors: {
|
|
|
494
740
|
base: string;
|
|
495
741
|
_light: string;
|
|
496
742
|
_dark: string;
|
|
743
|
+
_enterprise: string;
|
|
497
744
|
};
|
|
498
745
|
};
|
|
499
746
|
};
|
|
@@ -503,6 +750,7 @@ declare const colors: {
|
|
|
503
750
|
base: string;
|
|
504
751
|
_light: string;
|
|
505
752
|
_dark: string;
|
|
753
|
+
_enterprise: string;
|
|
506
754
|
};
|
|
507
755
|
};
|
|
508
756
|
inverse: {
|
|
@@ -510,6 +758,7 @@ declare const colors: {
|
|
|
510
758
|
base: string;
|
|
511
759
|
_light: string;
|
|
512
760
|
_dark: string;
|
|
761
|
+
_enterprise: string;
|
|
513
762
|
};
|
|
514
763
|
};
|
|
515
764
|
};
|
|
@@ -518,6 +767,7 @@ declare const colors: {
|
|
|
518
767
|
base: string;
|
|
519
768
|
_light: string;
|
|
520
769
|
_dark: string;
|
|
770
|
+
_enterprise: string;
|
|
521
771
|
};
|
|
522
772
|
};
|
|
523
773
|
highlight: {
|
|
@@ -525,6 +775,7 @@ declare const colors: {
|
|
|
525
775
|
base: string;
|
|
526
776
|
_light: string;
|
|
527
777
|
_dark: string;
|
|
778
|
+
_enterprise: string;
|
|
528
779
|
};
|
|
529
780
|
};
|
|
530
781
|
information: {
|
|
@@ -532,6 +783,7 @@ declare const colors: {
|
|
|
532
783
|
base: string;
|
|
533
784
|
_light: string;
|
|
534
785
|
_dark: string;
|
|
786
|
+
_enterprise: string;
|
|
535
787
|
};
|
|
536
788
|
};
|
|
537
789
|
link: {
|
|
@@ -540,6 +792,7 @@ declare const colors: {
|
|
|
540
792
|
base: string;
|
|
541
793
|
_light: string;
|
|
542
794
|
_dark: string;
|
|
795
|
+
_enterprise: string;
|
|
543
796
|
};
|
|
544
797
|
};
|
|
545
798
|
pressed: {
|
|
@@ -547,6 +800,7 @@ declare const colors: {
|
|
|
547
800
|
base: string;
|
|
548
801
|
_light: string;
|
|
549
802
|
_dark: string;
|
|
803
|
+
_enterprise: string;
|
|
550
804
|
};
|
|
551
805
|
};
|
|
552
806
|
};
|
|
@@ -557,6 +811,7 @@ declare const colors: {
|
|
|
557
811
|
base: string;
|
|
558
812
|
_light: string;
|
|
559
813
|
_dark: string;
|
|
814
|
+
_enterprise: string;
|
|
560
815
|
};
|
|
561
816
|
};
|
|
562
817
|
disabled: {
|
|
@@ -564,6 +819,7 @@ declare const colors: {
|
|
|
564
819
|
base: string;
|
|
565
820
|
_light: string;
|
|
566
821
|
_dark: string;
|
|
822
|
+
_enterprise: string;
|
|
567
823
|
};
|
|
568
824
|
};
|
|
569
825
|
inverse: {
|
|
@@ -572,6 +828,7 @@ declare const colors: {
|
|
|
572
828
|
base: string;
|
|
573
829
|
_light: string;
|
|
574
830
|
_dark: string;
|
|
831
|
+
_enterprise: string;
|
|
575
832
|
};
|
|
576
833
|
};
|
|
577
834
|
static: {
|
|
@@ -579,6 +836,7 @@ declare const colors: {
|
|
|
579
836
|
base: string;
|
|
580
837
|
_light: string;
|
|
581
838
|
_dark: string;
|
|
839
|
+
_enterprise: string;
|
|
582
840
|
};
|
|
583
841
|
};
|
|
584
842
|
};
|
|
@@ -587,6 +845,7 @@ declare const colors: {
|
|
|
587
845
|
base: string;
|
|
588
846
|
_light: string;
|
|
589
847
|
_dark: string;
|
|
848
|
+
_enterprise: string;
|
|
590
849
|
};
|
|
591
850
|
};
|
|
592
851
|
brand: {
|
|
@@ -594,6 +853,7 @@ declare const colors: {
|
|
|
594
853
|
base: string;
|
|
595
854
|
_light: string;
|
|
596
855
|
_dark: string;
|
|
856
|
+
_enterprise: string;
|
|
597
857
|
};
|
|
598
858
|
};
|
|
599
859
|
danger: {
|
|
@@ -601,6 +861,7 @@ declare const colors: {
|
|
|
601
861
|
base: string;
|
|
602
862
|
_light: string;
|
|
603
863
|
_dark: string;
|
|
864
|
+
_enterprise: string;
|
|
604
865
|
};
|
|
605
866
|
};
|
|
606
867
|
warning: {
|
|
@@ -609,6 +870,7 @@ declare const colors: {
|
|
|
609
870
|
base: string;
|
|
610
871
|
_light: string;
|
|
611
872
|
_dark: string;
|
|
873
|
+
_enterprise: string;
|
|
612
874
|
};
|
|
613
875
|
};
|
|
614
876
|
inverse: {
|
|
@@ -616,6 +878,7 @@ declare const colors: {
|
|
|
616
878
|
base: string;
|
|
617
879
|
_light: string;
|
|
618
880
|
_dark: string;
|
|
881
|
+
_enterprise: string;
|
|
619
882
|
};
|
|
620
883
|
};
|
|
621
884
|
};
|
|
@@ -624,6 +887,7 @@ declare const colors: {
|
|
|
624
887
|
base: string;
|
|
625
888
|
_light: string;
|
|
626
889
|
_dark: string;
|
|
890
|
+
_enterprise: string;
|
|
627
891
|
};
|
|
628
892
|
};
|
|
629
893
|
highlight: {
|
|
@@ -631,6 +895,7 @@ declare const colors: {
|
|
|
631
895
|
base: string;
|
|
632
896
|
_light: string;
|
|
633
897
|
_dark: string;
|
|
898
|
+
_enterprise: string;
|
|
634
899
|
};
|
|
635
900
|
};
|
|
636
901
|
information: {
|
|
@@ -638,6 +903,7 @@ declare const colors: {
|
|
|
638
903
|
base: string;
|
|
639
904
|
_light: string;
|
|
640
905
|
_dark: string;
|
|
906
|
+
_enterprise: string;
|
|
641
907
|
};
|
|
642
908
|
};
|
|
643
909
|
subtle: {
|
|
@@ -645,6 +911,7 @@ declare const colors: {
|
|
|
645
911
|
base: string;
|
|
646
912
|
_light: string;
|
|
647
913
|
_dark: string;
|
|
914
|
+
_enterprise: string;
|
|
648
915
|
};
|
|
649
916
|
};
|
|
650
917
|
logo: {
|
|
@@ -652,15 +919,27 @@ declare const colors: {
|
|
|
652
919
|
base: string;
|
|
653
920
|
_light: string;
|
|
654
921
|
_dark: string;
|
|
922
|
+
_enterprise: string;
|
|
655
923
|
};
|
|
656
924
|
};
|
|
657
925
|
};
|
|
658
926
|
border: {
|
|
659
927
|
default: {
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
928
|
+
DEFAULT: {
|
|
929
|
+
value: {
|
|
930
|
+
base: string;
|
|
931
|
+
_light: string;
|
|
932
|
+
_dark: string;
|
|
933
|
+
_enterprise: string;
|
|
934
|
+
};
|
|
935
|
+
};
|
|
936
|
+
subtle: {
|
|
937
|
+
value: {
|
|
938
|
+
base: string;
|
|
939
|
+
_light: string;
|
|
940
|
+
_dark: string;
|
|
941
|
+
_enterprise: string;
|
|
942
|
+
};
|
|
664
943
|
};
|
|
665
944
|
};
|
|
666
945
|
bold: {
|
|
@@ -668,6 +947,7 @@ declare const colors: {
|
|
|
668
947
|
base: string;
|
|
669
948
|
_light: string;
|
|
670
949
|
_dark: string;
|
|
950
|
+
_enterprise: string;
|
|
671
951
|
};
|
|
672
952
|
};
|
|
673
953
|
disabled: {
|
|
@@ -675,6 +955,7 @@ declare const colors: {
|
|
|
675
955
|
base: string;
|
|
676
956
|
_light: string;
|
|
677
957
|
_dark: string;
|
|
958
|
+
_enterprise: string;
|
|
678
959
|
};
|
|
679
960
|
};
|
|
680
961
|
form: {
|
|
@@ -682,6 +963,7 @@ declare const colors: {
|
|
|
682
963
|
base: string;
|
|
683
964
|
_light: string;
|
|
684
965
|
_dark: string;
|
|
966
|
+
_enterprise: string;
|
|
685
967
|
};
|
|
686
968
|
};
|
|
687
969
|
focused: {
|
|
@@ -689,6 +971,7 @@ declare const colors: {
|
|
|
689
971
|
base: string;
|
|
690
972
|
_light: string;
|
|
691
973
|
_dark: string;
|
|
974
|
+
_enterprise: string;
|
|
692
975
|
};
|
|
693
976
|
};
|
|
694
977
|
inverse: {
|
|
@@ -696,6 +979,7 @@ declare const colors: {
|
|
|
696
979
|
base: string;
|
|
697
980
|
_light: string;
|
|
698
981
|
_dark: string;
|
|
982
|
+
_enterprise: string;
|
|
699
983
|
};
|
|
700
984
|
};
|
|
701
985
|
selected: {
|
|
@@ -704,6 +988,7 @@ declare const colors: {
|
|
|
704
988
|
base: string;
|
|
705
989
|
_light: string;
|
|
706
990
|
_dark: string;
|
|
991
|
+
_enterprise: string;
|
|
707
992
|
};
|
|
708
993
|
};
|
|
709
994
|
hovered: {
|
|
@@ -711,6 +996,7 @@ declare const colors: {
|
|
|
711
996
|
base: string;
|
|
712
997
|
_light: string;
|
|
713
998
|
_dark: string;
|
|
999
|
+
_enterprise: string;
|
|
714
1000
|
};
|
|
715
1001
|
};
|
|
716
1002
|
disabled: {
|
|
@@ -718,6 +1004,7 @@ declare const colors: {
|
|
|
718
1004
|
base: string;
|
|
719
1005
|
_light: string;
|
|
720
1006
|
_dark: string;
|
|
1007
|
+
_enterprise: string;
|
|
721
1008
|
};
|
|
722
1009
|
};
|
|
723
1010
|
};
|
|
@@ -726,6 +1013,7 @@ declare const colors: {
|
|
|
726
1013
|
base: string;
|
|
727
1014
|
_light: string;
|
|
728
1015
|
_dark: string;
|
|
1016
|
+
_enterprise: string;
|
|
729
1017
|
};
|
|
730
1018
|
};
|
|
731
1019
|
danger: {
|
|
@@ -733,6 +1021,7 @@ declare const colors: {
|
|
|
733
1021
|
base: string;
|
|
734
1022
|
_light: string;
|
|
735
1023
|
_dark: string;
|
|
1024
|
+
_enterprise: string;
|
|
736
1025
|
};
|
|
737
1026
|
};
|
|
738
1027
|
warning: {
|
|
@@ -740,6 +1029,7 @@ declare const colors: {
|
|
|
740
1029
|
base: string;
|
|
741
1030
|
_light: string;
|
|
742
1031
|
_dark: string;
|
|
1032
|
+
_enterprise: string;
|
|
743
1033
|
};
|
|
744
1034
|
};
|
|
745
1035
|
success: {
|
|
@@ -747,6 +1037,7 @@ declare const colors: {
|
|
|
747
1037
|
base: string;
|
|
748
1038
|
_light: string;
|
|
749
1039
|
_dark: string;
|
|
1040
|
+
_enterprise: string;
|
|
750
1041
|
};
|
|
751
1042
|
};
|
|
752
1043
|
highlight: {
|
|
@@ -754,6 +1045,7 @@ declare const colors: {
|
|
|
754
1045
|
base: string;
|
|
755
1046
|
_light: string;
|
|
756
1047
|
_dark: string;
|
|
1048
|
+
_enterprise: string;
|
|
757
1049
|
};
|
|
758
1050
|
};
|
|
759
1051
|
information: {
|
|
@@ -761,6 +1053,7 @@ declare const colors: {
|
|
|
761
1053
|
base: string;
|
|
762
1054
|
_light: string;
|
|
763
1055
|
_dark: string;
|
|
1056
|
+
_enterprise: string;
|
|
764
1057
|
};
|
|
765
1058
|
};
|
|
766
1059
|
};
|
|
@@ -771,6 +1064,7 @@ declare const colors: {
|
|
|
771
1064
|
base: string;
|
|
772
1065
|
_light: string;
|
|
773
1066
|
_dark: string;
|
|
1067
|
+
_enterprise: string;
|
|
774
1068
|
};
|
|
775
1069
|
};
|
|
776
1070
|
bold: {
|
|
@@ -778,6 +1072,7 @@ declare const colors: {
|
|
|
778
1072
|
base: string;
|
|
779
1073
|
_light: string;
|
|
780
1074
|
_dark: string;
|
|
1075
|
+
_enterprise: string;
|
|
781
1076
|
};
|
|
782
1077
|
};
|
|
783
1078
|
};
|
|
@@ -787,6 +1082,7 @@ declare const colors: {
|
|
|
787
1082
|
base: string;
|
|
788
1083
|
_light: string;
|
|
789
1084
|
_dark: string;
|
|
1085
|
+
_enterprise: string;
|
|
790
1086
|
};
|
|
791
1087
|
};
|
|
792
1088
|
bold: {
|
|
@@ -794,6 +1090,7 @@ declare const colors: {
|
|
|
794
1090
|
base: string;
|
|
795
1091
|
_light: string;
|
|
796
1092
|
_dark: string;
|
|
1093
|
+
_enterprise: string;
|
|
797
1094
|
};
|
|
798
1095
|
};
|
|
799
1096
|
};
|
|
@@ -803,6 +1100,7 @@ declare const colors: {
|
|
|
803
1100
|
base: string;
|
|
804
1101
|
_light: string;
|
|
805
1102
|
_dark: string;
|
|
1103
|
+
_enterprise: string;
|
|
806
1104
|
};
|
|
807
1105
|
};
|
|
808
1106
|
bold: {
|
|
@@ -810,6 +1108,7 @@ declare const colors: {
|
|
|
810
1108
|
base: string;
|
|
811
1109
|
_light: string;
|
|
812
1110
|
_dark: string;
|
|
1111
|
+
_enterprise: string;
|
|
813
1112
|
};
|
|
814
1113
|
};
|
|
815
1114
|
};
|
|
@@ -819,6 +1118,7 @@ declare const colors: {
|
|
|
819
1118
|
base: string;
|
|
820
1119
|
_light: string;
|
|
821
1120
|
_dark: string;
|
|
1121
|
+
_enterprise: string;
|
|
822
1122
|
};
|
|
823
1123
|
};
|
|
824
1124
|
bold: {
|
|
@@ -826,6 +1126,7 @@ declare const colors: {
|
|
|
826
1126
|
base: string;
|
|
827
1127
|
_light: string;
|
|
828
1128
|
_dark: string;
|
|
1129
|
+
_enterprise: string;
|
|
829
1130
|
};
|
|
830
1131
|
};
|
|
831
1132
|
};
|
|
@@ -835,6 +1136,7 @@ declare const colors: {
|
|
|
835
1136
|
base: string;
|
|
836
1137
|
_light: string;
|
|
837
1138
|
_dark: string;
|
|
1139
|
+
_enterprise: string;
|
|
838
1140
|
};
|
|
839
1141
|
};
|
|
840
1142
|
bold: {
|
|
@@ -842,6 +1144,7 @@ declare const colors: {
|
|
|
842
1144
|
base: string;
|
|
843
1145
|
_light: string;
|
|
844
1146
|
_dark: string;
|
|
1147
|
+
_enterprise: string;
|
|
845
1148
|
};
|
|
846
1149
|
};
|
|
847
1150
|
};
|
|
@@ -851,6 +1154,7 @@ declare const colors: {
|
|
|
851
1154
|
base: string;
|
|
852
1155
|
_light: string;
|
|
853
1156
|
_dark: string;
|
|
1157
|
+
_enterprise: string;
|
|
854
1158
|
};
|
|
855
1159
|
};
|
|
856
1160
|
bold: {
|
|
@@ -858,6 +1162,7 @@ declare const colors: {
|
|
|
858
1162
|
base: string;
|
|
859
1163
|
_light: string;
|
|
860
1164
|
_dark: string;
|
|
1165
|
+
_enterprise: string;
|
|
861
1166
|
};
|
|
862
1167
|
};
|
|
863
1168
|
};
|
|
@@ -867,6 +1172,7 @@ declare const colors: {
|
|
|
867
1172
|
base: string;
|
|
868
1173
|
_light: string;
|
|
869
1174
|
_dark: string;
|
|
1175
|
+
_enterprise: string;
|
|
870
1176
|
};
|
|
871
1177
|
};
|
|
872
1178
|
bold: {
|
|
@@ -874,6 +1180,7 @@ declare const colors: {
|
|
|
874
1180
|
base: string;
|
|
875
1181
|
_light: string;
|
|
876
1182
|
_dark: string;
|
|
1183
|
+
_enterprise: string;
|
|
877
1184
|
};
|
|
878
1185
|
};
|
|
879
1186
|
};
|
|
@@ -883,6 +1190,7 @@ declare const colors: {
|
|
|
883
1190
|
base: string;
|
|
884
1191
|
_light: string;
|
|
885
1192
|
_dark: string;
|
|
1193
|
+
_enterprise: string;
|
|
886
1194
|
};
|
|
887
1195
|
};
|
|
888
1196
|
bold: {
|
|
@@ -890,6 +1198,7 @@ declare const colors: {
|
|
|
890
1198
|
base: string;
|
|
891
1199
|
_light: string;
|
|
892
1200
|
_dark: string;
|
|
1201
|
+
_enterprise: string;
|
|
893
1202
|
};
|
|
894
1203
|
};
|
|
895
1204
|
};
|