@mekari/pixel3-theme 0.4.4-dev.0 → 0.5.0-dev.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/conditions.d.mts +1 -0
- package/dist/conditions.d.ts +1 -0
- package/dist/index.js +470 -158
- package/dist/index.mjs +470 -158
- package/dist/semanticTokens/colors.d.mts +281 -4
- package/dist/semanticTokens/colors.d.ts +281 -4
- package/dist/semanticTokens/index.d.mts +281 -4
- package/dist/semanticTokens/index.d.ts +281 -4
- package/dist/tokens/colors.d.mts +3 -0
- package/dist/tokens/colors.d.ts +3 -0
- package/dist/tokens/index.d.mts +3 -0
- package/dist/tokens/index.d.ts +3 -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 +2 -1
- package/src/recipes/badge.ts +3 -3
- package/src/recipes/banner.ts +1 -1
- package/src/semanticTokens/colors.ts +413 -136
- package/src/tokens/colors.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,6 +233,7 @@ 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: {
|
|
@@ -167,6 +241,15 @@ declare const colors: {
|
|
|
167
241
|
base: string;
|
|
168
242
|
_light: string;
|
|
169
243
|
_dark: string;
|
|
244
|
+
_enterprise: string;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
selectedDisabled: {
|
|
248
|
+
value: {
|
|
249
|
+
base: string;
|
|
250
|
+
_light: string;
|
|
251
|
+
_dark: string;
|
|
252
|
+
_enterprise: string;
|
|
170
253
|
};
|
|
171
254
|
};
|
|
172
255
|
};
|
|
@@ -177,6 +260,7 @@ declare const colors: {
|
|
|
177
260
|
base: string;
|
|
178
261
|
_light: string;
|
|
179
262
|
_dark: string;
|
|
263
|
+
_enterprise: string;
|
|
180
264
|
};
|
|
181
265
|
};
|
|
182
266
|
hovered: {
|
|
@@ -184,6 +268,7 @@ declare const colors: {
|
|
|
184
268
|
base: string;
|
|
185
269
|
_light: string;
|
|
186
270
|
_dark: string;
|
|
271
|
+
_enterprise: string;
|
|
187
272
|
};
|
|
188
273
|
};
|
|
189
274
|
pressed: {
|
|
@@ -191,6 +276,7 @@ declare const colors: {
|
|
|
191
276
|
base: string;
|
|
192
277
|
_light: string;
|
|
193
278
|
_dark: string;
|
|
279
|
+
_enterprise: string;
|
|
194
280
|
};
|
|
195
281
|
};
|
|
196
282
|
};
|
|
@@ -200,6 +286,7 @@ declare const colors: {
|
|
|
200
286
|
base: string;
|
|
201
287
|
_light: string;
|
|
202
288
|
_dark: string;
|
|
289
|
+
_enterprise: string;
|
|
203
290
|
};
|
|
204
291
|
};
|
|
205
292
|
hovered: {
|
|
@@ -207,6 +294,7 @@ declare const colors: {
|
|
|
207
294
|
base: string;
|
|
208
295
|
_light: string;
|
|
209
296
|
_dark: string;
|
|
297
|
+
_enterprise: string;
|
|
210
298
|
};
|
|
211
299
|
};
|
|
212
300
|
pressed: {
|
|
@@ -214,6 +302,15 @@ declare const colors: {
|
|
|
214
302
|
base: string;
|
|
215
303
|
_light: string;
|
|
216
304
|
_dark: string;
|
|
305
|
+
_enterprise: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
selected: {
|
|
309
|
+
value: {
|
|
310
|
+
base: string;
|
|
311
|
+
_light: string;
|
|
312
|
+
_dark: string;
|
|
313
|
+
_enterprise: string;
|
|
217
314
|
};
|
|
218
315
|
};
|
|
219
316
|
bold: {
|
|
@@ -222,6 +319,7 @@ declare const colors: {
|
|
|
222
319
|
base: string;
|
|
223
320
|
_light: string;
|
|
224
321
|
_dark: string;
|
|
322
|
+
_enterprise: string;
|
|
225
323
|
};
|
|
226
324
|
};
|
|
227
325
|
hovered: {
|
|
@@ -229,6 +327,7 @@ declare const colors: {
|
|
|
229
327
|
base: string;
|
|
230
328
|
_light: string;
|
|
231
329
|
_dark: string;
|
|
330
|
+
_enterprise: string;
|
|
232
331
|
};
|
|
233
332
|
};
|
|
234
333
|
pressed: {
|
|
@@ -236,6 +335,15 @@ declare const colors: {
|
|
|
236
335
|
base: string;
|
|
237
336
|
_light: string;
|
|
238
337
|
_dark: string;
|
|
338
|
+
_enterprise: string;
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
selected: {
|
|
342
|
+
value: {
|
|
343
|
+
base: string;
|
|
344
|
+
_light: string;
|
|
345
|
+
_dark: string;
|
|
346
|
+
_enterprise: string;
|
|
239
347
|
};
|
|
240
348
|
};
|
|
241
349
|
};
|
|
@@ -246,6 +354,7 @@ declare const colors: {
|
|
|
246
354
|
base: string;
|
|
247
355
|
_light: string;
|
|
248
356
|
_dark: string;
|
|
357
|
+
_enterprise: string;
|
|
249
358
|
};
|
|
250
359
|
};
|
|
251
360
|
hovered: {
|
|
@@ -253,6 +362,7 @@ declare const colors: {
|
|
|
253
362
|
base: string;
|
|
254
363
|
_light: string;
|
|
255
364
|
_dark: string;
|
|
365
|
+
_enterprise: string;
|
|
256
366
|
};
|
|
257
367
|
};
|
|
258
368
|
pressed: {
|
|
@@ -260,6 +370,15 @@ declare const colors: {
|
|
|
260
370
|
base: string;
|
|
261
371
|
_light: string;
|
|
262
372
|
_dark: string;
|
|
373
|
+
_enterprise: string;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
selected: {
|
|
377
|
+
value: {
|
|
378
|
+
base: string;
|
|
379
|
+
_light: string;
|
|
380
|
+
_dark: string;
|
|
381
|
+
_enterprise: string;
|
|
263
382
|
};
|
|
264
383
|
};
|
|
265
384
|
bold: {
|
|
@@ -268,6 +387,7 @@ declare const colors: {
|
|
|
268
387
|
base: string;
|
|
269
388
|
_light: string;
|
|
270
389
|
_dark: string;
|
|
390
|
+
_enterprise: string;
|
|
271
391
|
};
|
|
272
392
|
};
|
|
273
393
|
hovered: {
|
|
@@ -275,6 +395,7 @@ declare const colors: {
|
|
|
275
395
|
base: string;
|
|
276
396
|
_light: string;
|
|
277
397
|
_dark: string;
|
|
398
|
+
_enterprise: string;
|
|
278
399
|
};
|
|
279
400
|
};
|
|
280
401
|
pressed: {
|
|
@@ -282,6 +403,15 @@ declare const colors: {
|
|
|
282
403
|
base: string;
|
|
283
404
|
_light: string;
|
|
284
405
|
_dark: string;
|
|
406
|
+
_enterprise: string;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
selected: {
|
|
410
|
+
value: {
|
|
411
|
+
base: string;
|
|
412
|
+
_light: string;
|
|
413
|
+
_dark: string;
|
|
414
|
+
_enterprise: string;
|
|
285
415
|
};
|
|
286
416
|
};
|
|
287
417
|
};
|
|
@@ -292,6 +422,7 @@ declare const colors: {
|
|
|
292
422
|
base: string;
|
|
293
423
|
_light: string;
|
|
294
424
|
_dark: string;
|
|
425
|
+
_enterprise: string;
|
|
295
426
|
};
|
|
296
427
|
};
|
|
297
428
|
hovered: {
|
|
@@ -299,6 +430,7 @@ declare const colors: {
|
|
|
299
430
|
base: string;
|
|
300
431
|
_light: string;
|
|
301
432
|
_dark: string;
|
|
433
|
+
_enterprise: string;
|
|
302
434
|
};
|
|
303
435
|
};
|
|
304
436
|
pressed: {
|
|
@@ -306,6 +438,15 @@ declare const colors: {
|
|
|
306
438
|
base: string;
|
|
307
439
|
_light: string;
|
|
308
440
|
_dark: string;
|
|
441
|
+
_enterprise: string;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
selected: {
|
|
445
|
+
value: {
|
|
446
|
+
base: string;
|
|
447
|
+
_light: string;
|
|
448
|
+
_dark: string;
|
|
449
|
+
_enterprise: string;
|
|
309
450
|
};
|
|
310
451
|
};
|
|
311
452
|
bold: {
|
|
@@ -314,6 +455,7 @@ declare const colors: {
|
|
|
314
455
|
base: string;
|
|
315
456
|
_light: string;
|
|
316
457
|
_dark: string;
|
|
458
|
+
_enterprise: string;
|
|
317
459
|
};
|
|
318
460
|
};
|
|
319
461
|
hovered: {
|
|
@@ -321,6 +463,7 @@ declare const colors: {
|
|
|
321
463
|
base: string;
|
|
322
464
|
_light: string;
|
|
323
465
|
_dark: string;
|
|
466
|
+
_enterprise: string;
|
|
324
467
|
};
|
|
325
468
|
};
|
|
326
469
|
pressed: {
|
|
@@ -328,6 +471,15 @@ declare const colors: {
|
|
|
328
471
|
base: string;
|
|
329
472
|
_light: string;
|
|
330
473
|
_dark: string;
|
|
474
|
+
_enterprise: string;
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
selected: {
|
|
478
|
+
value: {
|
|
479
|
+
base: string;
|
|
480
|
+
_light: string;
|
|
481
|
+
_dark: string;
|
|
482
|
+
_enterprise: string;
|
|
331
483
|
};
|
|
332
484
|
};
|
|
333
485
|
};
|
|
@@ -338,6 +490,7 @@ declare const colors: {
|
|
|
338
490
|
base: string;
|
|
339
491
|
_light: string;
|
|
340
492
|
_dark: string;
|
|
493
|
+
_enterprise: string;
|
|
341
494
|
};
|
|
342
495
|
};
|
|
343
496
|
hovered: {
|
|
@@ -345,6 +498,7 @@ declare const colors: {
|
|
|
345
498
|
base: string;
|
|
346
499
|
_light: string;
|
|
347
500
|
_dark: string;
|
|
501
|
+
_enterprise: string;
|
|
348
502
|
};
|
|
349
503
|
};
|
|
350
504
|
pressed: {
|
|
@@ -352,6 +506,15 @@ declare const colors: {
|
|
|
352
506
|
base: string;
|
|
353
507
|
_light: string;
|
|
354
508
|
_dark: string;
|
|
509
|
+
_enterprise: string;
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
selected: {
|
|
513
|
+
value: {
|
|
514
|
+
base: string;
|
|
515
|
+
_light: string;
|
|
516
|
+
_dark: string;
|
|
517
|
+
_enterprise: string;
|
|
355
518
|
};
|
|
356
519
|
};
|
|
357
520
|
bold: {
|
|
@@ -360,6 +523,7 @@ declare const colors: {
|
|
|
360
523
|
base: string;
|
|
361
524
|
_light: string;
|
|
362
525
|
_dark: string;
|
|
526
|
+
_enterprise: string;
|
|
363
527
|
};
|
|
364
528
|
};
|
|
365
529
|
hovered: {
|
|
@@ -367,6 +531,7 @@ declare const colors: {
|
|
|
367
531
|
base: string;
|
|
368
532
|
_light: string;
|
|
369
533
|
_dark: string;
|
|
534
|
+
_enterprise: string;
|
|
370
535
|
};
|
|
371
536
|
};
|
|
372
537
|
pressed: {
|
|
@@ -374,6 +539,43 @@ declare const colors: {
|
|
|
374
539
|
base: string;
|
|
375
540
|
_light: string;
|
|
376
541
|
_dark: string;
|
|
542
|
+
_enterprise: string;
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
selected: {
|
|
546
|
+
value: {
|
|
547
|
+
base: string;
|
|
548
|
+
_light: string;
|
|
549
|
+
_dark: string;
|
|
550
|
+
_enterprise: string;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
header: {
|
|
556
|
+
DEFAULT: {
|
|
557
|
+
value: {
|
|
558
|
+
base: string;
|
|
559
|
+
_light: string;
|
|
560
|
+
_dark: string;
|
|
561
|
+
_enterprise: string;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
menu: {
|
|
565
|
+
hovered: {
|
|
566
|
+
value: {
|
|
567
|
+
base: string;
|
|
568
|
+
_light: string;
|
|
569
|
+
_dark: string;
|
|
570
|
+
_enterprise: string;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
selected: {
|
|
574
|
+
value: {
|
|
575
|
+
base: string;
|
|
576
|
+
_light: string;
|
|
577
|
+
_dark: string;
|
|
578
|
+
_enterprise: string;
|
|
377
579
|
};
|
|
378
580
|
};
|
|
379
581
|
};
|
|
@@ -383,6 +585,7 @@ declare const colors: {
|
|
|
383
585
|
base: string;
|
|
384
586
|
_light: string;
|
|
385
587
|
_dark: string;
|
|
588
|
+
_enterprise: string;
|
|
386
589
|
};
|
|
387
590
|
};
|
|
388
591
|
};
|
|
@@ -392,6 +595,7 @@ declare const colors: {
|
|
|
392
595
|
base: string;
|
|
393
596
|
_light: string;
|
|
394
597
|
_dark: string;
|
|
598
|
+
_enterprise: string;
|
|
395
599
|
};
|
|
396
600
|
};
|
|
397
601
|
stack: {
|
|
@@ -400,6 +604,7 @@ declare const colors: {
|
|
|
400
604
|
base: string;
|
|
401
605
|
_light: string;
|
|
402
606
|
_dark: string;
|
|
607
|
+
_enterprise: string;
|
|
403
608
|
};
|
|
404
609
|
};
|
|
405
610
|
hovered: {
|
|
@@ -407,6 +612,7 @@ declare const colors: {
|
|
|
407
612
|
base: string;
|
|
408
613
|
_light: string;
|
|
409
614
|
_dark: string;
|
|
615
|
+
_enterprise: string;
|
|
410
616
|
};
|
|
411
617
|
};
|
|
412
618
|
};
|
|
@@ -418,6 +624,7 @@ declare const colors: {
|
|
|
418
624
|
base: string;
|
|
419
625
|
_light: string;
|
|
420
626
|
_dark: string;
|
|
627
|
+
_enterprise: string;
|
|
421
628
|
};
|
|
422
629
|
};
|
|
423
630
|
static: {
|
|
@@ -425,6 +632,7 @@ declare const colors: {
|
|
|
425
632
|
base: string;
|
|
426
633
|
_light: string;
|
|
427
634
|
_dark: string;
|
|
635
|
+
_enterprise: string;
|
|
428
636
|
};
|
|
429
637
|
};
|
|
430
638
|
};
|
|
@@ -434,6 +642,7 @@ declare const colors: {
|
|
|
434
642
|
base: string;
|
|
435
643
|
_light: string;
|
|
436
644
|
_dark: string;
|
|
645
|
+
_enterprise: string;
|
|
437
646
|
};
|
|
438
647
|
};
|
|
439
648
|
pressed: {
|
|
@@ -441,6 +650,7 @@ declare const colors: {
|
|
|
441
650
|
base: string;
|
|
442
651
|
_light: string;
|
|
443
652
|
_dark: string;
|
|
653
|
+
_enterprise: string;
|
|
444
654
|
};
|
|
445
655
|
};
|
|
446
656
|
};
|
|
@@ -449,6 +659,7 @@ declare const colors: {
|
|
|
449
659
|
base: string;
|
|
450
660
|
_light: string;
|
|
451
661
|
_dark: string;
|
|
662
|
+
_enterprise: string;
|
|
452
663
|
};
|
|
453
664
|
};
|
|
454
665
|
disabled: {
|
|
@@ -456,6 +667,7 @@ declare const colors: {
|
|
|
456
667
|
base: string;
|
|
457
668
|
_light: string;
|
|
458
669
|
_dark: string;
|
|
670
|
+
_enterprise: string;
|
|
459
671
|
};
|
|
460
672
|
};
|
|
461
673
|
inverse: {
|
|
@@ -464,6 +676,7 @@ declare const colors: {
|
|
|
464
676
|
base: string;
|
|
465
677
|
_light: string;
|
|
466
678
|
_dark: string;
|
|
679
|
+
_enterprise: string;
|
|
467
680
|
};
|
|
468
681
|
};
|
|
469
682
|
static: {
|
|
@@ -471,6 +684,7 @@ declare const colors: {
|
|
|
471
684
|
base: string;
|
|
472
685
|
_light: string;
|
|
473
686
|
_dark: string;
|
|
687
|
+
_enterprise: string;
|
|
474
688
|
};
|
|
475
689
|
};
|
|
476
690
|
};
|
|
@@ -479,6 +693,7 @@ declare const colors: {
|
|
|
479
693
|
base: string;
|
|
480
694
|
_light: string;
|
|
481
695
|
_dark: string;
|
|
696
|
+
_enterprise: string;
|
|
482
697
|
};
|
|
483
698
|
};
|
|
484
699
|
danger: {
|
|
@@ -487,6 +702,7 @@ declare const colors: {
|
|
|
487
702
|
base: string;
|
|
488
703
|
_light: string;
|
|
489
704
|
_dark: string;
|
|
705
|
+
_enterprise: string;
|
|
490
706
|
};
|
|
491
707
|
};
|
|
492
708
|
pressed: {
|
|
@@ -494,6 +710,7 @@ declare const colors: {
|
|
|
494
710
|
base: string;
|
|
495
711
|
_light: string;
|
|
496
712
|
_dark: string;
|
|
713
|
+
_enterprise: string;
|
|
497
714
|
};
|
|
498
715
|
};
|
|
499
716
|
};
|
|
@@ -503,6 +720,7 @@ declare const colors: {
|
|
|
503
720
|
base: string;
|
|
504
721
|
_light: string;
|
|
505
722
|
_dark: string;
|
|
723
|
+
_enterprise: string;
|
|
506
724
|
};
|
|
507
725
|
};
|
|
508
726
|
inverse: {
|
|
@@ -510,6 +728,7 @@ declare const colors: {
|
|
|
510
728
|
base: string;
|
|
511
729
|
_light: string;
|
|
512
730
|
_dark: string;
|
|
731
|
+
_enterprise: string;
|
|
513
732
|
};
|
|
514
733
|
};
|
|
515
734
|
};
|
|
@@ -518,6 +737,7 @@ declare const colors: {
|
|
|
518
737
|
base: string;
|
|
519
738
|
_light: string;
|
|
520
739
|
_dark: string;
|
|
740
|
+
_enterprise: string;
|
|
521
741
|
};
|
|
522
742
|
};
|
|
523
743
|
highlight: {
|
|
@@ -525,6 +745,7 @@ declare const colors: {
|
|
|
525
745
|
base: string;
|
|
526
746
|
_light: string;
|
|
527
747
|
_dark: string;
|
|
748
|
+
_enterprise: string;
|
|
528
749
|
};
|
|
529
750
|
};
|
|
530
751
|
information: {
|
|
@@ -532,6 +753,7 @@ declare const colors: {
|
|
|
532
753
|
base: string;
|
|
533
754
|
_light: string;
|
|
534
755
|
_dark: string;
|
|
756
|
+
_enterprise: string;
|
|
535
757
|
};
|
|
536
758
|
};
|
|
537
759
|
link: {
|
|
@@ -540,6 +762,7 @@ declare const colors: {
|
|
|
540
762
|
base: string;
|
|
541
763
|
_light: string;
|
|
542
764
|
_dark: string;
|
|
765
|
+
_enterprise: string;
|
|
543
766
|
};
|
|
544
767
|
};
|
|
545
768
|
pressed: {
|
|
@@ -547,6 +770,7 @@ declare const colors: {
|
|
|
547
770
|
base: string;
|
|
548
771
|
_light: string;
|
|
549
772
|
_dark: string;
|
|
773
|
+
_enterprise: string;
|
|
550
774
|
};
|
|
551
775
|
};
|
|
552
776
|
};
|
|
@@ -557,6 +781,7 @@ declare const colors: {
|
|
|
557
781
|
base: string;
|
|
558
782
|
_light: string;
|
|
559
783
|
_dark: string;
|
|
784
|
+
_enterprise: string;
|
|
560
785
|
};
|
|
561
786
|
};
|
|
562
787
|
disabled: {
|
|
@@ -564,6 +789,7 @@ declare const colors: {
|
|
|
564
789
|
base: string;
|
|
565
790
|
_light: string;
|
|
566
791
|
_dark: string;
|
|
792
|
+
_enterprise: string;
|
|
567
793
|
};
|
|
568
794
|
};
|
|
569
795
|
inverse: {
|
|
@@ -572,6 +798,7 @@ declare const colors: {
|
|
|
572
798
|
base: string;
|
|
573
799
|
_light: string;
|
|
574
800
|
_dark: string;
|
|
801
|
+
_enterprise: string;
|
|
575
802
|
};
|
|
576
803
|
};
|
|
577
804
|
static: {
|
|
@@ -579,6 +806,7 @@ declare const colors: {
|
|
|
579
806
|
base: string;
|
|
580
807
|
_light: string;
|
|
581
808
|
_dark: string;
|
|
809
|
+
_enterprise: string;
|
|
582
810
|
};
|
|
583
811
|
};
|
|
584
812
|
};
|
|
@@ -587,6 +815,7 @@ declare const colors: {
|
|
|
587
815
|
base: string;
|
|
588
816
|
_light: string;
|
|
589
817
|
_dark: string;
|
|
818
|
+
_enterprise: string;
|
|
590
819
|
};
|
|
591
820
|
};
|
|
592
821
|
brand: {
|
|
@@ -594,6 +823,7 @@ declare const colors: {
|
|
|
594
823
|
base: string;
|
|
595
824
|
_light: string;
|
|
596
825
|
_dark: string;
|
|
826
|
+
_enterprise: string;
|
|
597
827
|
};
|
|
598
828
|
};
|
|
599
829
|
danger: {
|
|
@@ -601,6 +831,7 @@ declare const colors: {
|
|
|
601
831
|
base: string;
|
|
602
832
|
_light: string;
|
|
603
833
|
_dark: string;
|
|
834
|
+
_enterprise: string;
|
|
604
835
|
};
|
|
605
836
|
};
|
|
606
837
|
warning: {
|
|
@@ -609,6 +840,7 @@ declare const colors: {
|
|
|
609
840
|
base: string;
|
|
610
841
|
_light: string;
|
|
611
842
|
_dark: string;
|
|
843
|
+
_enterprise: string;
|
|
612
844
|
};
|
|
613
845
|
};
|
|
614
846
|
inverse: {
|
|
@@ -616,6 +848,7 @@ declare const colors: {
|
|
|
616
848
|
base: string;
|
|
617
849
|
_light: string;
|
|
618
850
|
_dark: string;
|
|
851
|
+
_enterprise: string;
|
|
619
852
|
};
|
|
620
853
|
};
|
|
621
854
|
};
|
|
@@ -624,6 +857,7 @@ declare const colors: {
|
|
|
624
857
|
base: string;
|
|
625
858
|
_light: string;
|
|
626
859
|
_dark: string;
|
|
860
|
+
_enterprise: string;
|
|
627
861
|
};
|
|
628
862
|
};
|
|
629
863
|
highlight: {
|
|
@@ -631,6 +865,7 @@ declare const colors: {
|
|
|
631
865
|
base: string;
|
|
632
866
|
_light: string;
|
|
633
867
|
_dark: string;
|
|
868
|
+
_enterprise: string;
|
|
634
869
|
};
|
|
635
870
|
};
|
|
636
871
|
information: {
|
|
@@ -638,6 +873,7 @@ declare const colors: {
|
|
|
638
873
|
base: string;
|
|
639
874
|
_light: string;
|
|
640
875
|
_dark: string;
|
|
876
|
+
_enterprise: string;
|
|
641
877
|
};
|
|
642
878
|
};
|
|
643
879
|
subtle: {
|
|
@@ -645,6 +881,7 @@ declare const colors: {
|
|
|
645
881
|
base: string;
|
|
646
882
|
_light: string;
|
|
647
883
|
_dark: string;
|
|
884
|
+
_enterprise: string;
|
|
648
885
|
};
|
|
649
886
|
};
|
|
650
887
|
logo: {
|
|
@@ -652,6 +889,7 @@ declare const colors: {
|
|
|
652
889
|
base: string;
|
|
653
890
|
_light: string;
|
|
654
891
|
_dark: string;
|
|
892
|
+
_enterprise: string;
|
|
655
893
|
};
|
|
656
894
|
};
|
|
657
895
|
};
|
|
@@ -661,6 +899,15 @@ declare const colors: {
|
|
|
661
899
|
base: string;
|
|
662
900
|
_light: string;
|
|
663
901
|
_dark: string;
|
|
902
|
+
_enterprise: string;
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
subtle: {
|
|
906
|
+
value: {
|
|
907
|
+
base: string;
|
|
908
|
+
_light: string;
|
|
909
|
+
_dark: string;
|
|
910
|
+
_enterprise: string;
|
|
664
911
|
};
|
|
665
912
|
};
|
|
666
913
|
bold: {
|
|
@@ -668,6 +915,7 @@ declare const colors: {
|
|
|
668
915
|
base: string;
|
|
669
916
|
_light: string;
|
|
670
917
|
_dark: string;
|
|
918
|
+
_enterprise: string;
|
|
671
919
|
};
|
|
672
920
|
};
|
|
673
921
|
disabled: {
|
|
@@ -675,6 +923,7 @@ declare const colors: {
|
|
|
675
923
|
base: string;
|
|
676
924
|
_light: string;
|
|
677
925
|
_dark: string;
|
|
926
|
+
_enterprise: string;
|
|
678
927
|
};
|
|
679
928
|
};
|
|
680
929
|
form: {
|
|
@@ -682,6 +931,7 @@ declare const colors: {
|
|
|
682
931
|
base: string;
|
|
683
932
|
_light: string;
|
|
684
933
|
_dark: string;
|
|
934
|
+
_enterprise: string;
|
|
685
935
|
};
|
|
686
936
|
};
|
|
687
937
|
focused: {
|
|
@@ -689,6 +939,7 @@ declare const colors: {
|
|
|
689
939
|
base: string;
|
|
690
940
|
_light: string;
|
|
691
941
|
_dark: string;
|
|
942
|
+
_enterprise: string;
|
|
692
943
|
};
|
|
693
944
|
};
|
|
694
945
|
inverse: {
|
|
@@ -696,6 +947,7 @@ declare const colors: {
|
|
|
696
947
|
base: string;
|
|
697
948
|
_light: string;
|
|
698
949
|
_dark: string;
|
|
950
|
+
_enterprise: string;
|
|
699
951
|
};
|
|
700
952
|
};
|
|
701
953
|
selected: {
|
|
@@ -704,6 +956,7 @@ declare const colors: {
|
|
|
704
956
|
base: string;
|
|
705
957
|
_light: string;
|
|
706
958
|
_dark: string;
|
|
959
|
+
_enterprise: string;
|
|
707
960
|
};
|
|
708
961
|
};
|
|
709
962
|
hovered: {
|
|
@@ -711,6 +964,7 @@ declare const colors: {
|
|
|
711
964
|
base: string;
|
|
712
965
|
_light: string;
|
|
713
966
|
_dark: string;
|
|
967
|
+
_enterprise: string;
|
|
714
968
|
};
|
|
715
969
|
};
|
|
716
970
|
disabled: {
|
|
@@ -718,6 +972,7 @@ declare const colors: {
|
|
|
718
972
|
base: string;
|
|
719
973
|
_light: string;
|
|
720
974
|
_dark: string;
|
|
975
|
+
_enterprise: string;
|
|
721
976
|
};
|
|
722
977
|
};
|
|
723
978
|
};
|
|
@@ -726,6 +981,7 @@ declare const colors: {
|
|
|
726
981
|
base: string;
|
|
727
982
|
_light: string;
|
|
728
983
|
_dark: string;
|
|
984
|
+
_enterprise: string;
|
|
729
985
|
};
|
|
730
986
|
};
|
|
731
987
|
danger: {
|
|
@@ -733,6 +989,7 @@ declare const colors: {
|
|
|
733
989
|
base: string;
|
|
734
990
|
_light: string;
|
|
735
991
|
_dark: string;
|
|
992
|
+
_enterprise: string;
|
|
736
993
|
};
|
|
737
994
|
};
|
|
738
995
|
warning: {
|
|
@@ -740,6 +997,7 @@ declare const colors: {
|
|
|
740
997
|
base: string;
|
|
741
998
|
_light: string;
|
|
742
999
|
_dark: string;
|
|
1000
|
+
_enterprise: string;
|
|
743
1001
|
};
|
|
744
1002
|
};
|
|
745
1003
|
success: {
|
|
@@ -747,6 +1005,7 @@ declare const colors: {
|
|
|
747
1005
|
base: string;
|
|
748
1006
|
_light: string;
|
|
749
1007
|
_dark: string;
|
|
1008
|
+
_enterprise: string;
|
|
750
1009
|
};
|
|
751
1010
|
};
|
|
752
1011
|
highlight: {
|
|
@@ -754,6 +1013,7 @@ declare const colors: {
|
|
|
754
1013
|
base: string;
|
|
755
1014
|
_light: string;
|
|
756
1015
|
_dark: string;
|
|
1016
|
+
_enterprise: string;
|
|
757
1017
|
};
|
|
758
1018
|
};
|
|
759
1019
|
information: {
|
|
@@ -761,6 +1021,7 @@ declare const colors: {
|
|
|
761
1021
|
base: string;
|
|
762
1022
|
_light: string;
|
|
763
1023
|
_dark: string;
|
|
1024
|
+
_enterprise: string;
|
|
764
1025
|
};
|
|
765
1026
|
};
|
|
766
1027
|
};
|
|
@@ -771,6 +1032,7 @@ declare const colors: {
|
|
|
771
1032
|
base: string;
|
|
772
1033
|
_light: string;
|
|
773
1034
|
_dark: string;
|
|
1035
|
+
_enterprise: string;
|
|
774
1036
|
};
|
|
775
1037
|
};
|
|
776
1038
|
bold: {
|
|
@@ -778,6 +1040,7 @@ declare const colors: {
|
|
|
778
1040
|
base: string;
|
|
779
1041
|
_light: string;
|
|
780
1042
|
_dark: string;
|
|
1043
|
+
_enterprise: string;
|
|
781
1044
|
};
|
|
782
1045
|
};
|
|
783
1046
|
};
|
|
@@ -787,6 +1050,7 @@ declare const colors: {
|
|
|
787
1050
|
base: string;
|
|
788
1051
|
_light: string;
|
|
789
1052
|
_dark: string;
|
|
1053
|
+
_enterprise: string;
|
|
790
1054
|
};
|
|
791
1055
|
};
|
|
792
1056
|
bold: {
|
|
@@ -794,6 +1058,7 @@ declare const colors: {
|
|
|
794
1058
|
base: string;
|
|
795
1059
|
_light: string;
|
|
796
1060
|
_dark: string;
|
|
1061
|
+
_enterprise: string;
|
|
797
1062
|
};
|
|
798
1063
|
};
|
|
799
1064
|
};
|
|
@@ -803,6 +1068,7 @@ declare const colors: {
|
|
|
803
1068
|
base: string;
|
|
804
1069
|
_light: string;
|
|
805
1070
|
_dark: string;
|
|
1071
|
+
_enterprise: string;
|
|
806
1072
|
};
|
|
807
1073
|
};
|
|
808
1074
|
bold: {
|
|
@@ -810,6 +1076,7 @@ declare const colors: {
|
|
|
810
1076
|
base: string;
|
|
811
1077
|
_light: string;
|
|
812
1078
|
_dark: string;
|
|
1079
|
+
_enterprise: string;
|
|
813
1080
|
};
|
|
814
1081
|
};
|
|
815
1082
|
};
|
|
@@ -819,6 +1086,7 @@ declare const colors: {
|
|
|
819
1086
|
base: string;
|
|
820
1087
|
_light: string;
|
|
821
1088
|
_dark: string;
|
|
1089
|
+
_enterprise: string;
|
|
822
1090
|
};
|
|
823
1091
|
};
|
|
824
1092
|
bold: {
|
|
@@ -826,6 +1094,7 @@ declare const colors: {
|
|
|
826
1094
|
base: string;
|
|
827
1095
|
_light: string;
|
|
828
1096
|
_dark: string;
|
|
1097
|
+
_enterprise: string;
|
|
829
1098
|
};
|
|
830
1099
|
};
|
|
831
1100
|
};
|
|
@@ -835,6 +1104,7 @@ declare const colors: {
|
|
|
835
1104
|
base: string;
|
|
836
1105
|
_light: string;
|
|
837
1106
|
_dark: string;
|
|
1107
|
+
_enterprise: string;
|
|
838
1108
|
};
|
|
839
1109
|
};
|
|
840
1110
|
bold: {
|
|
@@ -842,6 +1112,7 @@ declare const colors: {
|
|
|
842
1112
|
base: string;
|
|
843
1113
|
_light: string;
|
|
844
1114
|
_dark: string;
|
|
1115
|
+
_enterprise: string;
|
|
845
1116
|
};
|
|
846
1117
|
};
|
|
847
1118
|
};
|
|
@@ -851,6 +1122,7 @@ declare const colors: {
|
|
|
851
1122
|
base: string;
|
|
852
1123
|
_light: string;
|
|
853
1124
|
_dark: string;
|
|
1125
|
+
_enterprise: string;
|
|
854
1126
|
};
|
|
855
1127
|
};
|
|
856
1128
|
bold: {
|
|
@@ -858,6 +1130,7 @@ declare const colors: {
|
|
|
858
1130
|
base: string;
|
|
859
1131
|
_light: string;
|
|
860
1132
|
_dark: string;
|
|
1133
|
+
_enterprise: string;
|
|
861
1134
|
};
|
|
862
1135
|
};
|
|
863
1136
|
};
|
|
@@ -867,6 +1140,7 @@ declare const colors: {
|
|
|
867
1140
|
base: string;
|
|
868
1141
|
_light: string;
|
|
869
1142
|
_dark: string;
|
|
1143
|
+
_enterprise: string;
|
|
870
1144
|
};
|
|
871
1145
|
};
|
|
872
1146
|
bold: {
|
|
@@ -874,6 +1148,7 @@ declare const colors: {
|
|
|
874
1148
|
base: string;
|
|
875
1149
|
_light: string;
|
|
876
1150
|
_dark: string;
|
|
1151
|
+
_enterprise: string;
|
|
877
1152
|
};
|
|
878
1153
|
};
|
|
879
1154
|
};
|
|
@@ -883,6 +1158,7 @@ declare const colors: {
|
|
|
883
1158
|
base: string;
|
|
884
1159
|
_light: string;
|
|
885
1160
|
_dark: string;
|
|
1161
|
+
_enterprise: string;
|
|
886
1162
|
};
|
|
887
1163
|
};
|
|
888
1164
|
bold: {
|
|
@@ -890,6 +1166,7 @@ declare const colors: {
|
|
|
890
1166
|
base: string;
|
|
891
1167
|
_light: string;
|
|
892
1168
|
_dark: string;
|
|
1169
|
+
_enterprise: string;
|
|
893
1170
|
};
|
|
894
1171
|
};
|
|
895
1172
|
};
|