@a-type/ui 6.1.9 → 6.1.11
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/arbor/arbor.d.ts +9 -9
- package/dist/arbor/arbor.js +2 -2
- package/dist/arbor/arbor.js.map +1 -1
- package/dist/arbor/tokens.d.ts +2590 -0
- package/dist/arbor/tokens.js +3 -0
- package/dist/arbor/tokens.js.map +1 -0
- package/dist/components/provider/Provider.js +2 -1
- package/dist/components/provider/Provider.js.map +1 -1
- package/dist/components/toggleGroup/toggleGroup.module.css +1 -1
- package/package.json +3 -3
- package/src/arbor/arbor.ts +5 -5
- package/src/arbor/tokens.ts +3 -0
- package/src/components/provider/Provider.tsx +2 -1
- package/src/components/toggleGroup/toggleGroup.module.css +1 -1
|
@@ -0,0 +1,2590 @@
|
|
|
1
|
+
export declare const $: import("@arbor-css/core").PresetTokens<{
|
|
2
|
+
global: {
|
|
3
|
+
trueLightColor: {
|
|
4
|
+
purpose: "color";
|
|
5
|
+
description: "Either white or black, depending on the color scheme";
|
|
6
|
+
};
|
|
7
|
+
trueHeavyColor: {
|
|
8
|
+
purpose: "color";
|
|
9
|
+
description: "Either white or black, depending on the color scheme";
|
|
10
|
+
};
|
|
11
|
+
whenLight: {
|
|
12
|
+
purpose: "scalar";
|
|
13
|
+
description: "Resolves to 1 in light color schemes and 0 in dark color schemes.";
|
|
14
|
+
};
|
|
15
|
+
whenDark: {
|
|
16
|
+
purpose: "scalar";
|
|
17
|
+
description: "Resolves to 1 in dark color schemes and 0 in light color schemes.";
|
|
18
|
+
};
|
|
19
|
+
whenInverted: {
|
|
20
|
+
purpose: "scalar";
|
|
21
|
+
description: "Resolves to 1 in inverted color schemes and 0 in non-inverted color schemes.";
|
|
22
|
+
};
|
|
23
|
+
schemeMultiplier: {
|
|
24
|
+
purpose: "scalar";
|
|
25
|
+
description: "Resolves to 1 in light color schemes and -1 in dark color schemes.";
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
} & {
|
|
29
|
+
global: {
|
|
30
|
+
color: {
|
|
31
|
+
saturation: {
|
|
32
|
+
purpose: "scalar";
|
|
33
|
+
description: "Applies global saturation adjustments to all colors";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
space: {
|
|
37
|
+
density: {
|
|
38
|
+
purpose: "scalar";
|
|
39
|
+
description: "A scaling factor for density. Higher density means smaller, tighter spacing and size";
|
|
40
|
+
};
|
|
41
|
+
baseSize: {
|
|
42
|
+
purpose: "spacing";
|
|
43
|
+
description: "Defines the base spacing unit used to derive spacing and layout tokens.";
|
|
44
|
+
};
|
|
45
|
+
scaleBase: {
|
|
46
|
+
purpose: "scalar";
|
|
47
|
+
description: "The \"base\" number of the scale equation - a linear scalar multiplier. Set this to scale by some linear factor if scaleExponent is \"1\"";
|
|
48
|
+
};
|
|
49
|
+
scaleExponentStep: {
|
|
50
|
+
purpose: "scalar";
|
|
51
|
+
description: "The exponent of the scale equation - the rate of exponential growth. `scaleBase` is raised to this exponent before being multiplied by the base spacing size. Set this to \"1\" to scale linearly by the `scaleBase` factor, or set it to a value greater than \"1\" to have exponential growth.";
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
shape: {
|
|
55
|
+
roundness: {
|
|
56
|
+
purpose: "scalar";
|
|
57
|
+
description: "Controls the roundness of corners. Larger roundness values also may affect padding.";
|
|
58
|
+
};
|
|
59
|
+
lineWidth: {
|
|
60
|
+
purpose: "scalar";
|
|
61
|
+
description: "Controls the width of lines used for borders, etc.";
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
shadow: {
|
|
65
|
+
spread: {
|
|
66
|
+
purpose: "scalar";
|
|
67
|
+
description: "Controls the spread size of all shadows.";
|
|
68
|
+
};
|
|
69
|
+
blur: {
|
|
70
|
+
purpose: "scalar";
|
|
71
|
+
description: "Controls the blur scaling of all shadows.";
|
|
72
|
+
};
|
|
73
|
+
color: {
|
|
74
|
+
purpose: "color";
|
|
75
|
+
description: "Provides the default shadow color used when a shadow token does not supply its own color.";
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
typography: {
|
|
79
|
+
baseFontSize: {
|
|
80
|
+
purpose: "font-size";
|
|
81
|
+
description: "Defines the root font size used to derive typography tokens.";
|
|
82
|
+
};
|
|
83
|
+
size: {
|
|
84
|
+
purpose: "scalar";
|
|
85
|
+
description: "A global parameter to influence the overall font size of all typography tokens.";
|
|
86
|
+
};
|
|
87
|
+
weightStep: {
|
|
88
|
+
purpose: "scalar";
|
|
89
|
+
description: "The amount of font weight change between each typography level. This is multiplied by the level index to determine how much to adjust font weight at each level.";
|
|
90
|
+
};
|
|
91
|
+
minWeight: {
|
|
92
|
+
purpose: "scalar";
|
|
93
|
+
description: "The minimum font weight to use in the typography scale.";
|
|
94
|
+
};
|
|
95
|
+
maxWeight: {
|
|
96
|
+
purpose: "scalar";
|
|
97
|
+
description: "The maximum font weight to use in the typography scale.";
|
|
98
|
+
};
|
|
99
|
+
baseWeight: {
|
|
100
|
+
purpose: "scalar";
|
|
101
|
+
description: "The base font weight from which to calculate typography levels. This is typically the \"normal\" font weight (e.g. 400), and level adjustments are applied as positive or negative offsets from this base.";
|
|
102
|
+
};
|
|
103
|
+
lineHeightStep: {
|
|
104
|
+
purpose: "scalar";
|
|
105
|
+
description: "The amount of line height change between each typography level. This is multiplied by the level index to determine how much to adjust line height at each level.";
|
|
106
|
+
};
|
|
107
|
+
minLineHeight: {
|
|
108
|
+
purpose: "scalar";
|
|
109
|
+
description: "The minimum line height to use in the typography scale.";
|
|
110
|
+
};
|
|
111
|
+
maxLineHeight: {
|
|
112
|
+
purpose: "scalar";
|
|
113
|
+
description: "The maximum line height to use in the typography scale.";
|
|
114
|
+
};
|
|
115
|
+
baseLineHeight: {
|
|
116
|
+
purpose: "scalar";
|
|
117
|
+
description: "The base line height from which to calculate typography levels. This is typically the line height used at the default typography level, and level adjustments are applied as positive or negative offsets from this base.";
|
|
118
|
+
};
|
|
119
|
+
minFontSize: {
|
|
120
|
+
purpose: "font-size";
|
|
121
|
+
description: "The minimum font size to use in the typography scale.";
|
|
122
|
+
};
|
|
123
|
+
maxFontSize: {
|
|
124
|
+
purpose: "font-size";
|
|
125
|
+
description: "The maximum font size to use in the typography scale.";
|
|
126
|
+
};
|
|
127
|
+
fontSizeScaleBase: {
|
|
128
|
+
purpose: "scalar";
|
|
129
|
+
description: "The \"base\" number of the font size scale equation - a linear scalar multiplier. Set this to scale by some linear factor if sizeExponent is \"1\"";
|
|
130
|
+
};
|
|
131
|
+
fontSizeScaleExponentStep: {
|
|
132
|
+
purpose: "scalar";
|
|
133
|
+
description: "The exponent of the font size scale equation - the rate of exponential growth. `fontSizeScaleBase` is raised to this exponent before being multiplied by the base font size. Set this to \"1\" to scale linearly by the `fontSizeScaleBase` factor, or set it to a value greater than \"1\" to have exponential growth.";
|
|
134
|
+
};
|
|
135
|
+
letterSpacingStep: {
|
|
136
|
+
purpose: "scalar";
|
|
137
|
+
description: "The amount of letter spacing change between each typography level. This is multiplied by the level index to determine how much to adjust letter spacing at each level.";
|
|
138
|
+
};
|
|
139
|
+
minLetterSpacing: {
|
|
140
|
+
purpose: "spacing";
|
|
141
|
+
description: "The minimum letter spacing to use in the typography scale.";
|
|
142
|
+
};
|
|
143
|
+
maxLetterSpacing: {
|
|
144
|
+
purpose: "spacing";
|
|
145
|
+
description: "The maximum letter spacing to use in the typography scale.";
|
|
146
|
+
};
|
|
147
|
+
baseLetterSpacing: {
|
|
148
|
+
purpose: "spacing";
|
|
149
|
+
description: "The base letter spacing from which to calculate typography levels. This is typically the letter spacing used at the default typography level, and level adjustments are applied as positive or negative offsets from this base.";
|
|
150
|
+
};
|
|
151
|
+
darkModeWeightAdjustment: {
|
|
152
|
+
purpose: "scalar";
|
|
153
|
+
description: "An adjustment applied to font weight when in dark mode to compensate for the irradiation illusion. This is typically a negative value to reduce font weight in dark mode, but it can be positive if your theme has very light text and you want to increase weight in dark mode.";
|
|
154
|
+
};
|
|
155
|
+
boldness: {
|
|
156
|
+
purpose: "scalar";
|
|
157
|
+
description: "An overall scaling factor for how heavy font weight tokens are.";
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
ease: {
|
|
161
|
+
bounciness: {
|
|
162
|
+
purpose: "scalar";
|
|
163
|
+
description: "Controls the bounciness of easing functions. Higher values result in more overshoot and bounce.";
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
duration: {
|
|
167
|
+
slowness: {
|
|
168
|
+
purpose: "scalar";
|
|
169
|
+
description: "Controls the overall slowness of durations. Higher values result in longer durations.";
|
|
170
|
+
};
|
|
171
|
+
base: {
|
|
172
|
+
purpose: "duration";
|
|
173
|
+
description: "The base duration used to derive all other durations. This can be thought of as the \"medium\" duration, and other durations are calculated as multiples or fractions of this base.";
|
|
174
|
+
};
|
|
175
|
+
min: {
|
|
176
|
+
purpose: "duration";
|
|
177
|
+
description: "The minimum duration to use in the duration scale.";
|
|
178
|
+
};
|
|
179
|
+
max: {
|
|
180
|
+
purpose: "duration";
|
|
181
|
+
description: "The maximum duration to use in the duration scale.";
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
tint: {
|
|
186
|
+
$root: {
|
|
187
|
+
purpose: "color";
|
|
188
|
+
description: string;
|
|
189
|
+
};
|
|
190
|
+
paper: {
|
|
191
|
+
purpose: "color";
|
|
192
|
+
description: "The lightest color in the range";
|
|
193
|
+
};
|
|
194
|
+
wash: {
|
|
195
|
+
purpose: "color";
|
|
196
|
+
description: "A light color in the range, lighter than the base color";
|
|
197
|
+
};
|
|
198
|
+
light: {
|
|
199
|
+
purpose: "color";
|
|
200
|
+
description: "A light color in the range, lighter than the base color";
|
|
201
|
+
};
|
|
202
|
+
mid: {
|
|
203
|
+
purpose: "color";
|
|
204
|
+
description: "A mid-tone color in the range, similar to the base color";
|
|
205
|
+
};
|
|
206
|
+
heavy: {
|
|
207
|
+
purpose: "color";
|
|
208
|
+
description: "A dark color in the range, darker than the base color";
|
|
209
|
+
};
|
|
210
|
+
ink: {
|
|
211
|
+
purpose: "color";
|
|
212
|
+
description: "The darkest color in the range, usually used for text and other high-contrast elements";
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
gray: {
|
|
216
|
+
$root: {
|
|
217
|
+
purpose: "color";
|
|
218
|
+
description: string;
|
|
219
|
+
};
|
|
220
|
+
paper: {
|
|
221
|
+
purpose: "color";
|
|
222
|
+
description: "The lightest color in the range";
|
|
223
|
+
};
|
|
224
|
+
wash: {
|
|
225
|
+
purpose: "color";
|
|
226
|
+
description: "A light color in the range, lighter than the base color";
|
|
227
|
+
};
|
|
228
|
+
light: {
|
|
229
|
+
purpose: "color";
|
|
230
|
+
description: "A light color in the range, lighter than the base color";
|
|
231
|
+
};
|
|
232
|
+
mid: {
|
|
233
|
+
purpose: "color";
|
|
234
|
+
description: "A mid-tone color in the range, similar to the base color";
|
|
235
|
+
};
|
|
236
|
+
heavy: {
|
|
237
|
+
purpose: "color";
|
|
238
|
+
description: "A dark color in the range, darker than the base color";
|
|
239
|
+
};
|
|
240
|
+
ink: {
|
|
241
|
+
purpose: "color";
|
|
242
|
+
description: "The darkest color in the range, usually used for text and other high-contrast elements";
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
color: Record<"lemon" | "leek" | "tomato" | "blueberry" | "eggplant" | "attention" | "success" | "user", {
|
|
246
|
+
gray: {
|
|
247
|
+
$root: {
|
|
248
|
+
purpose: "color";
|
|
249
|
+
description: string;
|
|
250
|
+
};
|
|
251
|
+
paper: {
|
|
252
|
+
purpose: "color";
|
|
253
|
+
description: "The lightest color in the range";
|
|
254
|
+
};
|
|
255
|
+
wash: {
|
|
256
|
+
purpose: "color";
|
|
257
|
+
description: "A light color in the range, lighter than the base color";
|
|
258
|
+
};
|
|
259
|
+
light: {
|
|
260
|
+
purpose: "color";
|
|
261
|
+
description: "A light color in the range, lighter than the base color";
|
|
262
|
+
};
|
|
263
|
+
mid: {
|
|
264
|
+
purpose: "color";
|
|
265
|
+
description: "A mid-tone color in the range, similar to the base color";
|
|
266
|
+
};
|
|
267
|
+
heavy: {
|
|
268
|
+
purpose: "color";
|
|
269
|
+
description: "A dark color in the range, darker than the base color";
|
|
270
|
+
};
|
|
271
|
+
ink: {
|
|
272
|
+
purpose: "color";
|
|
273
|
+
description: "The darkest color in the range, usually used for text and other high-contrast elements";
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
$root: {
|
|
277
|
+
purpose: "color";
|
|
278
|
+
description: string;
|
|
279
|
+
};
|
|
280
|
+
paper: {
|
|
281
|
+
purpose: "color";
|
|
282
|
+
description: "The lightest color in the range";
|
|
283
|
+
};
|
|
284
|
+
wash: {
|
|
285
|
+
purpose: "color";
|
|
286
|
+
description: "A light color in the range, lighter than the base color";
|
|
287
|
+
};
|
|
288
|
+
light: {
|
|
289
|
+
purpose: "color";
|
|
290
|
+
description: "A light color in the range, lighter than the base color";
|
|
291
|
+
};
|
|
292
|
+
mid: {
|
|
293
|
+
purpose: "color";
|
|
294
|
+
description: "A mid-tone color in the range, similar to the base color";
|
|
295
|
+
};
|
|
296
|
+
heavy: {
|
|
297
|
+
purpose: "color";
|
|
298
|
+
description: "A dark color in the range, darker than the base color";
|
|
299
|
+
};
|
|
300
|
+
ink: {
|
|
301
|
+
purpose: "color";
|
|
302
|
+
description: "The darkest color in the range, usually used for text and other high-contrast elements";
|
|
303
|
+
};
|
|
304
|
+
}>;
|
|
305
|
+
sp: {
|
|
306
|
+
$root: "spacing";
|
|
307
|
+
xs: "spacing";
|
|
308
|
+
sm: "spacing";
|
|
309
|
+
md: "spacing";
|
|
310
|
+
lg: "spacing";
|
|
311
|
+
xl: "spacing";
|
|
312
|
+
};
|
|
313
|
+
rd: {
|
|
314
|
+
$root: "border-radius";
|
|
315
|
+
xs: "border-radius";
|
|
316
|
+
sm: "border-radius";
|
|
317
|
+
md: "border-radius";
|
|
318
|
+
lg: "border-radius";
|
|
319
|
+
xl: "border-radius";
|
|
320
|
+
full: "border-radius";
|
|
321
|
+
};
|
|
322
|
+
lw: {
|
|
323
|
+
$root: "border-width";
|
|
324
|
+
sm: "border-width";
|
|
325
|
+
md: "border-width";
|
|
326
|
+
lg: "border-width";
|
|
327
|
+
};
|
|
328
|
+
shadow: {
|
|
329
|
+
$root: "shadow";
|
|
330
|
+
none: {
|
|
331
|
+
$root: {
|
|
332
|
+
purpose: "shadow";
|
|
333
|
+
description: string;
|
|
334
|
+
};
|
|
335
|
+
x: {
|
|
336
|
+
purpose: "shadow-x";
|
|
337
|
+
description: "Horizontal offset of the shadow";
|
|
338
|
+
};
|
|
339
|
+
y: {
|
|
340
|
+
purpose: "shadow-y";
|
|
341
|
+
description: "Vertical offset of the shadow";
|
|
342
|
+
};
|
|
343
|
+
blur: {
|
|
344
|
+
purpose: "shadow-blur";
|
|
345
|
+
description: "Blur radius of the shadow";
|
|
346
|
+
};
|
|
347
|
+
spread: {
|
|
348
|
+
purpose: "shadow-spread";
|
|
349
|
+
description: "Spread radius of the shadow";
|
|
350
|
+
};
|
|
351
|
+
color: {
|
|
352
|
+
purpose: "shadow-color";
|
|
353
|
+
description: "Color of the shadow";
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
sm: {
|
|
357
|
+
$root: {
|
|
358
|
+
purpose: "shadow";
|
|
359
|
+
description: string;
|
|
360
|
+
};
|
|
361
|
+
x: {
|
|
362
|
+
purpose: "shadow-x";
|
|
363
|
+
description: "Horizontal offset of the shadow";
|
|
364
|
+
};
|
|
365
|
+
y: {
|
|
366
|
+
purpose: "shadow-y";
|
|
367
|
+
description: "Vertical offset of the shadow";
|
|
368
|
+
};
|
|
369
|
+
blur: {
|
|
370
|
+
purpose: "shadow-blur";
|
|
371
|
+
description: "Blur radius of the shadow";
|
|
372
|
+
};
|
|
373
|
+
spread: {
|
|
374
|
+
purpose: "shadow-spread";
|
|
375
|
+
description: "Spread radius of the shadow";
|
|
376
|
+
};
|
|
377
|
+
color: {
|
|
378
|
+
purpose: "shadow-color";
|
|
379
|
+
description: "Color of the shadow";
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
md: {
|
|
383
|
+
$root: {
|
|
384
|
+
purpose: "shadow";
|
|
385
|
+
description: string;
|
|
386
|
+
};
|
|
387
|
+
x: {
|
|
388
|
+
purpose: "shadow-x";
|
|
389
|
+
description: "Horizontal offset of the shadow";
|
|
390
|
+
};
|
|
391
|
+
y: {
|
|
392
|
+
purpose: "shadow-y";
|
|
393
|
+
description: "Vertical offset of the shadow";
|
|
394
|
+
};
|
|
395
|
+
blur: {
|
|
396
|
+
purpose: "shadow-blur";
|
|
397
|
+
description: "Blur radius of the shadow";
|
|
398
|
+
};
|
|
399
|
+
spread: {
|
|
400
|
+
purpose: "shadow-spread";
|
|
401
|
+
description: "Spread radius of the shadow";
|
|
402
|
+
};
|
|
403
|
+
color: {
|
|
404
|
+
purpose: "shadow-color";
|
|
405
|
+
description: "Color of the shadow";
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
lg: {
|
|
409
|
+
$root: {
|
|
410
|
+
purpose: "shadow";
|
|
411
|
+
description: string;
|
|
412
|
+
};
|
|
413
|
+
x: {
|
|
414
|
+
purpose: "shadow-x";
|
|
415
|
+
description: "Horizontal offset of the shadow";
|
|
416
|
+
};
|
|
417
|
+
y: {
|
|
418
|
+
purpose: "shadow-y";
|
|
419
|
+
description: "Vertical offset of the shadow";
|
|
420
|
+
};
|
|
421
|
+
blur: {
|
|
422
|
+
purpose: "shadow-blur";
|
|
423
|
+
description: "Blur radius of the shadow";
|
|
424
|
+
};
|
|
425
|
+
spread: {
|
|
426
|
+
purpose: "shadow-spread";
|
|
427
|
+
description: "Spread radius of the shadow";
|
|
428
|
+
};
|
|
429
|
+
color: {
|
|
430
|
+
purpose: "shadow-color";
|
|
431
|
+
description: "Color of the shadow";
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
xl: {
|
|
435
|
+
$root: {
|
|
436
|
+
purpose: "shadow";
|
|
437
|
+
description: string;
|
|
438
|
+
};
|
|
439
|
+
x: {
|
|
440
|
+
purpose: "shadow-x";
|
|
441
|
+
description: "Horizontal offset of the shadow";
|
|
442
|
+
};
|
|
443
|
+
y: {
|
|
444
|
+
purpose: "shadow-y";
|
|
445
|
+
description: "Vertical offset of the shadow";
|
|
446
|
+
};
|
|
447
|
+
blur: {
|
|
448
|
+
purpose: "shadow-blur";
|
|
449
|
+
description: "Blur radius of the shadow";
|
|
450
|
+
};
|
|
451
|
+
spread: {
|
|
452
|
+
purpose: "shadow-spread";
|
|
453
|
+
description: "Spread radius of the shadow";
|
|
454
|
+
};
|
|
455
|
+
color: {
|
|
456
|
+
purpose: "shadow-color";
|
|
457
|
+
description: "Color of the shadow";
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
fs: {
|
|
462
|
+
$root: "font-size";
|
|
463
|
+
sm: "font-size";
|
|
464
|
+
md: "font-size";
|
|
465
|
+
lg: "font-size";
|
|
466
|
+
};
|
|
467
|
+
fw: {
|
|
468
|
+
$root: "font-weight";
|
|
469
|
+
normal: "font-weight";
|
|
470
|
+
bold: "font-weight";
|
|
471
|
+
};
|
|
472
|
+
lh: {
|
|
473
|
+
$root: "line-height";
|
|
474
|
+
tight: "line-height";
|
|
475
|
+
normal: "line-height";
|
|
476
|
+
loose: "line-height";
|
|
477
|
+
};
|
|
478
|
+
ls: {
|
|
479
|
+
$root: "letter-spacing";
|
|
480
|
+
tight: "letter-spacing";
|
|
481
|
+
normal: "letter-spacing";
|
|
482
|
+
loose: "letter-spacing";
|
|
483
|
+
};
|
|
484
|
+
dur: {
|
|
485
|
+
$root: "duration";
|
|
486
|
+
short: "duration";
|
|
487
|
+
medium: "duration";
|
|
488
|
+
long: "duration";
|
|
489
|
+
};
|
|
490
|
+
ease: {
|
|
491
|
+
$root: "easing-function";
|
|
492
|
+
tight: "easing-function";
|
|
493
|
+
medium: "easing-function";
|
|
494
|
+
loose: "easing-function";
|
|
495
|
+
in: {
|
|
496
|
+
$root: "easing-function";
|
|
497
|
+
tight: "easing-function";
|
|
498
|
+
medium: "easing-function";
|
|
499
|
+
loose: "easing-function";
|
|
500
|
+
};
|
|
501
|
+
out: {
|
|
502
|
+
$root: "easing-function";
|
|
503
|
+
tight: "easing-function";
|
|
504
|
+
medium: "easing-function";
|
|
505
|
+
loose: "easing-function";
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
fg: {
|
|
509
|
+
$root: "color";
|
|
510
|
+
light: "color";
|
|
511
|
+
ink: "color";
|
|
512
|
+
gray: {
|
|
513
|
+
$root: "color";
|
|
514
|
+
light: "color";
|
|
515
|
+
ink: "color";
|
|
516
|
+
};
|
|
517
|
+
};
|
|
518
|
+
bg: {
|
|
519
|
+
$root: "color";
|
|
520
|
+
paper: "color";
|
|
521
|
+
wash: "color";
|
|
522
|
+
light: "color";
|
|
523
|
+
heavy: "color";
|
|
524
|
+
gray: {
|
|
525
|
+
$root: "color";
|
|
526
|
+
paper: "color";
|
|
527
|
+
wash: "color";
|
|
528
|
+
light: "color";
|
|
529
|
+
heavy: "color";
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
action: {
|
|
533
|
+
p: {
|
|
534
|
+
$root: {
|
|
535
|
+
purpose: "other";
|
|
536
|
+
description: string;
|
|
537
|
+
};
|
|
538
|
+
inline: {
|
|
539
|
+
purpose: "spacing";
|
|
540
|
+
description: "Inline (horizontal, usually) padding";
|
|
541
|
+
};
|
|
542
|
+
block: {
|
|
543
|
+
purpose: "spacing";
|
|
544
|
+
description: "Block (vertical, usually) padding";
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
rd: "border-radius";
|
|
548
|
+
text: {
|
|
549
|
+
size: "font-size";
|
|
550
|
+
weight: "font-weight";
|
|
551
|
+
lineHeight: "line-height";
|
|
552
|
+
font: "font-family";
|
|
553
|
+
letterSpacing: "letter-spacing";
|
|
554
|
+
};
|
|
555
|
+
primary: {
|
|
556
|
+
fg: {
|
|
557
|
+
purpose: "color";
|
|
558
|
+
description: "Foreground color";
|
|
559
|
+
};
|
|
560
|
+
bg: {
|
|
561
|
+
purpose: "background";
|
|
562
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
563
|
+
};
|
|
564
|
+
b: {
|
|
565
|
+
$root: {
|
|
566
|
+
purpose: "border";
|
|
567
|
+
description: string;
|
|
568
|
+
};
|
|
569
|
+
color: "color";
|
|
570
|
+
width: "border-width";
|
|
571
|
+
style: "border-style";
|
|
572
|
+
};
|
|
573
|
+
};
|
|
574
|
+
secondary: {
|
|
575
|
+
fg: {
|
|
576
|
+
purpose: "color";
|
|
577
|
+
description: "Foreground color";
|
|
578
|
+
};
|
|
579
|
+
bg: {
|
|
580
|
+
purpose: "background";
|
|
581
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
582
|
+
};
|
|
583
|
+
b: {
|
|
584
|
+
$root: {
|
|
585
|
+
purpose: "border";
|
|
586
|
+
description: string;
|
|
587
|
+
};
|
|
588
|
+
color: "color";
|
|
589
|
+
width: "border-width";
|
|
590
|
+
style: "border-style";
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
ambient: {
|
|
594
|
+
fg: {
|
|
595
|
+
purpose: "color";
|
|
596
|
+
description: "Foreground color";
|
|
597
|
+
};
|
|
598
|
+
bg: {
|
|
599
|
+
purpose: "background";
|
|
600
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
601
|
+
};
|
|
602
|
+
b: {
|
|
603
|
+
$root: {
|
|
604
|
+
purpose: "border";
|
|
605
|
+
description: string;
|
|
606
|
+
};
|
|
607
|
+
color: "color";
|
|
608
|
+
width: "border-width";
|
|
609
|
+
style: "border-style";
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
config: {
|
|
613
|
+
roundness: "scalar";
|
|
614
|
+
};
|
|
615
|
+
};
|
|
616
|
+
surface: {
|
|
617
|
+
p: {
|
|
618
|
+
$root: {
|
|
619
|
+
purpose: "other";
|
|
620
|
+
description: string;
|
|
621
|
+
};
|
|
622
|
+
inline: {
|
|
623
|
+
purpose: "spacing";
|
|
624
|
+
description: "Inline (horizontal, usually) padding";
|
|
625
|
+
};
|
|
626
|
+
block: {
|
|
627
|
+
purpose: "spacing";
|
|
628
|
+
description: "Block (vertical, usually) padding";
|
|
629
|
+
};
|
|
630
|
+
};
|
|
631
|
+
rd: "border-radius";
|
|
632
|
+
text: {
|
|
633
|
+
size: "font-size";
|
|
634
|
+
weight: "font-weight";
|
|
635
|
+
lineHeight: "line-height";
|
|
636
|
+
font: "font-family";
|
|
637
|
+
letterSpacing: "letter-spacing";
|
|
638
|
+
};
|
|
639
|
+
primary: {
|
|
640
|
+
fg: {
|
|
641
|
+
purpose: "color";
|
|
642
|
+
description: "Foreground color";
|
|
643
|
+
};
|
|
644
|
+
bg: {
|
|
645
|
+
purpose: "background";
|
|
646
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
647
|
+
};
|
|
648
|
+
b: {
|
|
649
|
+
$root: {
|
|
650
|
+
purpose: "border";
|
|
651
|
+
description: string;
|
|
652
|
+
};
|
|
653
|
+
color: "color";
|
|
654
|
+
width: "border-width";
|
|
655
|
+
style: "border-style";
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
secondary: {
|
|
659
|
+
fg: {
|
|
660
|
+
purpose: "color";
|
|
661
|
+
description: "Foreground color";
|
|
662
|
+
};
|
|
663
|
+
bg: {
|
|
664
|
+
purpose: "background";
|
|
665
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
666
|
+
};
|
|
667
|
+
b: {
|
|
668
|
+
$root: {
|
|
669
|
+
purpose: "border";
|
|
670
|
+
description: string;
|
|
671
|
+
};
|
|
672
|
+
color: "color";
|
|
673
|
+
width: "border-width";
|
|
674
|
+
style: "border-style";
|
|
675
|
+
};
|
|
676
|
+
};
|
|
677
|
+
ambient: {
|
|
678
|
+
fg: {
|
|
679
|
+
purpose: "color";
|
|
680
|
+
description: "Foreground color";
|
|
681
|
+
};
|
|
682
|
+
bg: {
|
|
683
|
+
purpose: "background";
|
|
684
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
685
|
+
};
|
|
686
|
+
b: {
|
|
687
|
+
$root: {
|
|
688
|
+
purpose: "border";
|
|
689
|
+
description: string;
|
|
690
|
+
};
|
|
691
|
+
color: "color";
|
|
692
|
+
width: "border-width";
|
|
693
|
+
style: "border-style";
|
|
694
|
+
};
|
|
695
|
+
};
|
|
696
|
+
config: {
|
|
697
|
+
roundness: "scalar";
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
control: {
|
|
701
|
+
config: {
|
|
702
|
+
roundness: "scalar";
|
|
703
|
+
};
|
|
704
|
+
fg: {
|
|
705
|
+
purpose: "color";
|
|
706
|
+
description: "Foreground color";
|
|
707
|
+
};
|
|
708
|
+
bg: {
|
|
709
|
+
purpose: "background";
|
|
710
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
711
|
+
};
|
|
712
|
+
b: {
|
|
713
|
+
$root: {
|
|
714
|
+
purpose: "border";
|
|
715
|
+
description: string;
|
|
716
|
+
};
|
|
717
|
+
color: "color";
|
|
718
|
+
width: "border-width";
|
|
719
|
+
style: "border-style";
|
|
720
|
+
};
|
|
721
|
+
p: {
|
|
722
|
+
$root: {
|
|
723
|
+
purpose: "other";
|
|
724
|
+
description: string;
|
|
725
|
+
};
|
|
726
|
+
inline: {
|
|
727
|
+
purpose: "spacing";
|
|
728
|
+
description: "Inline (horizontal, usually) padding";
|
|
729
|
+
};
|
|
730
|
+
block: {
|
|
731
|
+
purpose: "spacing";
|
|
732
|
+
description: "Block (vertical, usually) padding";
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
rd: "border-radius";
|
|
736
|
+
text: {
|
|
737
|
+
size: "font-size";
|
|
738
|
+
weight: "font-weight";
|
|
739
|
+
lineHeight: "line-height";
|
|
740
|
+
font: "font-family";
|
|
741
|
+
letterSpacing: "letter-spacing";
|
|
742
|
+
};
|
|
743
|
+
};
|
|
744
|
+
prose: {
|
|
745
|
+
primary: {
|
|
746
|
+
size: "font-size";
|
|
747
|
+
weight: "font-weight";
|
|
748
|
+
lineHeight: "line-height";
|
|
749
|
+
font: "font-family";
|
|
750
|
+
letterSpacing: "letter-spacing";
|
|
751
|
+
};
|
|
752
|
+
secondary: {
|
|
753
|
+
size: "font-size";
|
|
754
|
+
weight: "font-weight";
|
|
755
|
+
lineHeight: "line-height";
|
|
756
|
+
font: "font-family";
|
|
757
|
+
letterSpacing: "letter-spacing";
|
|
758
|
+
};
|
|
759
|
+
ambient: {
|
|
760
|
+
size: "font-size";
|
|
761
|
+
weight: "font-weight";
|
|
762
|
+
lineHeight: "line-height";
|
|
763
|
+
font: "font-family";
|
|
764
|
+
letterSpacing: "letter-spacing";
|
|
765
|
+
};
|
|
766
|
+
};
|
|
767
|
+
} & {
|
|
768
|
+
accent: {
|
|
769
|
+
$root: {
|
|
770
|
+
purpose: "color";
|
|
771
|
+
description: string;
|
|
772
|
+
};
|
|
773
|
+
paper: {
|
|
774
|
+
purpose: "color";
|
|
775
|
+
description: "The lightest color in the range";
|
|
776
|
+
};
|
|
777
|
+
wash: {
|
|
778
|
+
purpose: "color";
|
|
779
|
+
description: "A light color in the range, lighter than the base color";
|
|
780
|
+
};
|
|
781
|
+
light: {
|
|
782
|
+
purpose: "color";
|
|
783
|
+
description: "A light color in the range, lighter than the base color";
|
|
784
|
+
};
|
|
785
|
+
mid: {
|
|
786
|
+
purpose: "color";
|
|
787
|
+
description: "A mid-tone color in the range, similar to the base color";
|
|
788
|
+
};
|
|
789
|
+
heavy: {
|
|
790
|
+
purpose: "color";
|
|
791
|
+
description: "A dark color in the range, darker than the base color";
|
|
792
|
+
};
|
|
793
|
+
ink: {
|
|
794
|
+
purpose: "color";
|
|
795
|
+
description: "The darkest color in the range, usually used for text and other high-contrast elements";
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
user: {
|
|
799
|
+
hue: {
|
|
800
|
+
purpose: "other";
|
|
801
|
+
description: "A user-input hue value";
|
|
802
|
+
};
|
|
803
|
+
saturation: {
|
|
804
|
+
purpose: "scalar";
|
|
805
|
+
description: "A user-input saturation value between 0 and 1";
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
action: {
|
|
809
|
+
light: {
|
|
810
|
+
fg: {
|
|
811
|
+
purpose: "color";
|
|
812
|
+
description: "Foreground color";
|
|
813
|
+
};
|
|
814
|
+
bg: {
|
|
815
|
+
purpose: "background";
|
|
816
|
+
description: "Background - can be a color or a more complex value like a gradient or image";
|
|
817
|
+
};
|
|
818
|
+
b: {
|
|
819
|
+
$root: {
|
|
820
|
+
purpose: "border";
|
|
821
|
+
description: string;
|
|
822
|
+
};
|
|
823
|
+
color: "color";
|
|
824
|
+
width: "border-width";
|
|
825
|
+
style: "border-style";
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
}, Omit<Omit<Omit<{}, "shadow" | "fill" | "fg" | "bg" | "ring" | "borderColor" | "stroke" | "accent" | "accentLighter" | "accentHeavier" | "accentDesaturated" | "accentSaturated" | "accentFaded" | "bgLighter" | "bgHeavier" | "bgDesaturated" | "bgSaturated" | "bgFaded" | "borderColorLighter" | "borderColorHeavier" | "borderColorDesaturated" | "borderColorSaturated" | "borderColorFaded" | "fillLighter" | "fillHeavier" | "fillDesaturated" | "fillSaturated" | "fillFaded" | "fgLighter" | "fgHeavier" | "fgDesaturated" | "fgSaturated" | "fgFaded" | "strokeLighter" | "strokeHeavier" | "strokeDesaturated" | "strokeSaturated" | "strokeFaded"> & {
|
|
830
|
+
readonly shadow: import("@arbor-css/core").ArborMixin<readonly [{
|
|
831
|
+
readonly name: "--shadow";
|
|
832
|
+
readonly fallback: "0 0 0 0 transparent";
|
|
833
|
+
readonly type: "*";
|
|
834
|
+
readonly description: "The main shadow layer, often used for elevation. If not specified, no shadow is initially applied.";
|
|
835
|
+
}], {
|
|
836
|
+
value: {
|
|
837
|
+
"@@TOKEN@@": true;
|
|
838
|
+
name: string;
|
|
839
|
+
syntax: string;
|
|
840
|
+
tag: string | undefined;
|
|
841
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
842
|
+
group: string | undefined;
|
|
843
|
+
description: string | undefined;
|
|
844
|
+
contributedBy: string | undefined;
|
|
845
|
+
deprecated: string | boolean | undefined;
|
|
846
|
+
initial: string | number;
|
|
847
|
+
inherits: boolean;
|
|
848
|
+
var: string;
|
|
849
|
+
varFallback: (fallback: string | number) => string;
|
|
850
|
+
assign: (value?: string | number) => string;
|
|
851
|
+
readonly definition: string;
|
|
852
|
+
suffixed: (suffix: string) => {
|
|
853
|
+
"@@TOKEN@@": true;
|
|
854
|
+
name: string;
|
|
855
|
+
syntax: string;
|
|
856
|
+
tag: string | undefined;
|
|
857
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
858
|
+
group: string | undefined;
|
|
859
|
+
description: string | undefined;
|
|
860
|
+
contributedBy: string | undefined;
|
|
861
|
+
deprecated: string | boolean | undefined;
|
|
862
|
+
initial: string | number;
|
|
863
|
+
inherits: boolean;
|
|
864
|
+
var: string;
|
|
865
|
+
varFallback: (fallback: string | number) => string;
|
|
866
|
+
assign: (value?: string | number) => string;
|
|
867
|
+
readonly definition: string;
|
|
868
|
+
suffixed: any;
|
|
869
|
+
prefixed: (prefix: string) => any;
|
|
870
|
+
};
|
|
871
|
+
prefixed: (prefix: string) => {
|
|
872
|
+
"@@TOKEN@@": true;
|
|
873
|
+
name: string;
|
|
874
|
+
syntax: string;
|
|
875
|
+
tag: string | undefined;
|
|
876
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
877
|
+
group: string | undefined;
|
|
878
|
+
description: string | undefined;
|
|
879
|
+
contributedBy: string | undefined;
|
|
880
|
+
deprecated: string | boolean | undefined;
|
|
881
|
+
initial: string | number;
|
|
882
|
+
inherits: boolean;
|
|
883
|
+
var: string;
|
|
884
|
+
varFallback: (fallback: string | number) => string;
|
|
885
|
+
assign: (value?: string | number) => string;
|
|
886
|
+
readonly definition: string;
|
|
887
|
+
suffixed: (suffix: string) => any;
|
|
888
|
+
prefixed: any;
|
|
889
|
+
};
|
|
890
|
+
};
|
|
891
|
+
}>;
|
|
892
|
+
readonly ring: import("@arbor-css/core").ArborMixin<readonly [{
|
|
893
|
+
readonly name: "--ring";
|
|
894
|
+
readonly fallback: "0 0 0 0 transparent";
|
|
895
|
+
readonly type: "*";
|
|
896
|
+
readonly description: "The main shadow layer, often used for elevation. If not specified, no shadow is initially applied.";
|
|
897
|
+
}], {
|
|
898
|
+
value: {
|
|
899
|
+
"@@TOKEN@@": true;
|
|
900
|
+
name: string;
|
|
901
|
+
syntax: string;
|
|
902
|
+
tag: string | undefined;
|
|
903
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
904
|
+
group: string | undefined;
|
|
905
|
+
description: string | undefined;
|
|
906
|
+
contributedBy: string | undefined;
|
|
907
|
+
deprecated: string | boolean | undefined;
|
|
908
|
+
initial: string | number;
|
|
909
|
+
inherits: boolean;
|
|
910
|
+
var: string;
|
|
911
|
+
varFallback: (fallback: string | number) => string;
|
|
912
|
+
assign: (value?: string | number) => string;
|
|
913
|
+
readonly definition: string;
|
|
914
|
+
suffixed: (suffix: string) => {
|
|
915
|
+
"@@TOKEN@@": true;
|
|
916
|
+
name: string;
|
|
917
|
+
syntax: string;
|
|
918
|
+
tag: string | undefined;
|
|
919
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
920
|
+
group: string | undefined;
|
|
921
|
+
description: string | undefined;
|
|
922
|
+
contributedBy: string | undefined;
|
|
923
|
+
deprecated: string | boolean | undefined;
|
|
924
|
+
initial: string | number;
|
|
925
|
+
inherits: boolean;
|
|
926
|
+
var: string;
|
|
927
|
+
varFallback: (fallback: string | number) => string;
|
|
928
|
+
assign: (value?: string | number) => string;
|
|
929
|
+
readonly definition: string;
|
|
930
|
+
suffixed: any;
|
|
931
|
+
prefixed: (prefix: string) => any;
|
|
932
|
+
};
|
|
933
|
+
prefixed: (prefix: string) => {
|
|
934
|
+
"@@TOKEN@@": true;
|
|
935
|
+
name: string;
|
|
936
|
+
syntax: string;
|
|
937
|
+
tag: string | undefined;
|
|
938
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
939
|
+
group: string | undefined;
|
|
940
|
+
description: string | undefined;
|
|
941
|
+
contributedBy: string | undefined;
|
|
942
|
+
deprecated: string | boolean | undefined;
|
|
943
|
+
initial: string | number;
|
|
944
|
+
inherits: boolean;
|
|
945
|
+
var: string;
|
|
946
|
+
varFallback: (fallback: string | number) => string;
|
|
947
|
+
assign: (value?: string | number) => string;
|
|
948
|
+
readonly definition: string;
|
|
949
|
+
suffixed: (suffix: string) => any;
|
|
950
|
+
prefixed: any;
|
|
951
|
+
};
|
|
952
|
+
};
|
|
953
|
+
}>;
|
|
954
|
+
readonly accent: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
955
|
+
applied: {
|
|
956
|
+
"@@TOKEN@@": true;
|
|
957
|
+
name: string;
|
|
958
|
+
syntax: string;
|
|
959
|
+
tag: string | undefined;
|
|
960
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
961
|
+
group: string | undefined;
|
|
962
|
+
description: string | undefined;
|
|
963
|
+
contributedBy: string | undefined;
|
|
964
|
+
deprecated: string | boolean | undefined;
|
|
965
|
+
initial: string | number;
|
|
966
|
+
inherits: boolean;
|
|
967
|
+
var: string;
|
|
968
|
+
varFallback: (fallback: string | number) => string;
|
|
969
|
+
assign: (value?: string | number) => string;
|
|
970
|
+
readonly definition: string;
|
|
971
|
+
suffixed: (suffix: string) => {
|
|
972
|
+
"@@TOKEN@@": true;
|
|
973
|
+
name: string;
|
|
974
|
+
syntax: string;
|
|
975
|
+
tag: string | undefined;
|
|
976
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
977
|
+
group: string | undefined;
|
|
978
|
+
description: string | undefined;
|
|
979
|
+
contributedBy: string | undefined;
|
|
980
|
+
deprecated: string | boolean | undefined;
|
|
981
|
+
initial: string | number;
|
|
982
|
+
inherits: boolean;
|
|
983
|
+
var: string;
|
|
984
|
+
varFallback: (fallback: string | number) => string;
|
|
985
|
+
assign: (value?: string | number) => string;
|
|
986
|
+
readonly definition: string;
|
|
987
|
+
suffixed: any;
|
|
988
|
+
prefixed: (prefix: string) => any;
|
|
989
|
+
};
|
|
990
|
+
prefixed: (prefix: string) => {
|
|
991
|
+
"@@TOKEN@@": true;
|
|
992
|
+
name: string;
|
|
993
|
+
syntax: string;
|
|
994
|
+
tag: string | undefined;
|
|
995
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
996
|
+
group: string | undefined;
|
|
997
|
+
description: string | undefined;
|
|
998
|
+
contributedBy: string | undefined;
|
|
999
|
+
deprecated: string | boolean | undefined;
|
|
1000
|
+
initial: string | number;
|
|
1001
|
+
inherits: boolean;
|
|
1002
|
+
var: string;
|
|
1003
|
+
varFallback: (fallback: string | number) => string;
|
|
1004
|
+
assign: (value?: string | number) => string;
|
|
1005
|
+
readonly definition: string;
|
|
1006
|
+
suffixed: (suffix: string) => any;
|
|
1007
|
+
prefixed: any;
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
1010
|
+
ref: {
|
|
1011
|
+
"@@TOKEN@@": true;
|
|
1012
|
+
name: string;
|
|
1013
|
+
syntax: string;
|
|
1014
|
+
tag: string | undefined;
|
|
1015
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1016
|
+
group: string | undefined;
|
|
1017
|
+
description: string | undefined;
|
|
1018
|
+
contributedBy: string | undefined;
|
|
1019
|
+
deprecated: string | boolean | undefined;
|
|
1020
|
+
initial: string | number;
|
|
1021
|
+
inherits: boolean;
|
|
1022
|
+
var: string;
|
|
1023
|
+
varFallback: (fallback: string | number) => string;
|
|
1024
|
+
assign: (value?: string | number) => string;
|
|
1025
|
+
readonly definition: string;
|
|
1026
|
+
suffixed: (suffix: string) => {
|
|
1027
|
+
"@@TOKEN@@": true;
|
|
1028
|
+
name: string;
|
|
1029
|
+
syntax: string;
|
|
1030
|
+
tag: string | undefined;
|
|
1031
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1032
|
+
group: string | undefined;
|
|
1033
|
+
description: string | undefined;
|
|
1034
|
+
contributedBy: string | undefined;
|
|
1035
|
+
deprecated: string | boolean | undefined;
|
|
1036
|
+
initial: string | number;
|
|
1037
|
+
inherits: boolean;
|
|
1038
|
+
var: string;
|
|
1039
|
+
varFallback: (fallback: string | number) => string;
|
|
1040
|
+
assign: (value?: string | number) => string;
|
|
1041
|
+
readonly definition: string;
|
|
1042
|
+
suffixed: any;
|
|
1043
|
+
prefixed: (prefix: string) => any;
|
|
1044
|
+
};
|
|
1045
|
+
prefixed: (prefix: string) => {
|
|
1046
|
+
"@@TOKEN@@": true;
|
|
1047
|
+
name: string;
|
|
1048
|
+
syntax: string;
|
|
1049
|
+
tag: string | undefined;
|
|
1050
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1051
|
+
group: string | undefined;
|
|
1052
|
+
description: string | undefined;
|
|
1053
|
+
contributedBy: string | undefined;
|
|
1054
|
+
deprecated: string | boolean | undefined;
|
|
1055
|
+
initial: string | number;
|
|
1056
|
+
inherits: boolean;
|
|
1057
|
+
var: string;
|
|
1058
|
+
varFallback: (fallback: string | number) => string;
|
|
1059
|
+
assign: (value?: string | number) => string;
|
|
1060
|
+
readonly definition: string;
|
|
1061
|
+
suffixed: (suffix: string) => any;
|
|
1062
|
+
prefixed: any;
|
|
1063
|
+
};
|
|
1064
|
+
};
|
|
1065
|
+
contrast: {
|
|
1066
|
+
"@@TOKEN@@": true;
|
|
1067
|
+
name: string;
|
|
1068
|
+
syntax: string;
|
|
1069
|
+
tag: string | undefined;
|
|
1070
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1071
|
+
group: string | undefined;
|
|
1072
|
+
description: string | undefined;
|
|
1073
|
+
contributedBy: string | undefined;
|
|
1074
|
+
deprecated: string | boolean | undefined;
|
|
1075
|
+
initial: string | number;
|
|
1076
|
+
inherits: boolean;
|
|
1077
|
+
var: string;
|
|
1078
|
+
varFallback: (fallback: string | number) => string;
|
|
1079
|
+
assign: (value?: string | number) => string;
|
|
1080
|
+
readonly definition: string;
|
|
1081
|
+
suffixed: (suffix: string) => {
|
|
1082
|
+
"@@TOKEN@@": true;
|
|
1083
|
+
name: string;
|
|
1084
|
+
syntax: string;
|
|
1085
|
+
tag: string | undefined;
|
|
1086
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1087
|
+
group: string | undefined;
|
|
1088
|
+
description: string | undefined;
|
|
1089
|
+
contributedBy: string | undefined;
|
|
1090
|
+
deprecated: string | boolean | undefined;
|
|
1091
|
+
initial: string | number;
|
|
1092
|
+
inherits: boolean;
|
|
1093
|
+
var: string;
|
|
1094
|
+
varFallback: (fallback: string | number) => string;
|
|
1095
|
+
assign: (value?: string | number) => string;
|
|
1096
|
+
readonly definition: string;
|
|
1097
|
+
suffixed: any;
|
|
1098
|
+
prefixed: (prefix: string) => any;
|
|
1099
|
+
};
|
|
1100
|
+
prefixed: (prefix: string) => {
|
|
1101
|
+
"@@TOKEN@@": true;
|
|
1102
|
+
name: string;
|
|
1103
|
+
syntax: string;
|
|
1104
|
+
tag: string | undefined;
|
|
1105
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1106
|
+
group: string | undefined;
|
|
1107
|
+
description: string | undefined;
|
|
1108
|
+
contributedBy: string | undefined;
|
|
1109
|
+
deprecated: string | boolean | undefined;
|
|
1110
|
+
initial: string | number;
|
|
1111
|
+
inherits: boolean;
|
|
1112
|
+
var: string;
|
|
1113
|
+
varFallback: (fallback: string | number) => string;
|
|
1114
|
+
assign: (value?: string | number) => string;
|
|
1115
|
+
readonly definition: string;
|
|
1116
|
+
suffixed: (suffix: string) => any;
|
|
1117
|
+
prefixed: any;
|
|
1118
|
+
};
|
|
1119
|
+
};
|
|
1120
|
+
}>;
|
|
1121
|
+
readonly accentLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1122
|
+
readonly name: "--source";
|
|
1123
|
+
readonly fallback: string;
|
|
1124
|
+
}], {
|
|
1125
|
+
[x: string]: {
|
|
1126
|
+
[x: string]: any;
|
|
1127
|
+
$root?: undefined;
|
|
1128
|
+
};
|
|
1129
|
+
$root?: undefined;
|
|
1130
|
+
}>;
|
|
1131
|
+
readonly accentHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1132
|
+
readonly name: "--source";
|
|
1133
|
+
readonly fallback: string;
|
|
1134
|
+
}], {
|
|
1135
|
+
[x: string]: {
|
|
1136
|
+
[x: string]: any;
|
|
1137
|
+
$root?: undefined;
|
|
1138
|
+
};
|
|
1139
|
+
$root?: undefined;
|
|
1140
|
+
}>;
|
|
1141
|
+
readonly accentDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1142
|
+
readonly name: "--source";
|
|
1143
|
+
readonly fallback: string;
|
|
1144
|
+
}], {
|
|
1145
|
+
[x: string]: {
|
|
1146
|
+
[x: string]: any;
|
|
1147
|
+
$root?: undefined;
|
|
1148
|
+
};
|
|
1149
|
+
$root?: undefined;
|
|
1150
|
+
}>;
|
|
1151
|
+
readonly accentSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1152
|
+
readonly name: "--source";
|
|
1153
|
+
readonly fallback: string;
|
|
1154
|
+
}], {
|
|
1155
|
+
[x: string]: {
|
|
1156
|
+
[x: string]: any;
|
|
1157
|
+
$root?: undefined;
|
|
1158
|
+
};
|
|
1159
|
+
$root?: undefined;
|
|
1160
|
+
}>;
|
|
1161
|
+
readonly accentFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
1162
|
+
readonly name: "--source";
|
|
1163
|
+
readonly fallback: string;
|
|
1164
|
+
}], {
|
|
1165
|
+
[x: string]: {
|
|
1166
|
+
[x: string]: any;
|
|
1167
|
+
$root?: undefined;
|
|
1168
|
+
};
|
|
1169
|
+
$root?: undefined;
|
|
1170
|
+
}>;
|
|
1171
|
+
readonly bg: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
1172
|
+
applied: {
|
|
1173
|
+
"@@TOKEN@@": true;
|
|
1174
|
+
name: string;
|
|
1175
|
+
syntax: string;
|
|
1176
|
+
tag: string | undefined;
|
|
1177
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1178
|
+
group: string | undefined;
|
|
1179
|
+
description: string | undefined;
|
|
1180
|
+
contributedBy: string | undefined;
|
|
1181
|
+
deprecated: string | boolean | undefined;
|
|
1182
|
+
initial: string | number;
|
|
1183
|
+
inherits: boolean;
|
|
1184
|
+
var: string;
|
|
1185
|
+
varFallback: (fallback: string | number) => string;
|
|
1186
|
+
assign: (value?: string | number) => string;
|
|
1187
|
+
readonly definition: string;
|
|
1188
|
+
suffixed: (suffix: string) => {
|
|
1189
|
+
"@@TOKEN@@": true;
|
|
1190
|
+
name: string;
|
|
1191
|
+
syntax: string;
|
|
1192
|
+
tag: string | undefined;
|
|
1193
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1194
|
+
group: string | undefined;
|
|
1195
|
+
description: string | undefined;
|
|
1196
|
+
contributedBy: string | undefined;
|
|
1197
|
+
deprecated: string | boolean | undefined;
|
|
1198
|
+
initial: string | number;
|
|
1199
|
+
inherits: boolean;
|
|
1200
|
+
var: string;
|
|
1201
|
+
varFallback: (fallback: string | number) => string;
|
|
1202
|
+
assign: (value?: string | number) => string;
|
|
1203
|
+
readonly definition: string;
|
|
1204
|
+
suffixed: any;
|
|
1205
|
+
prefixed: (prefix: string) => any;
|
|
1206
|
+
};
|
|
1207
|
+
prefixed: (prefix: string) => {
|
|
1208
|
+
"@@TOKEN@@": true;
|
|
1209
|
+
name: string;
|
|
1210
|
+
syntax: string;
|
|
1211
|
+
tag: string | undefined;
|
|
1212
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1213
|
+
group: string | undefined;
|
|
1214
|
+
description: string | undefined;
|
|
1215
|
+
contributedBy: string | undefined;
|
|
1216
|
+
deprecated: string | boolean | undefined;
|
|
1217
|
+
initial: string | number;
|
|
1218
|
+
inherits: boolean;
|
|
1219
|
+
var: string;
|
|
1220
|
+
varFallback: (fallback: string | number) => string;
|
|
1221
|
+
assign: (value?: string | number) => string;
|
|
1222
|
+
readonly definition: string;
|
|
1223
|
+
suffixed: (suffix: string) => any;
|
|
1224
|
+
prefixed: any;
|
|
1225
|
+
};
|
|
1226
|
+
};
|
|
1227
|
+
ref: {
|
|
1228
|
+
"@@TOKEN@@": true;
|
|
1229
|
+
name: string;
|
|
1230
|
+
syntax: string;
|
|
1231
|
+
tag: string | undefined;
|
|
1232
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1233
|
+
group: string | undefined;
|
|
1234
|
+
description: string | undefined;
|
|
1235
|
+
contributedBy: string | undefined;
|
|
1236
|
+
deprecated: string | boolean | undefined;
|
|
1237
|
+
initial: string | number;
|
|
1238
|
+
inherits: boolean;
|
|
1239
|
+
var: string;
|
|
1240
|
+
varFallback: (fallback: string | number) => string;
|
|
1241
|
+
assign: (value?: string | number) => string;
|
|
1242
|
+
readonly definition: string;
|
|
1243
|
+
suffixed: (suffix: string) => {
|
|
1244
|
+
"@@TOKEN@@": true;
|
|
1245
|
+
name: string;
|
|
1246
|
+
syntax: string;
|
|
1247
|
+
tag: string | undefined;
|
|
1248
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1249
|
+
group: string | undefined;
|
|
1250
|
+
description: string | undefined;
|
|
1251
|
+
contributedBy: string | undefined;
|
|
1252
|
+
deprecated: string | boolean | undefined;
|
|
1253
|
+
initial: string | number;
|
|
1254
|
+
inherits: boolean;
|
|
1255
|
+
var: string;
|
|
1256
|
+
varFallback: (fallback: string | number) => string;
|
|
1257
|
+
assign: (value?: string | number) => string;
|
|
1258
|
+
readonly definition: string;
|
|
1259
|
+
suffixed: any;
|
|
1260
|
+
prefixed: (prefix: string) => any;
|
|
1261
|
+
};
|
|
1262
|
+
prefixed: (prefix: string) => {
|
|
1263
|
+
"@@TOKEN@@": true;
|
|
1264
|
+
name: string;
|
|
1265
|
+
syntax: string;
|
|
1266
|
+
tag: string | undefined;
|
|
1267
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1268
|
+
group: string | undefined;
|
|
1269
|
+
description: string | undefined;
|
|
1270
|
+
contributedBy: string | undefined;
|
|
1271
|
+
deprecated: string | boolean | undefined;
|
|
1272
|
+
initial: string | number;
|
|
1273
|
+
inherits: boolean;
|
|
1274
|
+
var: string;
|
|
1275
|
+
varFallback: (fallback: string | number) => string;
|
|
1276
|
+
assign: (value?: string | number) => string;
|
|
1277
|
+
readonly definition: string;
|
|
1278
|
+
suffixed: (suffix: string) => any;
|
|
1279
|
+
prefixed: any;
|
|
1280
|
+
};
|
|
1281
|
+
};
|
|
1282
|
+
contrast: {
|
|
1283
|
+
"@@TOKEN@@": true;
|
|
1284
|
+
name: string;
|
|
1285
|
+
syntax: string;
|
|
1286
|
+
tag: string | undefined;
|
|
1287
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1288
|
+
group: string | undefined;
|
|
1289
|
+
description: string | undefined;
|
|
1290
|
+
contributedBy: string | undefined;
|
|
1291
|
+
deprecated: string | boolean | undefined;
|
|
1292
|
+
initial: string | number;
|
|
1293
|
+
inherits: boolean;
|
|
1294
|
+
var: string;
|
|
1295
|
+
varFallback: (fallback: string | number) => string;
|
|
1296
|
+
assign: (value?: string | number) => string;
|
|
1297
|
+
readonly definition: string;
|
|
1298
|
+
suffixed: (suffix: string) => {
|
|
1299
|
+
"@@TOKEN@@": true;
|
|
1300
|
+
name: string;
|
|
1301
|
+
syntax: string;
|
|
1302
|
+
tag: string | undefined;
|
|
1303
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1304
|
+
group: string | undefined;
|
|
1305
|
+
description: string | undefined;
|
|
1306
|
+
contributedBy: string | undefined;
|
|
1307
|
+
deprecated: string | boolean | undefined;
|
|
1308
|
+
initial: string | number;
|
|
1309
|
+
inherits: boolean;
|
|
1310
|
+
var: string;
|
|
1311
|
+
varFallback: (fallback: string | number) => string;
|
|
1312
|
+
assign: (value?: string | number) => string;
|
|
1313
|
+
readonly definition: string;
|
|
1314
|
+
suffixed: any;
|
|
1315
|
+
prefixed: (prefix: string) => any;
|
|
1316
|
+
};
|
|
1317
|
+
prefixed: (prefix: string) => {
|
|
1318
|
+
"@@TOKEN@@": true;
|
|
1319
|
+
name: string;
|
|
1320
|
+
syntax: string;
|
|
1321
|
+
tag: string | undefined;
|
|
1322
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1323
|
+
group: string | undefined;
|
|
1324
|
+
description: string | undefined;
|
|
1325
|
+
contributedBy: string | undefined;
|
|
1326
|
+
deprecated: string | boolean | undefined;
|
|
1327
|
+
initial: string | number;
|
|
1328
|
+
inherits: boolean;
|
|
1329
|
+
var: string;
|
|
1330
|
+
varFallback: (fallback: string | number) => string;
|
|
1331
|
+
assign: (value?: string | number) => string;
|
|
1332
|
+
readonly definition: string;
|
|
1333
|
+
suffixed: (suffix: string) => any;
|
|
1334
|
+
prefixed: any;
|
|
1335
|
+
};
|
|
1336
|
+
};
|
|
1337
|
+
}>;
|
|
1338
|
+
readonly bgLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1339
|
+
readonly name: "--source";
|
|
1340
|
+
readonly fallback: string;
|
|
1341
|
+
}], {
|
|
1342
|
+
[x: string]: {
|
|
1343
|
+
[x: string]: any;
|
|
1344
|
+
$root?: undefined;
|
|
1345
|
+
};
|
|
1346
|
+
$root?: undefined;
|
|
1347
|
+
}>;
|
|
1348
|
+
readonly bgHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1349
|
+
readonly name: "--source";
|
|
1350
|
+
readonly fallback: string;
|
|
1351
|
+
}], {
|
|
1352
|
+
[x: string]: {
|
|
1353
|
+
[x: string]: any;
|
|
1354
|
+
$root?: undefined;
|
|
1355
|
+
};
|
|
1356
|
+
$root?: undefined;
|
|
1357
|
+
}>;
|
|
1358
|
+
readonly bgDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1359
|
+
readonly name: "--source";
|
|
1360
|
+
readonly fallback: string;
|
|
1361
|
+
}], {
|
|
1362
|
+
[x: string]: {
|
|
1363
|
+
[x: string]: any;
|
|
1364
|
+
$root?: undefined;
|
|
1365
|
+
};
|
|
1366
|
+
$root?: undefined;
|
|
1367
|
+
}>;
|
|
1368
|
+
readonly bgSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1369
|
+
readonly name: "--source";
|
|
1370
|
+
readonly fallback: string;
|
|
1371
|
+
}], {
|
|
1372
|
+
[x: string]: {
|
|
1373
|
+
[x: string]: any;
|
|
1374
|
+
$root?: undefined;
|
|
1375
|
+
};
|
|
1376
|
+
$root?: undefined;
|
|
1377
|
+
}>;
|
|
1378
|
+
readonly bgFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
1379
|
+
readonly name: "--source";
|
|
1380
|
+
readonly fallback: string;
|
|
1381
|
+
}], {
|
|
1382
|
+
[x: string]: {
|
|
1383
|
+
[x: string]: any;
|
|
1384
|
+
$root?: undefined;
|
|
1385
|
+
};
|
|
1386
|
+
$root?: undefined;
|
|
1387
|
+
}>;
|
|
1388
|
+
readonly borderColor: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
1389
|
+
applied: {
|
|
1390
|
+
"@@TOKEN@@": true;
|
|
1391
|
+
name: string;
|
|
1392
|
+
syntax: string;
|
|
1393
|
+
tag: string | undefined;
|
|
1394
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1395
|
+
group: string | undefined;
|
|
1396
|
+
description: string | undefined;
|
|
1397
|
+
contributedBy: string | undefined;
|
|
1398
|
+
deprecated: string | boolean | undefined;
|
|
1399
|
+
initial: string | number;
|
|
1400
|
+
inherits: boolean;
|
|
1401
|
+
var: string;
|
|
1402
|
+
varFallback: (fallback: string | number) => string;
|
|
1403
|
+
assign: (value?: string | number) => string;
|
|
1404
|
+
readonly definition: string;
|
|
1405
|
+
suffixed: (suffix: string) => {
|
|
1406
|
+
"@@TOKEN@@": true;
|
|
1407
|
+
name: string;
|
|
1408
|
+
syntax: string;
|
|
1409
|
+
tag: string | undefined;
|
|
1410
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1411
|
+
group: string | undefined;
|
|
1412
|
+
description: string | undefined;
|
|
1413
|
+
contributedBy: string | undefined;
|
|
1414
|
+
deprecated: string | boolean | undefined;
|
|
1415
|
+
initial: string | number;
|
|
1416
|
+
inherits: boolean;
|
|
1417
|
+
var: string;
|
|
1418
|
+
varFallback: (fallback: string | number) => string;
|
|
1419
|
+
assign: (value?: string | number) => string;
|
|
1420
|
+
readonly definition: string;
|
|
1421
|
+
suffixed: any;
|
|
1422
|
+
prefixed: (prefix: string) => any;
|
|
1423
|
+
};
|
|
1424
|
+
prefixed: (prefix: string) => {
|
|
1425
|
+
"@@TOKEN@@": true;
|
|
1426
|
+
name: string;
|
|
1427
|
+
syntax: string;
|
|
1428
|
+
tag: string | undefined;
|
|
1429
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1430
|
+
group: string | undefined;
|
|
1431
|
+
description: string | undefined;
|
|
1432
|
+
contributedBy: string | undefined;
|
|
1433
|
+
deprecated: string | boolean | undefined;
|
|
1434
|
+
initial: string | number;
|
|
1435
|
+
inherits: boolean;
|
|
1436
|
+
var: string;
|
|
1437
|
+
varFallback: (fallback: string | number) => string;
|
|
1438
|
+
assign: (value?: string | number) => string;
|
|
1439
|
+
readonly definition: string;
|
|
1440
|
+
suffixed: (suffix: string) => any;
|
|
1441
|
+
prefixed: any;
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
ref: {
|
|
1445
|
+
"@@TOKEN@@": true;
|
|
1446
|
+
name: string;
|
|
1447
|
+
syntax: string;
|
|
1448
|
+
tag: string | undefined;
|
|
1449
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1450
|
+
group: string | undefined;
|
|
1451
|
+
description: string | undefined;
|
|
1452
|
+
contributedBy: string | undefined;
|
|
1453
|
+
deprecated: string | boolean | undefined;
|
|
1454
|
+
initial: string | number;
|
|
1455
|
+
inherits: boolean;
|
|
1456
|
+
var: string;
|
|
1457
|
+
varFallback: (fallback: string | number) => string;
|
|
1458
|
+
assign: (value?: string | number) => string;
|
|
1459
|
+
readonly definition: string;
|
|
1460
|
+
suffixed: (suffix: string) => {
|
|
1461
|
+
"@@TOKEN@@": true;
|
|
1462
|
+
name: string;
|
|
1463
|
+
syntax: string;
|
|
1464
|
+
tag: string | undefined;
|
|
1465
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1466
|
+
group: string | undefined;
|
|
1467
|
+
description: string | undefined;
|
|
1468
|
+
contributedBy: string | undefined;
|
|
1469
|
+
deprecated: string | boolean | undefined;
|
|
1470
|
+
initial: string | number;
|
|
1471
|
+
inherits: boolean;
|
|
1472
|
+
var: string;
|
|
1473
|
+
varFallback: (fallback: string | number) => string;
|
|
1474
|
+
assign: (value?: string | number) => string;
|
|
1475
|
+
readonly definition: string;
|
|
1476
|
+
suffixed: any;
|
|
1477
|
+
prefixed: (prefix: string) => any;
|
|
1478
|
+
};
|
|
1479
|
+
prefixed: (prefix: string) => {
|
|
1480
|
+
"@@TOKEN@@": true;
|
|
1481
|
+
name: string;
|
|
1482
|
+
syntax: string;
|
|
1483
|
+
tag: string | undefined;
|
|
1484
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1485
|
+
group: string | undefined;
|
|
1486
|
+
description: string | undefined;
|
|
1487
|
+
contributedBy: string | undefined;
|
|
1488
|
+
deprecated: string | boolean | undefined;
|
|
1489
|
+
initial: string | number;
|
|
1490
|
+
inherits: boolean;
|
|
1491
|
+
var: string;
|
|
1492
|
+
varFallback: (fallback: string | number) => string;
|
|
1493
|
+
assign: (value?: string | number) => string;
|
|
1494
|
+
readonly definition: string;
|
|
1495
|
+
suffixed: (suffix: string) => any;
|
|
1496
|
+
prefixed: any;
|
|
1497
|
+
};
|
|
1498
|
+
};
|
|
1499
|
+
contrast: {
|
|
1500
|
+
"@@TOKEN@@": true;
|
|
1501
|
+
name: string;
|
|
1502
|
+
syntax: string;
|
|
1503
|
+
tag: string | undefined;
|
|
1504
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1505
|
+
group: string | undefined;
|
|
1506
|
+
description: string | undefined;
|
|
1507
|
+
contributedBy: string | undefined;
|
|
1508
|
+
deprecated: string | boolean | undefined;
|
|
1509
|
+
initial: string | number;
|
|
1510
|
+
inherits: boolean;
|
|
1511
|
+
var: string;
|
|
1512
|
+
varFallback: (fallback: string | number) => string;
|
|
1513
|
+
assign: (value?: string | number) => string;
|
|
1514
|
+
readonly definition: string;
|
|
1515
|
+
suffixed: (suffix: string) => {
|
|
1516
|
+
"@@TOKEN@@": true;
|
|
1517
|
+
name: string;
|
|
1518
|
+
syntax: string;
|
|
1519
|
+
tag: string | undefined;
|
|
1520
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1521
|
+
group: string | undefined;
|
|
1522
|
+
description: string | undefined;
|
|
1523
|
+
contributedBy: string | undefined;
|
|
1524
|
+
deprecated: string | boolean | undefined;
|
|
1525
|
+
initial: string | number;
|
|
1526
|
+
inherits: boolean;
|
|
1527
|
+
var: string;
|
|
1528
|
+
varFallback: (fallback: string | number) => string;
|
|
1529
|
+
assign: (value?: string | number) => string;
|
|
1530
|
+
readonly definition: string;
|
|
1531
|
+
suffixed: any;
|
|
1532
|
+
prefixed: (prefix: string) => any;
|
|
1533
|
+
};
|
|
1534
|
+
prefixed: (prefix: string) => {
|
|
1535
|
+
"@@TOKEN@@": true;
|
|
1536
|
+
name: string;
|
|
1537
|
+
syntax: string;
|
|
1538
|
+
tag: string | undefined;
|
|
1539
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1540
|
+
group: string | undefined;
|
|
1541
|
+
description: string | undefined;
|
|
1542
|
+
contributedBy: string | undefined;
|
|
1543
|
+
deprecated: string | boolean | undefined;
|
|
1544
|
+
initial: string | number;
|
|
1545
|
+
inherits: boolean;
|
|
1546
|
+
var: string;
|
|
1547
|
+
varFallback: (fallback: string | number) => string;
|
|
1548
|
+
assign: (value?: string | number) => string;
|
|
1549
|
+
readonly definition: string;
|
|
1550
|
+
suffixed: (suffix: string) => any;
|
|
1551
|
+
prefixed: any;
|
|
1552
|
+
};
|
|
1553
|
+
};
|
|
1554
|
+
}>;
|
|
1555
|
+
readonly borderColorLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1556
|
+
readonly name: "--source";
|
|
1557
|
+
readonly fallback: string;
|
|
1558
|
+
}], {
|
|
1559
|
+
[x: string]: {
|
|
1560
|
+
[x: string]: any;
|
|
1561
|
+
$root?: undefined;
|
|
1562
|
+
};
|
|
1563
|
+
$root?: undefined;
|
|
1564
|
+
}>;
|
|
1565
|
+
readonly borderColorHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1566
|
+
readonly name: "--source";
|
|
1567
|
+
readonly fallback: string;
|
|
1568
|
+
}], {
|
|
1569
|
+
[x: string]: {
|
|
1570
|
+
[x: string]: any;
|
|
1571
|
+
$root?: undefined;
|
|
1572
|
+
};
|
|
1573
|
+
$root?: undefined;
|
|
1574
|
+
}>;
|
|
1575
|
+
readonly borderColorDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1576
|
+
readonly name: "--source";
|
|
1577
|
+
readonly fallback: string;
|
|
1578
|
+
}], {
|
|
1579
|
+
[x: string]: {
|
|
1580
|
+
[x: string]: any;
|
|
1581
|
+
$root?: undefined;
|
|
1582
|
+
};
|
|
1583
|
+
$root?: undefined;
|
|
1584
|
+
}>;
|
|
1585
|
+
readonly borderColorSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1586
|
+
readonly name: "--source";
|
|
1587
|
+
readonly fallback: string;
|
|
1588
|
+
}], {
|
|
1589
|
+
[x: string]: {
|
|
1590
|
+
[x: string]: any;
|
|
1591
|
+
$root?: undefined;
|
|
1592
|
+
};
|
|
1593
|
+
$root?: undefined;
|
|
1594
|
+
}>;
|
|
1595
|
+
readonly borderColorFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
1596
|
+
readonly name: "--source";
|
|
1597
|
+
readonly fallback: string;
|
|
1598
|
+
}], {
|
|
1599
|
+
[x: string]: {
|
|
1600
|
+
[x: string]: any;
|
|
1601
|
+
$root?: undefined;
|
|
1602
|
+
};
|
|
1603
|
+
$root?: undefined;
|
|
1604
|
+
}>;
|
|
1605
|
+
readonly fill: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
1606
|
+
applied: {
|
|
1607
|
+
"@@TOKEN@@": true;
|
|
1608
|
+
name: string;
|
|
1609
|
+
syntax: string;
|
|
1610
|
+
tag: string | undefined;
|
|
1611
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1612
|
+
group: string | undefined;
|
|
1613
|
+
description: string | undefined;
|
|
1614
|
+
contributedBy: string | undefined;
|
|
1615
|
+
deprecated: string | boolean | undefined;
|
|
1616
|
+
initial: string | number;
|
|
1617
|
+
inherits: boolean;
|
|
1618
|
+
var: string;
|
|
1619
|
+
varFallback: (fallback: string | number) => string;
|
|
1620
|
+
assign: (value?: string | number) => string;
|
|
1621
|
+
readonly definition: string;
|
|
1622
|
+
suffixed: (suffix: string) => {
|
|
1623
|
+
"@@TOKEN@@": true;
|
|
1624
|
+
name: string;
|
|
1625
|
+
syntax: string;
|
|
1626
|
+
tag: string | undefined;
|
|
1627
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1628
|
+
group: string | undefined;
|
|
1629
|
+
description: string | undefined;
|
|
1630
|
+
contributedBy: string | undefined;
|
|
1631
|
+
deprecated: string | boolean | undefined;
|
|
1632
|
+
initial: string | number;
|
|
1633
|
+
inherits: boolean;
|
|
1634
|
+
var: string;
|
|
1635
|
+
varFallback: (fallback: string | number) => string;
|
|
1636
|
+
assign: (value?: string | number) => string;
|
|
1637
|
+
readonly definition: string;
|
|
1638
|
+
suffixed: any;
|
|
1639
|
+
prefixed: (prefix: string) => any;
|
|
1640
|
+
};
|
|
1641
|
+
prefixed: (prefix: string) => {
|
|
1642
|
+
"@@TOKEN@@": true;
|
|
1643
|
+
name: string;
|
|
1644
|
+
syntax: string;
|
|
1645
|
+
tag: string | undefined;
|
|
1646
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1647
|
+
group: string | undefined;
|
|
1648
|
+
description: string | undefined;
|
|
1649
|
+
contributedBy: string | undefined;
|
|
1650
|
+
deprecated: string | boolean | undefined;
|
|
1651
|
+
initial: string | number;
|
|
1652
|
+
inherits: boolean;
|
|
1653
|
+
var: string;
|
|
1654
|
+
varFallback: (fallback: string | number) => string;
|
|
1655
|
+
assign: (value?: string | number) => string;
|
|
1656
|
+
readonly definition: string;
|
|
1657
|
+
suffixed: (suffix: string) => any;
|
|
1658
|
+
prefixed: any;
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
ref: {
|
|
1662
|
+
"@@TOKEN@@": true;
|
|
1663
|
+
name: string;
|
|
1664
|
+
syntax: string;
|
|
1665
|
+
tag: string | undefined;
|
|
1666
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1667
|
+
group: string | undefined;
|
|
1668
|
+
description: string | undefined;
|
|
1669
|
+
contributedBy: string | undefined;
|
|
1670
|
+
deprecated: string | boolean | undefined;
|
|
1671
|
+
initial: string | number;
|
|
1672
|
+
inherits: boolean;
|
|
1673
|
+
var: string;
|
|
1674
|
+
varFallback: (fallback: string | number) => string;
|
|
1675
|
+
assign: (value?: string | number) => string;
|
|
1676
|
+
readonly definition: string;
|
|
1677
|
+
suffixed: (suffix: string) => {
|
|
1678
|
+
"@@TOKEN@@": true;
|
|
1679
|
+
name: string;
|
|
1680
|
+
syntax: string;
|
|
1681
|
+
tag: string | undefined;
|
|
1682
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1683
|
+
group: string | undefined;
|
|
1684
|
+
description: string | undefined;
|
|
1685
|
+
contributedBy: string | undefined;
|
|
1686
|
+
deprecated: string | boolean | undefined;
|
|
1687
|
+
initial: string | number;
|
|
1688
|
+
inherits: boolean;
|
|
1689
|
+
var: string;
|
|
1690
|
+
varFallback: (fallback: string | number) => string;
|
|
1691
|
+
assign: (value?: string | number) => string;
|
|
1692
|
+
readonly definition: string;
|
|
1693
|
+
suffixed: any;
|
|
1694
|
+
prefixed: (prefix: string) => any;
|
|
1695
|
+
};
|
|
1696
|
+
prefixed: (prefix: string) => {
|
|
1697
|
+
"@@TOKEN@@": true;
|
|
1698
|
+
name: string;
|
|
1699
|
+
syntax: string;
|
|
1700
|
+
tag: string | undefined;
|
|
1701
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1702
|
+
group: string | undefined;
|
|
1703
|
+
description: string | undefined;
|
|
1704
|
+
contributedBy: string | undefined;
|
|
1705
|
+
deprecated: string | boolean | undefined;
|
|
1706
|
+
initial: string | number;
|
|
1707
|
+
inherits: boolean;
|
|
1708
|
+
var: string;
|
|
1709
|
+
varFallback: (fallback: string | number) => string;
|
|
1710
|
+
assign: (value?: string | number) => string;
|
|
1711
|
+
readonly definition: string;
|
|
1712
|
+
suffixed: (suffix: string) => any;
|
|
1713
|
+
prefixed: any;
|
|
1714
|
+
};
|
|
1715
|
+
};
|
|
1716
|
+
contrast: {
|
|
1717
|
+
"@@TOKEN@@": true;
|
|
1718
|
+
name: string;
|
|
1719
|
+
syntax: string;
|
|
1720
|
+
tag: string | undefined;
|
|
1721
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1722
|
+
group: string | undefined;
|
|
1723
|
+
description: string | undefined;
|
|
1724
|
+
contributedBy: string | undefined;
|
|
1725
|
+
deprecated: string | boolean | undefined;
|
|
1726
|
+
initial: string | number;
|
|
1727
|
+
inherits: boolean;
|
|
1728
|
+
var: string;
|
|
1729
|
+
varFallback: (fallback: string | number) => string;
|
|
1730
|
+
assign: (value?: string | number) => string;
|
|
1731
|
+
readonly definition: string;
|
|
1732
|
+
suffixed: (suffix: string) => {
|
|
1733
|
+
"@@TOKEN@@": true;
|
|
1734
|
+
name: string;
|
|
1735
|
+
syntax: string;
|
|
1736
|
+
tag: string | undefined;
|
|
1737
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1738
|
+
group: string | undefined;
|
|
1739
|
+
description: string | undefined;
|
|
1740
|
+
contributedBy: string | undefined;
|
|
1741
|
+
deprecated: string | boolean | undefined;
|
|
1742
|
+
initial: string | number;
|
|
1743
|
+
inherits: boolean;
|
|
1744
|
+
var: string;
|
|
1745
|
+
varFallback: (fallback: string | number) => string;
|
|
1746
|
+
assign: (value?: string | number) => string;
|
|
1747
|
+
readonly definition: string;
|
|
1748
|
+
suffixed: any;
|
|
1749
|
+
prefixed: (prefix: string) => any;
|
|
1750
|
+
};
|
|
1751
|
+
prefixed: (prefix: string) => {
|
|
1752
|
+
"@@TOKEN@@": true;
|
|
1753
|
+
name: string;
|
|
1754
|
+
syntax: string;
|
|
1755
|
+
tag: string | undefined;
|
|
1756
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1757
|
+
group: string | undefined;
|
|
1758
|
+
description: string | undefined;
|
|
1759
|
+
contributedBy: string | undefined;
|
|
1760
|
+
deprecated: string | boolean | undefined;
|
|
1761
|
+
initial: string | number;
|
|
1762
|
+
inherits: boolean;
|
|
1763
|
+
var: string;
|
|
1764
|
+
varFallback: (fallback: string | number) => string;
|
|
1765
|
+
assign: (value?: string | number) => string;
|
|
1766
|
+
readonly definition: string;
|
|
1767
|
+
suffixed: (suffix: string) => any;
|
|
1768
|
+
prefixed: any;
|
|
1769
|
+
};
|
|
1770
|
+
};
|
|
1771
|
+
}>;
|
|
1772
|
+
readonly fillLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1773
|
+
readonly name: "--source";
|
|
1774
|
+
readonly fallback: string;
|
|
1775
|
+
}], {
|
|
1776
|
+
[x: string]: {
|
|
1777
|
+
[x: string]: any;
|
|
1778
|
+
$root?: undefined;
|
|
1779
|
+
};
|
|
1780
|
+
$root?: undefined;
|
|
1781
|
+
}>;
|
|
1782
|
+
readonly fillHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1783
|
+
readonly name: "--source";
|
|
1784
|
+
readonly fallback: string;
|
|
1785
|
+
}], {
|
|
1786
|
+
[x: string]: {
|
|
1787
|
+
[x: string]: any;
|
|
1788
|
+
$root?: undefined;
|
|
1789
|
+
};
|
|
1790
|
+
$root?: undefined;
|
|
1791
|
+
}>;
|
|
1792
|
+
readonly fillDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1793
|
+
readonly name: "--source";
|
|
1794
|
+
readonly fallback: string;
|
|
1795
|
+
}], {
|
|
1796
|
+
[x: string]: {
|
|
1797
|
+
[x: string]: any;
|
|
1798
|
+
$root?: undefined;
|
|
1799
|
+
};
|
|
1800
|
+
$root?: undefined;
|
|
1801
|
+
}>;
|
|
1802
|
+
readonly fillSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1803
|
+
readonly name: "--source";
|
|
1804
|
+
readonly fallback: string;
|
|
1805
|
+
}], {
|
|
1806
|
+
[x: string]: {
|
|
1807
|
+
[x: string]: any;
|
|
1808
|
+
$root?: undefined;
|
|
1809
|
+
};
|
|
1810
|
+
$root?: undefined;
|
|
1811
|
+
}>;
|
|
1812
|
+
readonly fillFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
1813
|
+
readonly name: "--source";
|
|
1814
|
+
readonly fallback: string;
|
|
1815
|
+
}], {
|
|
1816
|
+
[x: string]: {
|
|
1817
|
+
[x: string]: any;
|
|
1818
|
+
$root?: undefined;
|
|
1819
|
+
};
|
|
1820
|
+
$root?: undefined;
|
|
1821
|
+
}>;
|
|
1822
|
+
readonly fg: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
1823
|
+
applied: {
|
|
1824
|
+
"@@TOKEN@@": true;
|
|
1825
|
+
name: string;
|
|
1826
|
+
syntax: string;
|
|
1827
|
+
tag: string | undefined;
|
|
1828
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1829
|
+
group: string | undefined;
|
|
1830
|
+
description: string | undefined;
|
|
1831
|
+
contributedBy: string | undefined;
|
|
1832
|
+
deprecated: string | boolean | undefined;
|
|
1833
|
+
initial: string | number;
|
|
1834
|
+
inherits: boolean;
|
|
1835
|
+
var: string;
|
|
1836
|
+
varFallback: (fallback: string | number) => string;
|
|
1837
|
+
assign: (value?: string | number) => string;
|
|
1838
|
+
readonly definition: string;
|
|
1839
|
+
suffixed: (suffix: string) => {
|
|
1840
|
+
"@@TOKEN@@": true;
|
|
1841
|
+
name: string;
|
|
1842
|
+
syntax: string;
|
|
1843
|
+
tag: string | undefined;
|
|
1844
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1845
|
+
group: string | undefined;
|
|
1846
|
+
description: string | undefined;
|
|
1847
|
+
contributedBy: string | undefined;
|
|
1848
|
+
deprecated: string | boolean | undefined;
|
|
1849
|
+
initial: string | number;
|
|
1850
|
+
inherits: boolean;
|
|
1851
|
+
var: string;
|
|
1852
|
+
varFallback: (fallback: string | number) => string;
|
|
1853
|
+
assign: (value?: string | number) => string;
|
|
1854
|
+
readonly definition: string;
|
|
1855
|
+
suffixed: any;
|
|
1856
|
+
prefixed: (prefix: string) => any;
|
|
1857
|
+
};
|
|
1858
|
+
prefixed: (prefix: string) => {
|
|
1859
|
+
"@@TOKEN@@": true;
|
|
1860
|
+
name: string;
|
|
1861
|
+
syntax: string;
|
|
1862
|
+
tag: string | undefined;
|
|
1863
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1864
|
+
group: string | undefined;
|
|
1865
|
+
description: string | undefined;
|
|
1866
|
+
contributedBy: string | undefined;
|
|
1867
|
+
deprecated: string | boolean | undefined;
|
|
1868
|
+
initial: string | number;
|
|
1869
|
+
inherits: boolean;
|
|
1870
|
+
var: string;
|
|
1871
|
+
varFallback: (fallback: string | number) => string;
|
|
1872
|
+
assign: (value?: string | number) => string;
|
|
1873
|
+
readonly definition: string;
|
|
1874
|
+
suffixed: (suffix: string) => any;
|
|
1875
|
+
prefixed: any;
|
|
1876
|
+
};
|
|
1877
|
+
};
|
|
1878
|
+
ref: {
|
|
1879
|
+
"@@TOKEN@@": true;
|
|
1880
|
+
name: string;
|
|
1881
|
+
syntax: string;
|
|
1882
|
+
tag: string | undefined;
|
|
1883
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1884
|
+
group: string | undefined;
|
|
1885
|
+
description: string | undefined;
|
|
1886
|
+
contributedBy: string | undefined;
|
|
1887
|
+
deprecated: string | boolean | undefined;
|
|
1888
|
+
initial: string | number;
|
|
1889
|
+
inherits: boolean;
|
|
1890
|
+
var: string;
|
|
1891
|
+
varFallback: (fallback: string | number) => string;
|
|
1892
|
+
assign: (value?: string | number) => string;
|
|
1893
|
+
readonly definition: string;
|
|
1894
|
+
suffixed: (suffix: string) => {
|
|
1895
|
+
"@@TOKEN@@": true;
|
|
1896
|
+
name: string;
|
|
1897
|
+
syntax: string;
|
|
1898
|
+
tag: string | undefined;
|
|
1899
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1900
|
+
group: string | undefined;
|
|
1901
|
+
description: string | undefined;
|
|
1902
|
+
contributedBy: string | undefined;
|
|
1903
|
+
deprecated: string | boolean | undefined;
|
|
1904
|
+
initial: string | number;
|
|
1905
|
+
inherits: boolean;
|
|
1906
|
+
var: string;
|
|
1907
|
+
varFallback: (fallback: string | number) => string;
|
|
1908
|
+
assign: (value?: string | number) => string;
|
|
1909
|
+
readonly definition: string;
|
|
1910
|
+
suffixed: any;
|
|
1911
|
+
prefixed: (prefix: string) => any;
|
|
1912
|
+
};
|
|
1913
|
+
prefixed: (prefix: string) => {
|
|
1914
|
+
"@@TOKEN@@": true;
|
|
1915
|
+
name: string;
|
|
1916
|
+
syntax: string;
|
|
1917
|
+
tag: string | undefined;
|
|
1918
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1919
|
+
group: string | undefined;
|
|
1920
|
+
description: string | undefined;
|
|
1921
|
+
contributedBy: string | undefined;
|
|
1922
|
+
deprecated: string | boolean | undefined;
|
|
1923
|
+
initial: string | number;
|
|
1924
|
+
inherits: boolean;
|
|
1925
|
+
var: string;
|
|
1926
|
+
varFallback: (fallback: string | number) => string;
|
|
1927
|
+
assign: (value?: string | number) => string;
|
|
1928
|
+
readonly definition: string;
|
|
1929
|
+
suffixed: (suffix: string) => any;
|
|
1930
|
+
prefixed: any;
|
|
1931
|
+
};
|
|
1932
|
+
};
|
|
1933
|
+
contrast: {
|
|
1934
|
+
"@@TOKEN@@": true;
|
|
1935
|
+
name: string;
|
|
1936
|
+
syntax: string;
|
|
1937
|
+
tag: string | undefined;
|
|
1938
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1939
|
+
group: string | undefined;
|
|
1940
|
+
description: string | undefined;
|
|
1941
|
+
contributedBy: string | undefined;
|
|
1942
|
+
deprecated: string | boolean | undefined;
|
|
1943
|
+
initial: string | number;
|
|
1944
|
+
inherits: boolean;
|
|
1945
|
+
var: string;
|
|
1946
|
+
varFallback: (fallback: string | number) => string;
|
|
1947
|
+
assign: (value?: string | number) => string;
|
|
1948
|
+
readonly definition: string;
|
|
1949
|
+
suffixed: (suffix: string) => {
|
|
1950
|
+
"@@TOKEN@@": true;
|
|
1951
|
+
name: string;
|
|
1952
|
+
syntax: string;
|
|
1953
|
+
tag: string | undefined;
|
|
1954
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1955
|
+
group: string | undefined;
|
|
1956
|
+
description: string | undefined;
|
|
1957
|
+
contributedBy: string | undefined;
|
|
1958
|
+
deprecated: string | boolean | undefined;
|
|
1959
|
+
initial: string | number;
|
|
1960
|
+
inherits: boolean;
|
|
1961
|
+
var: string;
|
|
1962
|
+
varFallback: (fallback: string | number) => string;
|
|
1963
|
+
assign: (value?: string | number) => string;
|
|
1964
|
+
readonly definition: string;
|
|
1965
|
+
suffixed: any;
|
|
1966
|
+
prefixed: (prefix: string) => any;
|
|
1967
|
+
};
|
|
1968
|
+
prefixed: (prefix: string) => {
|
|
1969
|
+
"@@TOKEN@@": true;
|
|
1970
|
+
name: string;
|
|
1971
|
+
syntax: string;
|
|
1972
|
+
tag: string | undefined;
|
|
1973
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
1974
|
+
group: string | undefined;
|
|
1975
|
+
description: string | undefined;
|
|
1976
|
+
contributedBy: string | undefined;
|
|
1977
|
+
deprecated: string | boolean | undefined;
|
|
1978
|
+
initial: string | number;
|
|
1979
|
+
inherits: boolean;
|
|
1980
|
+
var: string;
|
|
1981
|
+
varFallback: (fallback: string | number) => string;
|
|
1982
|
+
assign: (value?: string | number) => string;
|
|
1983
|
+
readonly definition: string;
|
|
1984
|
+
suffixed: (suffix: string) => any;
|
|
1985
|
+
prefixed: any;
|
|
1986
|
+
};
|
|
1987
|
+
};
|
|
1988
|
+
}>;
|
|
1989
|
+
readonly fgLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
1990
|
+
readonly name: "--source";
|
|
1991
|
+
readonly fallback: string;
|
|
1992
|
+
}], {
|
|
1993
|
+
[x: string]: {
|
|
1994
|
+
[x: string]: any;
|
|
1995
|
+
$root?: undefined;
|
|
1996
|
+
};
|
|
1997
|
+
$root?: undefined;
|
|
1998
|
+
}>;
|
|
1999
|
+
readonly fgHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2000
|
+
readonly name: "--source";
|
|
2001
|
+
readonly fallback: string;
|
|
2002
|
+
}], {
|
|
2003
|
+
[x: string]: {
|
|
2004
|
+
[x: string]: any;
|
|
2005
|
+
$root?: undefined;
|
|
2006
|
+
};
|
|
2007
|
+
$root?: undefined;
|
|
2008
|
+
}>;
|
|
2009
|
+
readonly fgDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2010
|
+
readonly name: "--source";
|
|
2011
|
+
readonly fallback: string;
|
|
2012
|
+
}], {
|
|
2013
|
+
[x: string]: {
|
|
2014
|
+
[x: string]: any;
|
|
2015
|
+
$root?: undefined;
|
|
2016
|
+
};
|
|
2017
|
+
$root?: undefined;
|
|
2018
|
+
}>;
|
|
2019
|
+
readonly fgSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2020
|
+
readonly name: "--source";
|
|
2021
|
+
readonly fallback: string;
|
|
2022
|
+
}], {
|
|
2023
|
+
[x: string]: {
|
|
2024
|
+
[x: string]: any;
|
|
2025
|
+
$root?: undefined;
|
|
2026
|
+
};
|
|
2027
|
+
$root?: undefined;
|
|
2028
|
+
}>;
|
|
2029
|
+
readonly fgFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
2030
|
+
readonly name: "--source";
|
|
2031
|
+
readonly fallback: string;
|
|
2032
|
+
}], {
|
|
2033
|
+
[x: string]: {
|
|
2034
|
+
[x: string]: any;
|
|
2035
|
+
$root?: undefined;
|
|
2036
|
+
};
|
|
2037
|
+
$root?: undefined;
|
|
2038
|
+
}>;
|
|
2039
|
+
readonly stroke: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
2040
|
+
applied: {
|
|
2041
|
+
"@@TOKEN@@": true;
|
|
2042
|
+
name: string;
|
|
2043
|
+
syntax: string;
|
|
2044
|
+
tag: string | undefined;
|
|
2045
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2046
|
+
group: string | undefined;
|
|
2047
|
+
description: string | undefined;
|
|
2048
|
+
contributedBy: string | undefined;
|
|
2049
|
+
deprecated: string | boolean | undefined;
|
|
2050
|
+
initial: string | number;
|
|
2051
|
+
inherits: boolean;
|
|
2052
|
+
var: string;
|
|
2053
|
+
varFallback: (fallback: string | number) => string;
|
|
2054
|
+
assign: (value?: string | number) => string;
|
|
2055
|
+
readonly definition: string;
|
|
2056
|
+
suffixed: (suffix: string) => {
|
|
2057
|
+
"@@TOKEN@@": true;
|
|
2058
|
+
name: string;
|
|
2059
|
+
syntax: string;
|
|
2060
|
+
tag: string | undefined;
|
|
2061
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2062
|
+
group: string | undefined;
|
|
2063
|
+
description: string | undefined;
|
|
2064
|
+
contributedBy: string | undefined;
|
|
2065
|
+
deprecated: string | boolean | undefined;
|
|
2066
|
+
initial: string | number;
|
|
2067
|
+
inherits: boolean;
|
|
2068
|
+
var: string;
|
|
2069
|
+
varFallback: (fallback: string | number) => string;
|
|
2070
|
+
assign: (value?: string | number) => string;
|
|
2071
|
+
readonly definition: string;
|
|
2072
|
+
suffixed: any;
|
|
2073
|
+
prefixed: (prefix: string) => any;
|
|
2074
|
+
};
|
|
2075
|
+
prefixed: (prefix: string) => {
|
|
2076
|
+
"@@TOKEN@@": true;
|
|
2077
|
+
name: string;
|
|
2078
|
+
syntax: string;
|
|
2079
|
+
tag: string | undefined;
|
|
2080
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2081
|
+
group: string | undefined;
|
|
2082
|
+
description: string | undefined;
|
|
2083
|
+
contributedBy: string | undefined;
|
|
2084
|
+
deprecated: string | boolean | undefined;
|
|
2085
|
+
initial: string | number;
|
|
2086
|
+
inherits: boolean;
|
|
2087
|
+
var: string;
|
|
2088
|
+
varFallback: (fallback: string | number) => string;
|
|
2089
|
+
assign: (value?: string | number) => string;
|
|
2090
|
+
readonly definition: string;
|
|
2091
|
+
suffixed: (suffix: string) => any;
|
|
2092
|
+
prefixed: any;
|
|
2093
|
+
};
|
|
2094
|
+
};
|
|
2095
|
+
ref: {
|
|
2096
|
+
"@@TOKEN@@": true;
|
|
2097
|
+
name: string;
|
|
2098
|
+
syntax: string;
|
|
2099
|
+
tag: string | undefined;
|
|
2100
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2101
|
+
group: string | undefined;
|
|
2102
|
+
description: string | undefined;
|
|
2103
|
+
contributedBy: string | undefined;
|
|
2104
|
+
deprecated: string | boolean | undefined;
|
|
2105
|
+
initial: string | number;
|
|
2106
|
+
inherits: boolean;
|
|
2107
|
+
var: string;
|
|
2108
|
+
varFallback: (fallback: string | number) => string;
|
|
2109
|
+
assign: (value?: string | number) => string;
|
|
2110
|
+
readonly definition: string;
|
|
2111
|
+
suffixed: (suffix: string) => {
|
|
2112
|
+
"@@TOKEN@@": true;
|
|
2113
|
+
name: string;
|
|
2114
|
+
syntax: string;
|
|
2115
|
+
tag: string | undefined;
|
|
2116
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2117
|
+
group: string | undefined;
|
|
2118
|
+
description: string | undefined;
|
|
2119
|
+
contributedBy: string | undefined;
|
|
2120
|
+
deprecated: string | boolean | undefined;
|
|
2121
|
+
initial: string | number;
|
|
2122
|
+
inherits: boolean;
|
|
2123
|
+
var: string;
|
|
2124
|
+
varFallback: (fallback: string | number) => string;
|
|
2125
|
+
assign: (value?: string | number) => string;
|
|
2126
|
+
readonly definition: string;
|
|
2127
|
+
suffixed: any;
|
|
2128
|
+
prefixed: (prefix: string) => any;
|
|
2129
|
+
};
|
|
2130
|
+
prefixed: (prefix: string) => {
|
|
2131
|
+
"@@TOKEN@@": true;
|
|
2132
|
+
name: string;
|
|
2133
|
+
syntax: string;
|
|
2134
|
+
tag: string | undefined;
|
|
2135
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2136
|
+
group: string | undefined;
|
|
2137
|
+
description: string | undefined;
|
|
2138
|
+
contributedBy: string | undefined;
|
|
2139
|
+
deprecated: string | boolean | undefined;
|
|
2140
|
+
initial: string | number;
|
|
2141
|
+
inherits: boolean;
|
|
2142
|
+
var: string;
|
|
2143
|
+
varFallback: (fallback: string | number) => string;
|
|
2144
|
+
assign: (value?: string | number) => string;
|
|
2145
|
+
readonly definition: string;
|
|
2146
|
+
suffixed: (suffix: string) => any;
|
|
2147
|
+
prefixed: any;
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
contrast: {
|
|
2151
|
+
"@@TOKEN@@": true;
|
|
2152
|
+
name: string;
|
|
2153
|
+
syntax: string;
|
|
2154
|
+
tag: string | undefined;
|
|
2155
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2156
|
+
group: string | undefined;
|
|
2157
|
+
description: string | undefined;
|
|
2158
|
+
contributedBy: string | undefined;
|
|
2159
|
+
deprecated: string | boolean | undefined;
|
|
2160
|
+
initial: string | number;
|
|
2161
|
+
inherits: boolean;
|
|
2162
|
+
var: string;
|
|
2163
|
+
varFallback: (fallback: string | number) => string;
|
|
2164
|
+
assign: (value?: string | number) => string;
|
|
2165
|
+
readonly definition: string;
|
|
2166
|
+
suffixed: (suffix: string) => {
|
|
2167
|
+
"@@TOKEN@@": true;
|
|
2168
|
+
name: string;
|
|
2169
|
+
syntax: string;
|
|
2170
|
+
tag: string | undefined;
|
|
2171
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2172
|
+
group: string | undefined;
|
|
2173
|
+
description: string | undefined;
|
|
2174
|
+
contributedBy: string | undefined;
|
|
2175
|
+
deprecated: string | boolean | undefined;
|
|
2176
|
+
initial: string | number;
|
|
2177
|
+
inherits: boolean;
|
|
2178
|
+
var: string;
|
|
2179
|
+
varFallback: (fallback: string | number) => string;
|
|
2180
|
+
assign: (value?: string | number) => string;
|
|
2181
|
+
readonly definition: string;
|
|
2182
|
+
suffixed: any;
|
|
2183
|
+
prefixed: (prefix: string) => any;
|
|
2184
|
+
};
|
|
2185
|
+
prefixed: (prefix: string) => {
|
|
2186
|
+
"@@TOKEN@@": true;
|
|
2187
|
+
name: string;
|
|
2188
|
+
syntax: string;
|
|
2189
|
+
tag: string | undefined;
|
|
2190
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2191
|
+
group: string | undefined;
|
|
2192
|
+
description: string | undefined;
|
|
2193
|
+
contributedBy: string | undefined;
|
|
2194
|
+
deprecated: string | boolean | undefined;
|
|
2195
|
+
initial: string | number;
|
|
2196
|
+
inherits: boolean;
|
|
2197
|
+
var: string;
|
|
2198
|
+
varFallback: (fallback: string | number) => string;
|
|
2199
|
+
assign: (value?: string | number) => string;
|
|
2200
|
+
readonly definition: string;
|
|
2201
|
+
suffixed: (suffix: string) => any;
|
|
2202
|
+
prefixed: any;
|
|
2203
|
+
};
|
|
2204
|
+
};
|
|
2205
|
+
}>;
|
|
2206
|
+
readonly strokeLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2207
|
+
readonly name: "--source";
|
|
2208
|
+
readonly fallback: string;
|
|
2209
|
+
}], {
|
|
2210
|
+
[x: string]: {
|
|
2211
|
+
[x: string]: any;
|
|
2212
|
+
$root?: undefined;
|
|
2213
|
+
};
|
|
2214
|
+
$root?: undefined;
|
|
2215
|
+
}>;
|
|
2216
|
+
readonly strokeHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2217
|
+
readonly name: "--source";
|
|
2218
|
+
readonly fallback: string;
|
|
2219
|
+
}], {
|
|
2220
|
+
[x: string]: {
|
|
2221
|
+
[x: string]: any;
|
|
2222
|
+
$root?: undefined;
|
|
2223
|
+
};
|
|
2224
|
+
$root?: undefined;
|
|
2225
|
+
}>;
|
|
2226
|
+
readonly strokeDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2227
|
+
readonly name: "--source";
|
|
2228
|
+
readonly fallback: string;
|
|
2229
|
+
}], {
|
|
2230
|
+
[x: string]: {
|
|
2231
|
+
[x: string]: any;
|
|
2232
|
+
$root?: undefined;
|
|
2233
|
+
};
|
|
2234
|
+
$root?: undefined;
|
|
2235
|
+
}>;
|
|
2236
|
+
readonly strokeSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2237
|
+
readonly name: "--source";
|
|
2238
|
+
readonly fallback: string;
|
|
2239
|
+
}], {
|
|
2240
|
+
[x: string]: {
|
|
2241
|
+
[x: string]: any;
|
|
2242
|
+
$root?: undefined;
|
|
2243
|
+
};
|
|
2244
|
+
$root?: undefined;
|
|
2245
|
+
}>;
|
|
2246
|
+
readonly strokeFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
2247
|
+
readonly name: "--source";
|
|
2248
|
+
readonly fallback: string;
|
|
2249
|
+
}], {
|
|
2250
|
+
[x: string]: {
|
|
2251
|
+
[x: string]: any;
|
|
2252
|
+
$root?: undefined;
|
|
2253
|
+
};
|
|
2254
|
+
$root?: undefined;
|
|
2255
|
+
}>;
|
|
2256
|
+
}, "control" | "borderColor" | "borderColorLighter" | "borderColorHeavier" | "borderColorDesaturated" | "borderColorSaturated" | "borderColorFaded" | "actionPrimary" | "actionSecondary" | "actionAmbient" | "surfacePrimary" | "surfaceSecondary" | "surfaceAmbient" | "prosePrimary" | "proseSecondary" | "proseAmbient" | "animation"> & {
|
|
2257
|
+
borderColor: import("@arbor-css/core").ArborMixin<readonly ["--color"], {
|
|
2258
|
+
applied: {
|
|
2259
|
+
"@@TOKEN@@": true;
|
|
2260
|
+
name: string;
|
|
2261
|
+
syntax: string;
|
|
2262
|
+
tag: string | undefined;
|
|
2263
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2264
|
+
group: string | undefined;
|
|
2265
|
+
description: string | undefined;
|
|
2266
|
+
contributedBy: string | undefined;
|
|
2267
|
+
deprecated: string | boolean | undefined;
|
|
2268
|
+
initial: string | number;
|
|
2269
|
+
inherits: boolean;
|
|
2270
|
+
var: string;
|
|
2271
|
+
varFallback: (fallback: string | number) => string;
|
|
2272
|
+
assign: (value?: string | number) => string;
|
|
2273
|
+
readonly definition: string;
|
|
2274
|
+
suffixed: (suffix: string) => {
|
|
2275
|
+
"@@TOKEN@@": true;
|
|
2276
|
+
name: string;
|
|
2277
|
+
syntax: string;
|
|
2278
|
+
tag: string | undefined;
|
|
2279
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2280
|
+
group: string | undefined;
|
|
2281
|
+
description: string | undefined;
|
|
2282
|
+
contributedBy: string | undefined;
|
|
2283
|
+
deprecated: string | boolean | undefined;
|
|
2284
|
+
initial: string | number;
|
|
2285
|
+
inherits: boolean;
|
|
2286
|
+
var: string;
|
|
2287
|
+
varFallback: (fallback: string | number) => string;
|
|
2288
|
+
assign: (value?: string | number) => string;
|
|
2289
|
+
readonly definition: string;
|
|
2290
|
+
suffixed: any;
|
|
2291
|
+
prefixed: (prefix: string) => any;
|
|
2292
|
+
};
|
|
2293
|
+
prefixed: (prefix: string) => {
|
|
2294
|
+
"@@TOKEN@@": true;
|
|
2295
|
+
name: string;
|
|
2296
|
+
syntax: string;
|
|
2297
|
+
tag: string | undefined;
|
|
2298
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2299
|
+
group: string | undefined;
|
|
2300
|
+
description: string | undefined;
|
|
2301
|
+
contributedBy: string | undefined;
|
|
2302
|
+
deprecated: string | boolean | undefined;
|
|
2303
|
+
initial: string | number;
|
|
2304
|
+
inherits: boolean;
|
|
2305
|
+
var: string;
|
|
2306
|
+
varFallback: (fallback: string | number) => string;
|
|
2307
|
+
assign: (value?: string | number) => string;
|
|
2308
|
+
readonly definition: string;
|
|
2309
|
+
suffixed: (suffix: string) => any;
|
|
2310
|
+
prefixed: any;
|
|
2311
|
+
};
|
|
2312
|
+
};
|
|
2313
|
+
ref: {
|
|
2314
|
+
"@@TOKEN@@": true;
|
|
2315
|
+
name: string;
|
|
2316
|
+
syntax: string;
|
|
2317
|
+
tag: string | undefined;
|
|
2318
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2319
|
+
group: string | undefined;
|
|
2320
|
+
description: string | undefined;
|
|
2321
|
+
contributedBy: string | undefined;
|
|
2322
|
+
deprecated: string | boolean | undefined;
|
|
2323
|
+
initial: string | number;
|
|
2324
|
+
inherits: boolean;
|
|
2325
|
+
var: string;
|
|
2326
|
+
varFallback: (fallback: string | number) => string;
|
|
2327
|
+
assign: (value?: string | number) => string;
|
|
2328
|
+
readonly definition: string;
|
|
2329
|
+
suffixed: (suffix: string) => {
|
|
2330
|
+
"@@TOKEN@@": true;
|
|
2331
|
+
name: string;
|
|
2332
|
+
syntax: string;
|
|
2333
|
+
tag: string | undefined;
|
|
2334
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2335
|
+
group: string | undefined;
|
|
2336
|
+
description: string | undefined;
|
|
2337
|
+
contributedBy: string | undefined;
|
|
2338
|
+
deprecated: string | boolean | undefined;
|
|
2339
|
+
initial: string | number;
|
|
2340
|
+
inherits: boolean;
|
|
2341
|
+
var: string;
|
|
2342
|
+
varFallback: (fallback: string | number) => string;
|
|
2343
|
+
assign: (value?: string | number) => string;
|
|
2344
|
+
readonly definition: string;
|
|
2345
|
+
suffixed: any;
|
|
2346
|
+
prefixed: (prefix: string) => any;
|
|
2347
|
+
};
|
|
2348
|
+
prefixed: (prefix: string) => {
|
|
2349
|
+
"@@TOKEN@@": true;
|
|
2350
|
+
name: string;
|
|
2351
|
+
syntax: string;
|
|
2352
|
+
tag: string | undefined;
|
|
2353
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2354
|
+
group: string | undefined;
|
|
2355
|
+
description: string | undefined;
|
|
2356
|
+
contributedBy: string | undefined;
|
|
2357
|
+
deprecated: string | boolean | undefined;
|
|
2358
|
+
initial: string | number;
|
|
2359
|
+
inherits: boolean;
|
|
2360
|
+
var: string;
|
|
2361
|
+
varFallback: (fallback: string | number) => string;
|
|
2362
|
+
assign: (value?: string | number) => string;
|
|
2363
|
+
readonly definition: string;
|
|
2364
|
+
suffixed: (suffix: string) => any;
|
|
2365
|
+
prefixed: any;
|
|
2366
|
+
};
|
|
2367
|
+
};
|
|
2368
|
+
contrast: {
|
|
2369
|
+
"@@TOKEN@@": true;
|
|
2370
|
+
name: string;
|
|
2371
|
+
syntax: string;
|
|
2372
|
+
tag: string | undefined;
|
|
2373
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2374
|
+
group: string | undefined;
|
|
2375
|
+
description: string | undefined;
|
|
2376
|
+
contributedBy: string | undefined;
|
|
2377
|
+
deprecated: string | boolean | undefined;
|
|
2378
|
+
initial: string | number;
|
|
2379
|
+
inherits: boolean;
|
|
2380
|
+
var: string;
|
|
2381
|
+
varFallback: (fallback: string | number) => string;
|
|
2382
|
+
assign: (value?: string | number) => string;
|
|
2383
|
+
readonly definition: string;
|
|
2384
|
+
suffixed: (suffix: string) => {
|
|
2385
|
+
"@@TOKEN@@": true;
|
|
2386
|
+
name: string;
|
|
2387
|
+
syntax: string;
|
|
2388
|
+
tag: string | undefined;
|
|
2389
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2390
|
+
group: string | undefined;
|
|
2391
|
+
description: string | undefined;
|
|
2392
|
+
contributedBy: string | undefined;
|
|
2393
|
+
deprecated: string | boolean | undefined;
|
|
2394
|
+
initial: string | number;
|
|
2395
|
+
inherits: boolean;
|
|
2396
|
+
var: string;
|
|
2397
|
+
varFallback: (fallback: string | number) => string;
|
|
2398
|
+
assign: (value?: string | number) => string;
|
|
2399
|
+
readonly definition: string;
|
|
2400
|
+
suffixed: any;
|
|
2401
|
+
prefixed: (prefix: string) => any;
|
|
2402
|
+
};
|
|
2403
|
+
prefixed: (prefix: string) => {
|
|
2404
|
+
"@@TOKEN@@": true;
|
|
2405
|
+
name: string;
|
|
2406
|
+
syntax: string;
|
|
2407
|
+
tag: string | undefined;
|
|
2408
|
+
purpose: import("@arbor-css/core").TokenPurpose;
|
|
2409
|
+
group: string | undefined;
|
|
2410
|
+
description: string | undefined;
|
|
2411
|
+
contributedBy: string | undefined;
|
|
2412
|
+
deprecated: string | boolean | undefined;
|
|
2413
|
+
initial: string | number;
|
|
2414
|
+
inherits: boolean;
|
|
2415
|
+
var: string;
|
|
2416
|
+
varFallback: (fallback: string | number) => string;
|
|
2417
|
+
assign: (value?: string | number) => string;
|
|
2418
|
+
readonly definition: string;
|
|
2419
|
+
suffixed: (suffix: string) => any;
|
|
2420
|
+
prefixed: any;
|
|
2421
|
+
};
|
|
2422
|
+
};
|
|
2423
|
+
}>;
|
|
2424
|
+
borderColorLighter: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2425
|
+
readonly name: "--source";
|
|
2426
|
+
readonly fallback: string;
|
|
2427
|
+
}], {
|
|
2428
|
+
[x: string]: {
|
|
2429
|
+
[x: string]: any;
|
|
2430
|
+
$root?: undefined;
|
|
2431
|
+
};
|
|
2432
|
+
$root?: undefined;
|
|
2433
|
+
}>;
|
|
2434
|
+
borderColorHeavier: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2435
|
+
readonly name: "--source";
|
|
2436
|
+
readonly fallback: string;
|
|
2437
|
+
}], {
|
|
2438
|
+
[x: string]: {
|
|
2439
|
+
[x: string]: any;
|
|
2440
|
+
$root?: undefined;
|
|
2441
|
+
};
|
|
2442
|
+
$root?: undefined;
|
|
2443
|
+
}>;
|
|
2444
|
+
borderColorDesaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2445
|
+
readonly name: "--source";
|
|
2446
|
+
readonly fallback: string;
|
|
2447
|
+
}], {
|
|
2448
|
+
[x: string]: {
|
|
2449
|
+
[x: string]: any;
|
|
2450
|
+
$root?: undefined;
|
|
2451
|
+
};
|
|
2452
|
+
$root?: undefined;
|
|
2453
|
+
}>;
|
|
2454
|
+
borderColorSaturated: import("@arbor-css/core").ArborMixin<readonly ["--step", {
|
|
2455
|
+
readonly name: "--source";
|
|
2456
|
+
readonly fallback: string;
|
|
2457
|
+
}], {
|
|
2458
|
+
[x: string]: {
|
|
2459
|
+
[x: string]: any;
|
|
2460
|
+
$root?: undefined;
|
|
2461
|
+
};
|
|
2462
|
+
$root?: undefined;
|
|
2463
|
+
}>;
|
|
2464
|
+
borderColorFaded: import("@arbor-css/core").ArborMixin<readonly ["--opacity", {
|
|
2465
|
+
readonly name: "--source";
|
|
2466
|
+
readonly fallback: string;
|
|
2467
|
+
}], {
|
|
2468
|
+
[x: string]: {
|
|
2469
|
+
[x: string]: any;
|
|
2470
|
+
$root?: undefined;
|
|
2471
|
+
};
|
|
2472
|
+
$root?: undefined;
|
|
2473
|
+
}>;
|
|
2474
|
+
actionPrimary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2475
|
+
[x: string]: {
|
|
2476
|
+
[x: string]: any;
|
|
2477
|
+
$root?: undefined;
|
|
2478
|
+
};
|
|
2479
|
+
$root?: undefined;
|
|
2480
|
+
}>;
|
|
2481
|
+
actionSecondary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2482
|
+
[x: string]: {
|
|
2483
|
+
[x: string]: any;
|
|
2484
|
+
$root?: undefined;
|
|
2485
|
+
};
|
|
2486
|
+
$root?: undefined;
|
|
2487
|
+
}>;
|
|
2488
|
+
actionAmbient: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2489
|
+
[x: string]: {
|
|
2490
|
+
[x: string]: any;
|
|
2491
|
+
$root?: undefined;
|
|
2492
|
+
};
|
|
2493
|
+
$root?: undefined;
|
|
2494
|
+
}>;
|
|
2495
|
+
surfacePrimary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2496
|
+
[x: string]: {
|
|
2497
|
+
[x: string]: any;
|
|
2498
|
+
$root?: undefined;
|
|
2499
|
+
};
|
|
2500
|
+
$root?: undefined;
|
|
2501
|
+
}>;
|
|
2502
|
+
surfaceSecondary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2503
|
+
[x: string]: {
|
|
2504
|
+
[x: string]: any;
|
|
2505
|
+
$root?: undefined;
|
|
2506
|
+
};
|
|
2507
|
+
$root?: undefined;
|
|
2508
|
+
}>;
|
|
2509
|
+
surfaceAmbient: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2510
|
+
[x: string]: {
|
|
2511
|
+
[x: string]: any;
|
|
2512
|
+
$root?: undefined;
|
|
2513
|
+
};
|
|
2514
|
+
$root?: undefined;
|
|
2515
|
+
}>;
|
|
2516
|
+
control: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2517
|
+
[x: string]: {
|
|
2518
|
+
[x: string]: any;
|
|
2519
|
+
$root?: undefined;
|
|
2520
|
+
};
|
|
2521
|
+
$root?: undefined;
|
|
2522
|
+
}>;
|
|
2523
|
+
prosePrimary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2524
|
+
[x: string]: {
|
|
2525
|
+
[x: string]: any;
|
|
2526
|
+
$root?: undefined;
|
|
2527
|
+
};
|
|
2528
|
+
$root?: undefined;
|
|
2529
|
+
}>;
|
|
2530
|
+
proseSecondary: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2531
|
+
[x: string]: {
|
|
2532
|
+
[x: string]: any;
|
|
2533
|
+
$root?: undefined;
|
|
2534
|
+
};
|
|
2535
|
+
$root?: undefined;
|
|
2536
|
+
}>;
|
|
2537
|
+
proseAmbient: import("@arbor-css/core").ArborMixin<import("@arbor-css/core").FunctionParams, {
|
|
2538
|
+
[x: string]: {
|
|
2539
|
+
[x: string]: any;
|
|
2540
|
+
$root?: undefined;
|
|
2541
|
+
};
|
|
2542
|
+
$root?: undefined;
|
|
2543
|
+
}>;
|
|
2544
|
+
animation: import("@arbor-css/core").ArborMixin<{
|
|
2545
|
+
name: "--name";
|
|
2546
|
+
syntax: string;
|
|
2547
|
+
}[], {
|
|
2548
|
+
[x: string]: {
|
|
2549
|
+
[x: string]: any;
|
|
2550
|
+
$root?: undefined;
|
|
2551
|
+
};
|
|
2552
|
+
$root?: undefined;
|
|
2553
|
+
}>;
|
|
2554
|
+
}, "focus" | "hover" | "active" | "actionLight" | "disabled"> & {
|
|
2555
|
+
actionLight: import("@arbor-css/core").ArborMixin<any, {
|
|
2556
|
+
[x: string]: {
|
|
2557
|
+
[x: string]: /*elided*/ any;
|
|
2558
|
+
$root?: undefined;
|
|
2559
|
+
};
|
|
2560
|
+
$root?: undefined;
|
|
2561
|
+
}>;
|
|
2562
|
+
hover: import("@arbor-css/core").ArborMixin<any, {
|
|
2563
|
+
[x: string]: {
|
|
2564
|
+
[x: string]: /*elided*/ any;
|
|
2565
|
+
$root?: undefined;
|
|
2566
|
+
};
|
|
2567
|
+
$root?: undefined;
|
|
2568
|
+
}>;
|
|
2569
|
+
focus: import("@arbor-css/core").ArborMixin<any, {
|
|
2570
|
+
[x: string]: {
|
|
2571
|
+
[x: string]: /*elided*/ any;
|
|
2572
|
+
$root?: undefined;
|
|
2573
|
+
};
|
|
2574
|
+
$root?: undefined;
|
|
2575
|
+
}>;
|
|
2576
|
+
active: import("@arbor-css/core").ArborMixin<any, {
|
|
2577
|
+
[x: string]: {
|
|
2578
|
+
[x: string]: /*elided*/ any;
|
|
2579
|
+
$root?: undefined;
|
|
2580
|
+
};
|
|
2581
|
+
$root?: undefined;
|
|
2582
|
+
}>;
|
|
2583
|
+
disabled: import("@arbor-css/core").ArborMixin<any, {
|
|
2584
|
+
[x: string]: {
|
|
2585
|
+
[x: string]: /*elided*/ any;
|
|
2586
|
+
$root?: undefined;
|
|
2587
|
+
};
|
|
2588
|
+
$root?: undefined;
|
|
2589
|
+
}>;
|
|
2590
|
+
}>;
|