@gem-sdk/styles 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +1 -0
  2. package/dist/base.css +90 -0
  3. package/dist/base.min.css +1 -0
  4. package/dist/builder.css +102 -0
  5. package/dist/builder.min.css +1 -0
  6. package/dist/utility.css +6034 -0
  7. package/dist/utility.min.css +1 -0
  8. package/package.json +47 -0
  9. package/src/css/all.css +98 -0
  10. package/src/css/builds/base.css +93 -0
  11. package/src/css/builds/builder.css +96 -0
  12. package/src/css/builds/utility.css +6 -0
  13. package/src/css/helpers/_background.css +15 -0
  14. package/src/css/helpers/_layout.css +23 -0
  15. package/src/css/helpers/_position.css +40 -0
  16. package/src/css/helpers/_shadows.css +61 -0
  17. package/src/css/helpers/_spacing.css +21 -0
  18. package/src/css/helpers/_transform.css +36 -0
  19. package/src/css/helpers/_typography.css +54 -0
  20. package/src/css/medias.css +2 -0
  21. package/src/css/mixins.css +133 -0
  22. package/src/css/utilities/_background.css +22 -0
  23. package/src/css/utilities/_border.css +21 -0
  24. package/src/css/utilities/_flex.css +12 -0
  25. package/src/css/utilities/_grid.css +15 -0
  26. package/src/css/utilities/_interact.css +8 -0
  27. package/src/css/utilities/_layout.css +12 -0
  28. package/src/css/utilities/_misc.css +12 -0
  29. package/src/css/utilities/_overflow.css +3 -0
  30. package/src/css/utilities/_sizing.css +7 -0
  31. package/src/css/utilities/_spacing.css +13 -0
  32. package/src/css/utilities/_transform.css +4 -0
  33. package/src/css/utilities/_transition.css +6 -0
  34. package/src/css/utilities/_typography.css +33 -0
  35. package/src/css/utilities/all.css +113 -0
  36. package/src/css/variables.css +1 -0
  37. package/src/index.js +5 -0
  38. package/src/plugins/animation.js +109 -0
  39. package/src/plugins/components.js +59 -0
  40. package/src/plugins/contain-intrinsic-size.js +34 -0
  41. package/src/plugins/custom-variants.js +12 -0
  42. package/src/plugins/heading.js +32 -0
  43. package/src/plugins/size.js +20 -0
  44. package/src/plugins/typography.js +97 -0
  45. package/src/preset.js +130 -0
  46. package/src/properties.js +730 -0
  47. package/types/common.d.ts +11 -0
  48. package/types/globals.d.ts +2671 -0
  49. package/types/index.d.ts +9 -0
  50. package/types/types.d.ts +100 -0
@@ -0,0 +1,2671 @@
1
+ declare namespace React {
2
+ // Inject additional properties on express.Request
3
+ export interface CSSProperties extends CSS.Properties<string | number> {
4
+ /**
5
+ * The index signature was removed to enable closed typing for style
6
+ * using CSSType. You're able to use type assertion or module augmentation
7
+ * to add properties or an index signature of your own.
8
+ *
9
+ * For examples and more information, visit:
10
+ * https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
11
+ */
12
+
13
+ /**
14
+ * **CSS Property**: `align-content`
15
+ *
16
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-content
17
+ */
18
+
19
+ '--ac'?: CSSProperties['alignContent'];
20
+ '--hvr-ac'?: CSSProperties['alignContent'];
21
+ '--focus-ac'?: CSSProperties['alignContent'];
22
+
23
+ /**
24
+ * **CSS Property**: `align-content`
25
+ *
26
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-content
27
+ */
28
+ '--ac-tablet'?: CSSProperties['alignContent'];
29
+ '--hvr-ac-tablet'?: CSSProperties['alignContent'];
30
+ '--focus-ac-tablet'?: CSSProperties['alignContent'];
31
+ /**
32
+ * **CSS Property**: `align-content`
33
+ *
34
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-content
35
+ */
36
+ '--ac-mobile'?: CSSProperties['alignContent'];
37
+ '--hvr-ac-mobile'?: CSSProperties['alignContent'];
38
+ '--focus-ac-mobile'?: CSSProperties['alignContent'];
39
+
40
+ /**
41
+ * **CSS Property**: `align-items`
42
+ *
43
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-items
44
+ */
45
+
46
+ '--ai'?: CSSProperties['alignItems'];
47
+ '--hvr-ai'?: CSSProperties['alignItems'];
48
+ '--focus-ai'?: CSSProperties['alignItems'];
49
+
50
+ /**
51
+ * **CSS Property**: `align-items`
52
+ *
53
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-items
54
+ */
55
+ '--ai-tablet'?: CSSProperties['alignItems'];
56
+ '--hvr-ai-tablet'?: CSSProperties['alignItems'];
57
+ '--focus-ai-tablet'?: CSSProperties['alignItems'];
58
+ /**
59
+ * **CSS Property**: `align-items`
60
+ *
61
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-items
62
+ */
63
+ '--ai-mobile'?: CSSProperties['alignItems'];
64
+ '--hvr-ai-mobile'?: CSSProperties['alignItems'];
65
+ '--focus-ai-mobile'?: CSSProperties['alignItems'];
66
+
67
+ /**
68
+ * **CSS Property**: `align-self`
69
+ *
70
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
71
+ */
72
+
73
+ '--as'?: CSSProperties['alignSelf'];
74
+ '--hvr-as'?: CSSProperties['alignSelf'];
75
+ '--focus-as'?: CSSProperties['alignSelf'];
76
+
77
+ /**
78
+ * **CSS Property**: `align-self`
79
+ *
80
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
81
+ */
82
+ '--as-tablet'?: CSSProperties['alignSelf'];
83
+ '--hvr-as-tablet'?: CSSProperties['alignSelf'];
84
+ '--focus-as-tablet'?: CSSProperties['alignSelf'];
85
+ /**
86
+ * **CSS Property**: `align-self`
87
+ *
88
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
89
+ */
90
+ '--as-mobile'?: CSSProperties['alignSelf'];
91
+ '--hvr-as-mobile'?: CSSProperties['alignSelf'];
92
+ '--focus-as-mobile'?: CSSProperties['alignSelf'];
93
+
94
+ /**
95
+ * **CSS Property**: `aspect-ratio`
96
+ *
97
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio
98
+ */
99
+
100
+ '--aspect'?: CSSProperties['aspectRatio'];
101
+ '--hvr-aspect'?: CSSProperties['aspectRatio'];
102
+ '--focus-aspect'?: CSSProperties['aspectRatio'];
103
+
104
+ /**
105
+ * **CSS Property**: `aspect-ratio`
106
+ *
107
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio
108
+ */
109
+ '--aspect-tablet'?: CSSProperties['aspectRatio'];
110
+ '--hvr-aspect-tablet'?: CSSProperties['aspectRatio'];
111
+ '--focus-aspect-tablet'?: CSSProperties['aspectRatio'];
112
+ /**
113
+ * **CSS Property**: `aspect-ratio`
114
+ *
115
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio
116
+ */
117
+ '--aspect-mobile'?: CSSProperties['aspectRatio'];
118
+ '--hvr-aspect-mobile'?: CSSProperties['aspectRatio'];
119
+ '--focus-aspect-mobile'?: CSSProperties['aspectRatio'];
120
+
121
+ /**
122
+ * **CSS Property**: `background`
123
+ *
124
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background
125
+ */
126
+
127
+ '--bg'?: CSSProperties['background'];
128
+ '--hvr-bg'?: CSSProperties['background'];
129
+ '--focus-bg'?: CSSProperties['background'];
130
+
131
+ /**
132
+ * **CSS Property**: `background`
133
+ *
134
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background
135
+ */
136
+ '--bg-tablet'?: CSSProperties['background'];
137
+ '--hvr-bg-tablet'?: CSSProperties['background'];
138
+ '--focus-bg-tablet'?: CSSProperties['background'];
139
+ /**
140
+ * **CSS Property**: `background`
141
+ *
142
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background
143
+ */
144
+ '--bg-mobile'?: CSSProperties['background'];
145
+ '--hvr-bg-mobile'?: CSSProperties['background'];
146
+ '--focus-bg-mobile'?: CSSProperties['background'];
147
+
148
+ /**
149
+ * **CSS Property**: `background-attachment`
150
+ *
151
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment
152
+ */
153
+
154
+ '--bga'?: CSSProperties['backgroundAttachment'];
155
+ '--hvr-bga'?: CSSProperties['backgroundAttachment'];
156
+ '--focus-bga'?: CSSProperties['backgroundAttachment'];
157
+
158
+ /**
159
+ * **CSS Property**: `background-attachment`
160
+ *
161
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment
162
+ */
163
+ '--bga-tablet'?: CSSProperties['backgroundAttachment'];
164
+ '--hvr-bga-tablet'?: CSSProperties['backgroundAttachment'];
165
+ '--focus-bga-tablet'?: CSSProperties['backgroundAttachment'];
166
+ /**
167
+ * **CSS Property**: `background-attachment`
168
+ *
169
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment
170
+ */
171
+ '--bga-mobile'?: CSSProperties['backgroundAttachment'];
172
+ '--hvr-bga-mobile'?: CSSProperties['backgroundAttachment'];
173
+ '--focus-bga-mobile'?: CSSProperties['backgroundAttachment'];
174
+
175
+ /**
176
+ * **CSS Property**: `background-color`
177
+ *
178
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-color
179
+ */
180
+
181
+ '--bgc'?: CSSProperties['backgroundColor'];
182
+ '--hvr-bgc'?: CSSProperties['backgroundColor'];
183
+ '--focus-bgc'?: CSSProperties['backgroundColor'];
184
+
185
+ /**
186
+ * **CSS Property**: `background-color`
187
+ *
188
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-color
189
+ */
190
+ '--bgc-tablet'?: CSSProperties['backgroundColor'];
191
+ '--hvr-bgc-tablet'?: CSSProperties['backgroundColor'];
192
+ '--focus-bgc-tablet'?: CSSProperties['backgroundColor'];
193
+ /**
194
+ * **CSS Property**: `background-color`
195
+ *
196
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-color
197
+ */
198
+ '--bgc-mobile'?: CSSProperties['backgroundColor'];
199
+ '--hvr-bgc-mobile'?: CSSProperties['backgroundColor'];
200
+ '--focus-bgc-mobile'?: CSSProperties['backgroundColor'];
201
+
202
+ /**
203
+ * **CSS Property**: `background-image`
204
+ *
205
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-image
206
+ */
207
+
208
+ '--bgi'?: CSSProperties['backgroundImage'];
209
+ '--hvr-bgi'?: CSSProperties['backgroundImage'];
210
+ '--focus-bgi'?: CSSProperties['backgroundImage'];
211
+
212
+ /**
213
+ * **CSS Property**: `background-image`
214
+ *
215
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-image
216
+ */
217
+ '--bgi-tablet'?: CSSProperties['backgroundImage'];
218
+ '--hvr-bgi-tablet'?: CSSProperties['backgroundImage'];
219
+ '--focus-bgi-tablet'?: CSSProperties['backgroundImage'];
220
+ /**
221
+ * **CSS Property**: `background-image`
222
+ *
223
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-image
224
+ */
225
+ '--bgi-mobile'?: CSSProperties['backgroundImage'];
226
+ '--hvr-bgi-mobile'?: CSSProperties['backgroundImage'];
227
+ '--focus-bgi-mobile'?: CSSProperties['backgroundImage'];
228
+
229
+ /**
230
+ * **CSS Property**: `background-position`
231
+ *
232
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
233
+ */
234
+
235
+ '--bgp'?: CSSProperties['backgroundPosition'];
236
+ '--hvr-bgp'?: CSSProperties['backgroundPosition'];
237
+ '--focus-bgp'?: CSSProperties['backgroundPosition'];
238
+
239
+ /**
240
+ * **CSS Property**: `background-position`
241
+ *
242
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
243
+ */
244
+ '--bgp-tablet'?: CSSProperties['backgroundPosition'];
245
+ '--hvr-bgp-tablet'?: CSSProperties['backgroundPosition'];
246
+ '--focus-bgp-tablet'?: CSSProperties['backgroundPosition'];
247
+ /**
248
+ * **CSS Property**: `background-position`
249
+ *
250
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
251
+ */
252
+ '--bgp-mobile'?: CSSProperties['backgroundPosition'];
253
+ '--hvr-bgp-mobile'?: CSSProperties['backgroundPosition'];
254
+ '--focus-bgp-mobile'?: CSSProperties['backgroundPosition'];
255
+
256
+ /**
257
+ * **CSS Property**: `background-repeat`
258
+ *
259
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-repeat
260
+ */
261
+
262
+ '--bgr'?: CSSProperties['backgroundRepeat'];
263
+ '--hvr-bgr'?: CSSProperties['backgroundRepeat'];
264
+ '--focus-bgr'?: CSSProperties['backgroundRepeat'];
265
+
266
+ /**
267
+ * **CSS Property**: `background-repeat`
268
+ *
269
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-repeat
270
+ */
271
+ '--bgr-tablet'?: CSSProperties['backgroundRepeat'];
272
+ '--hvr-bgr-tablet'?: CSSProperties['backgroundRepeat'];
273
+ '--focus-bgr-tablet'?: CSSProperties['backgroundRepeat'];
274
+ /**
275
+ * **CSS Property**: `background-repeat`
276
+ *
277
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-repeat
278
+ */
279
+ '--bgr-mobile'?: CSSProperties['backgroundRepeat'];
280
+ '--hvr-bgr-mobile'?: CSSProperties['backgroundRepeat'];
281
+ '--focus-bgr-mobile'?: CSSProperties['backgroundRepeat'];
282
+
283
+ /**
284
+ * **CSS Property**: `background-size`
285
+ *
286
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-size
287
+ */
288
+
289
+ '--bgs'?: CSSProperties['backgroundSize'];
290
+ '--hvr-bgs'?: CSSProperties['backgroundSize'];
291
+ '--focus-bgs'?: CSSProperties['backgroundSize'];
292
+
293
+ /**
294
+ * **CSS Property**: `background-size`
295
+ *
296
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-size
297
+ */
298
+ '--bgs-tablet'?: CSSProperties['backgroundSize'];
299
+ '--hvr-bgs-tablet'?: CSSProperties['backgroundSize'];
300
+ '--focus-bgs-tablet'?: CSSProperties['backgroundSize'];
301
+ /**
302
+ * **CSS Property**: `background-size`
303
+ *
304
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/background-size
305
+ */
306
+ '--bgs-mobile'?: CSSProperties['backgroundSize'];
307
+ '--hvr-bgs-mobile'?: CSSProperties['backgroundSize'];
308
+ '--focus-bgs-mobile'?: CSSProperties['backgroundSize'];
309
+
310
+ /**
311
+ * **CSS Property**: `border`
312
+ *
313
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border
314
+ */
315
+
316
+ '--b'?: CSSProperties['border'];
317
+ '--hvr-b'?: CSSProperties['border'];
318
+ '--focus-b'?: CSSProperties['border'];
319
+
320
+ /**
321
+ * **CSS Property**: `border`
322
+ *
323
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border
324
+ */
325
+ '--b-tablet'?: CSSProperties['border'];
326
+ '--hvr-b-tablet'?: CSSProperties['border'];
327
+ '--focus-b-tablet'?: CSSProperties['border'];
328
+ /**
329
+ * **CSS Property**: `border`
330
+ *
331
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border
332
+ */
333
+ '--b-mobile'?: CSSProperties['border'];
334
+ '--hvr-b-mobile'?: CSSProperties['border'];
335
+ '--focus-b-mobile'?: CSSProperties['border'];
336
+
337
+ /**
338
+ * **CSS Property**: `border-bottom`
339
+ *
340
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom
341
+ */
342
+
343
+ '--bb'?: CSSProperties['borderBottom'];
344
+ '--hvr-bb'?: CSSProperties['borderBottom'];
345
+ '--focus-bb'?: CSSProperties['borderBottom'];
346
+
347
+ /**
348
+ * **CSS Property**: `border-bottom`
349
+ *
350
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom
351
+ */
352
+ '--bb-tablet'?: CSSProperties['borderBottom'];
353
+ '--hvr-bb-tablet'?: CSSProperties['borderBottom'];
354
+ '--focus-bb-tablet'?: CSSProperties['borderBottom'];
355
+ /**
356
+ * **CSS Property**: `border-bottom`
357
+ *
358
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom
359
+ */
360
+ '--bb-mobile'?: CSSProperties['borderBottom'];
361
+ '--hvr-bb-mobile'?: CSSProperties['borderBottom'];
362
+ '--focus-bb-mobile'?: CSSProperties['borderBottom'];
363
+
364
+ /**
365
+ * **CSS Property**: `border-bottom-width`
366
+ *
367
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width
368
+ */
369
+
370
+ '--bbw'?: CSSProperties['borderBottomWidth'];
371
+ '--hvr-bbw'?: CSSProperties['borderBottomWidth'];
372
+ '--focus-bbw'?: CSSProperties['borderBottomWidth'];
373
+
374
+ /**
375
+ * **CSS Property**: `border-bottom-width`
376
+ *
377
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width
378
+ */
379
+ '--bbw-tablet'?: CSSProperties['borderBottomWidth'];
380
+ '--hvr-bbw-tablet'?: CSSProperties['borderBottomWidth'];
381
+ '--focus-bbw-tablet'?: CSSProperties['borderBottomWidth'];
382
+ /**
383
+ * **CSS Property**: `border-bottom-width`
384
+ *
385
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width
386
+ */
387
+ '--bbw-mobile'?: CSSProperties['borderBottomWidth'];
388
+ '--hvr-bbw-mobile'?: CSSProperties['borderBottomWidth'];
389
+ '--focus-bbw-mobile'?: CSSProperties['borderBottomWidth'];
390
+
391
+ /**
392
+ * **CSS Property**: `border-bottom-color`
393
+ *
394
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-color
395
+ */
396
+
397
+ '--bbc'?: CSSProperties['borderBottomColor'];
398
+ '--hvr-bbc'?: CSSProperties['borderBottomColor'];
399
+ '--focus-bbc'?: CSSProperties['borderBottomColor'];
400
+
401
+ /**
402
+ * **CSS Property**: `border-bottom-color`
403
+ *
404
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-color
405
+ */
406
+ '--bbc-tablet'?: CSSProperties['borderBottomColor'];
407
+ '--hvr-bbc-tablet'?: CSSProperties['borderBottomColor'];
408
+ '--focus-bbc-tablet'?: CSSProperties['borderBottomColor'];
409
+ /**
410
+ * **CSS Property**: `border-bottom-color`
411
+ *
412
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-color
413
+ */
414
+ '--bbc-mobile'?: CSSProperties['borderBottomColor'];
415
+ '--hvr-bbc-mobile'?: CSSProperties['borderBottomColor'];
416
+ '--focus-bbc-mobile'?: CSSProperties['borderBottomColor'];
417
+
418
+ /**
419
+ * **CSS Property**: `border-color`
420
+ *
421
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-color
422
+ */
423
+
424
+ '--bc'?: CSSProperties['borderColor'];
425
+ '--hvr-bc'?: CSSProperties['borderColor'];
426
+ '--focus-bc'?: CSSProperties['borderColor'];
427
+
428
+ /**
429
+ * **CSS Property**: `border-color`
430
+ *
431
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-color
432
+ */
433
+ '--bc-tablet'?: CSSProperties['borderColor'];
434
+ '--hvr-bc-tablet'?: CSSProperties['borderColor'];
435
+ '--focus-bc-tablet'?: CSSProperties['borderColor'];
436
+ /**
437
+ * **CSS Property**: `border-color`
438
+ *
439
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-color
440
+ */
441
+ '--bc-mobile'?: CSSProperties['borderColor'];
442
+ '--hvr-bc-mobile'?: CSSProperties['borderColor'];
443
+ '--focus-bc-mobile'?: CSSProperties['borderColor'];
444
+
445
+ /**
446
+ * **CSS Property**: `border-bottom-left-radius`
447
+ *
448
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius
449
+ */
450
+
451
+ '--bblr'?: CSSProperties['borderBottomLeftRadius'];
452
+ '--hvr-bblr'?: CSSProperties['borderBottomLeftRadius'];
453
+ '--focus-bblr'?: CSSProperties['borderBottomLeftRadius'];
454
+
455
+ /**
456
+ * **CSS Property**: `border-bottom-left-radius`
457
+ *
458
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius
459
+ */
460
+ '--bblr-tablet'?: CSSProperties['borderBottomLeftRadius'];
461
+ '--hvr-bblr-tablet'?: CSSProperties['borderBottomLeftRadius'];
462
+ '--focus-bblr-tablet'?: CSSProperties['borderBottomLeftRadius'];
463
+ /**
464
+ * **CSS Property**: `border-bottom-left-radius`
465
+ *
466
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius
467
+ */
468
+ '--bblr-mobile'?: CSSProperties['borderBottomLeftRadius'];
469
+ '--hvr-bblr-mobile'?: CSSProperties['borderBottomLeftRadius'];
470
+ '--focus-bblr-mobile'?: CSSProperties['borderBottomLeftRadius'];
471
+
472
+ /**
473
+ * **CSS Property**: `border-bottom-right-radius`
474
+ *
475
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius
476
+ */
477
+
478
+ '--bbrr'?: CSSProperties['borderBottomRightRadius'];
479
+ '--hvr-bbrr'?: CSSProperties['borderBottomRightRadius'];
480
+ '--focus-bbrr'?: CSSProperties['borderBottomRightRadius'];
481
+
482
+ /**
483
+ * **CSS Property**: `border-bottom-right-radius`
484
+ *
485
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius
486
+ */
487
+ '--bbrr-tablet'?: CSSProperties['borderBottomRightRadius'];
488
+ '--hvr-bbrr-tablet'?: CSSProperties['borderBottomRightRadius'];
489
+ '--focus-bbrr-tablet'?: CSSProperties['borderBottomRightRadius'];
490
+ /**
491
+ * **CSS Property**: `border-bottom-right-radius`
492
+ *
493
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius
494
+ */
495
+ '--bbrr-mobile'?: CSSProperties['borderBottomRightRadius'];
496
+ '--hvr-bbrr-mobile'?: CSSProperties['borderBottomRightRadius'];
497
+ '--focus-bbrr-mobile'?: CSSProperties['borderBottomRightRadius'];
498
+
499
+ /**
500
+ * **CSS Property**: `border-left`
501
+ *
502
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left
503
+ */
504
+
505
+ '--bl'?: CSSProperties['borderLeft'];
506
+ '--hvr-bl'?: CSSProperties['borderLeft'];
507
+ '--focus-bl'?: CSSProperties['borderLeft'];
508
+
509
+ /**
510
+ * **CSS Property**: `border-left`
511
+ *
512
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left
513
+ */
514
+ '--bl-tablet'?: CSSProperties['borderLeft'];
515
+ '--hvr-bl-tablet'?: CSSProperties['borderLeft'];
516
+ '--focus-bl-tablet'?: CSSProperties['borderLeft'];
517
+ /**
518
+ * **CSS Property**: `border-left`
519
+ *
520
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left
521
+ */
522
+ '--bl-mobile'?: CSSProperties['borderLeft'];
523
+ '--hvr-bl-mobile'?: CSSProperties['borderLeft'];
524
+ '--focus-bl-mobile'?: CSSProperties['borderLeft'];
525
+
526
+ /**
527
+ * **CSS Property**: `border-radius`
528
+ *
529
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
530
+ */
531
+
532
+ '--radius'?: CSSProperties['borderRadius'];
533
+ '--hvr-radius'?: CSSProperties['borderRadius'];
534
+ '--focus-radius'?: CSSProperties['borderRadius'];
535
+
536
+ /**
537
+ * **CSS Property**: `border-radius`
538
+ *
539
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
540
+ */
541
+ '--radius-tablet'?: CSSProperties['borderRadius'];
542
+ '--hvr-radius-tablet'?: CSSProperties['borderRadius'];
543
+ '--focus-radius-tablet'?: CSSProperties['borderRadius'];
544
+ /**
545
+ * **CSS Property**: `border-radius`
546
+ *
547
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
548
+ */
549
+ '--radius-mobile'?: CSSProperties['borderRadius'];
550
+ '--hvr-radius-mobile'?: CSSProperties['borderRadius'];
551
+ '--focus-radius-mobile'?: CSSProperties['borderRadius'];
552
+
553
+ /**
554
+ * **CSS Property**: `border-right`
555
+ *
556
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right
557
+ */
558
+
559
+ '--br'?: CSSProperties['borderRight'];
560
+ '--hvr-br'?: CSSProperties['borderRight'];
561
+ '--focus-br'?: CSSProperties['borderRight'];
562
+
563
+ /**
564
+ * **CSS Property**: `border-right`
565
+ *
566
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right
567
+ */
568
+ '--br-tablet'?: CSSProperties['borderRight'];
569
+ '--hvr-br-tablet'?: CSSProperties['borderRight'];
570
+ '--focus-br-tablet'?: CSSProperties['borderRight'];
571
+ /**
572
+ * **CSS Property**: `border-right`
573
+ *
574
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right
575
+ */
576
+ '--br-mobile'?: CSSProperties['borderRight'];
577
+ '--hvr-br-mobile'?: CSSProperties['borderRight'];
578
+ '--focus-br-mobile'?: CSSProperties['borderRight'];
579
+
580
+ /**
581
+ * **CSS Property**: `border-style`
582
+ *
583
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-style
584
+ */
585
+
586
+ '--bs'?: CSSProperties['borderStyle'];
587
+ '--hvr-bs'?: CSSProperties['borderStyle'];
588
+ '--focus-bs'?: CSSProperties['borderStyle'];
589
+
590
+ /**
591
+ * **CSS Property**: `border-style`
592
+ *
593
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-style
594
+ */
595
+ '--bs-tablet'?: CSSProperties['borderStyle'];
596
+ '--hvr-bs-tablet'?: CSSProperties['borderStyle'];
597
+ '--focus-bs-tablet'?: CSSProperties['borderStyle'];
598
+ /**
599
+ * **CSS Property**: `border-style`
600
+ *
601
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-style
602
+ */
603
+ '--bs-mobile'?: CSSProperties['borderStyle'];
604
+ '--hvr-bs-mobile'?: CSSProperties['borderStyle'];
605
+ '--focus-bs-mobile'?: CSSProperties['borderStyle'];
606
+
607
+ /**
608
+ * **CSS Property**: `border-top`
609
+ *
610
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top
611
+ */
612
+
613
+ '--bt'?: CSSProperties['borderTop'];
614
+ '--hvr-bt'?: CSSProperties['borderTop'];
615
+ '--focus-bt'?: CSSProperties['borderTop'];
616
+
617
+ /**
618
+ * **CSS Property**: `border-top`
619
+ *
620
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top
621
+ */
622
+ '--bt-tablet'?: CSSProperties['borderTop'];
623
+ '--hvr-bt-tablet'?: CSSProperties['borderTop'];
624
+ '--focus-bt-tablet'?: CSSProperties['borderTop'];
625
+ /**
626
+ * **CSS Property**: `border-top`
627
+ *
628
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top
629
+ */
630
+ '--bt-mobile'?: CSSProperties['borderTop'];
631
+ '--hvr-bt-mobile'?: CSSProperties['borderTop'];
632
+ '--focus-bt-mobile'?: CSSProperties['borderTop'];
633
+
634
+ /**
635
+ * **CSS Property**: `border-top-left-radius`
636
+ *
637
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius
638
+ */
639
+
640
+ '--btlr'?: CSSProperties['borderTopLeftRadius'];
641
+ '--hvr-btlr'?: CSSProperties['borderTopLeftRadius'];
642
+ '--focus-btlr'?: CSSProperties['borderTopLeftRadius'];
643
+
644
+ /**
645
+ * **CSS Property**: `border-top-left-radius`
646
+ *
647
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius
648
+ */
649
+ '--btlr-tablet'?: CSSProperties['borderTopLeftRadius'];
650
+ '--hvr-btlr-tablet'?: CSSProperties['borderTopLeftRadius'];
651
+ '--focus-btlr-tablet'?: CSSProperties['borderTopLeftRadius'];
652
+ /**
653
+ * **CSS Property**: `border-top-left-radius`
654
+ *
655
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius
656
+ */
657
+ '--btlr-mobile'?: CSSProperties['borderTopLeftRadius'];
658
+ '--hvr-btlr-mobile'?: CSSProperties['borderTopLeftRadius'];
659
+ '--focus-btlr-mobile'?: CSSProperties['borderTopLeftRadius'];
660
+
661
+ /**
662
+ * **CSS Property**: `border-top-right-radius`
663
+ *
664
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-right-radius
665
+ */
666
+
667
+ '--btrr'?: CSSProperties['borderTopRightRadius'];
668
+ '--hvr-btrr'?: CSSProperties['borderTopRightRadius'];
669
+ '--focus-btrr'?: CSSProperties['borderTopRightRadius'];
670
+
671
+ /**
672
+ * **CSS Property**: `border-top-right-radius`
673
+ *
674
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-right-radius
675
+ */
676
+ '--btrr-tablet'?: CSSProperties['borderTopRightRadius'];
677
+ '--hvr-btrr-tablet'?: CSSProperties['borderTopRightRadius'];
678
+ '--focus-btrr-tablet'?: CSSProperties['borderTopRightRadius'];
679
+ /**
680
+ * **CSS Property**: `border-top-right-radius`
681
+ *
682
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-right-radius
683
+ */
684
+ '--btrr-mobile'?: CSSProperties['borderTopRightRadius'];
685
+ '--hvr-btrr-mobile'?: CSSProperties['borderTopRightRadius'];
686
+ '--focus-btrr-mobile'?: CSSProperties['borderTopRightRadius'];
687
+
688
+ /**
689
+ * **CSS Property**: `border-width`
690
+ *
691
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-width
692
+ */
693
+
694
+ '--bw'?: CSSProperties['borderWidth'];
695
+ '--hvr-bw'?: CSSProperties['borderWidth'];
696
+ '--focus-bw'?: CSSProperties['borderWidth'];
697
+
698
+ /**
699
+ * **CSS Property**: `border-width`
700
+ *
701
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-width
702
+ */
703
+ '--bw-tablet'?: CSSProperties['borderWidth'];
704
+ '--hvr-bw-tablet'?: CSSProperties['borderWidth'];
705
+ '--focus-bw-tablet'?: CSSProperties['borderWidth'];
706
+ /**
707
+ * **CSS Property**: `border-width`
708
+ *
709
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-width
710
+ */
711
+ '--bw-mobile'?: CSSProperties['borderWidth'];
712
+ '--hvr-bw-mobile'?: CSSProperties['borderWidth'];
713
+ '--focus-bw-mobile'?: CSSProperties['borderWidth'];
714
+
715
+ /**
716
+ * **CSS Property**: `bottom`
717
+ *
718
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/bottom
719
+ */
720
+
721
+ '--bottom'?: CSSProperties['bottom'];
722
+ '--hvr-bottom'?: CSSProperties['bottom'];
723
+ '--focus-bottom'?: CSSProperties['bottom'];
724
+
725
+ /**
726
+ * **CSS Property**: `bottom`
727
+ *
728
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/bottom
729
+ */
730
+ '--bottom-tablet'?: CSSProperties['bottom'];
731
+ '--hvr-bottom-tablet'?: CSSProperties['bottom'];
732
+ '--focus-bottom-tablet'?: CSSProperties['bottom'];
733
+ /**
734
+ * **CSS Property**: `bottom`
735
+ *
736
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/bottom
737
+ */
738
+ '--bottom-mobile'?: CSSProperties['bottom'];
739
+ '--hvr-bottom-mobile'?: CSSProperties['bottom'];
740
+ '--focus-bottom-mobile'?: CSSProperties['bottom'];
741
+
742
+ /**
743
+ * **CSS Property**: `box-shadow`
744
+ *
745
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
746
+ */
747
+
748
+ '--shadow'?: CSSProperties['boxShadow'];
749
+ '--hvr-shadow'?: CSSProperties['boxShadow'];
750
+ '--focus-shadow'?: CSSProperties['boxShadow'];
751
+
752
+ /**
753
+ * **CSS Property**: `box-shadow`
754
+ *
755
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
756
+ */
757
+ '--shadow-tablet'?: CSSProperties['boxShadow'];
758
+ '--hvr-shadow-tablet'?: CSSProperties['boxShadow'];
759
+ '--focus-shadow-tablet'?: CSSProperties['boxShadow'];
760
+ /**
761
+ * **CSS Property**: `box-shadow`
762
+ *
763
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
764
+ */
765
+ '--shadow-mobile'?: CSSProperties['boxShadow'];
766
+ '--hvr-shadow-mobile'?: CSSProperties['boxShadow'];
767
+ '--focus-shadow-mobile'?: CSSProperties['boxShadow'];
768
+
769
+ /**
770
+ * **CSS Property**: `clear`
771
+ *
772
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/clear
773
+ */
774
+
775
+ '--cr'?: CSSProperties['clear'];
776
+ '--hvr-cr'?: CSSProperties['clear'];
777
+ '--focus-cr'?: CSSProperties['clear'];
778
+
779
+ /**
780
+ * **CSS Property**: `clear`
781
+ *
782
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/clear
783
+ */
784
+ '--cr-tablet'?: CSSProperties['clear'];
785
+ '--hvr-cr-tablet'?: CSSProperties['clear'];
786
+ '--focus-cr-tablet'?: CSSProperties['clear'];
787
+ /**
788
+ * **CSS Property**: `clear`
789
+ *
790
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/clear
791
+ */
792
+ '--cr-mobile'?: CSSProperties['clear'];
793
+ '--hvr-cr-mobile'?: CSSProperties['clear'];
794
+ '--focus-cr-mobile'?: CSSProperties['clear'];
795
+
796
+ /**
797
+ * **CSS Property**: `color`
798
+ *
799
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/color
800
+ */
801
+
802
+ '--c'?: CSSProperties['color'];
803
+ '--hvr-c'?: CSSProperties['color'];
804
+ '--focus-c'?: CSSProperties['color'];
805
+
806
+ /**
807
+ * **CSS Property**: `color`
808
+ *
809
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/color
810
+ */
811
+ '--c-tablet'?: CSSProperties['color'];
812
+ '--hvr-c-tablet'?: CSSProperties['color'];
813
+ '--focus-c-tablet'?: CSSProperties['color'];
814
+ /**
815
+ * **CSS Property**: `color`
816
+ *
817
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/color
818
+ */
819
+ '--c-mobile'?: CSSProperties['color'];
820
+ '--hvr-c-mobile'?: CSSProperties['color'];
821
+ '--focus-c-mobile'?: CSSProperties['color'];
822
+
823
+ /**
824
+ * **CSS Property**: `column-gap`
825
+ *
826
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap
827
+ */
828
+
829
+ '--cg'?: CSSProperties['columnGap'];
830
+ '--hvr-cg'?: CSSProperties['columnGap'];
831
+ '--focus-cg'?: CSSProperties['columnGap'];
832
+
833
+ /**
834
+ * **CSS Property**: `column-gap`
835
+ *
836
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap
837
+ */
838
+ '--cg-tablet'?: CSSProperties['columnGap'];
839
+ '--hvr-cg-tablet'?: CSSProperties['columnGap'];
840
+ '--focus-cg-tablet'?: CSSProperties['columnGap'];
841
+ /**
842
+ * **CSS Property**: `column-gap`
843
+ *
844
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap
845
+ */
846
+ '--cg-mobile'?: CSSProperties['columnGap'];
847
+ '--hvr-cg-mobile'?: CSSProperties['columnGap'];
848
+ '--focus-cg-mobile'?: CSSProperties['columnGap'];
849
+
850
+ /**
851
+ * **CSS Property**: `display`
852
+ *
853
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/display
854
+ */
855
+
856
+ '--d'?: CSSProperties['display'];
857
+ '--hvr-d'?: CSSProperties['display'];
858
+ '--focus-d'?: CSSProperties['display'];
859
+
860
+ /**
861
+ * **CSS Property**: `display`
862
+ *
863
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/display
864
+ */
865
+ '--d-tablet'?: CSSProperties['display'];
866
+ '--hvr-d-tablet'?: CSSProperties['display'];
867
+ '--focus-d-tablet'?: CSSProperties['display'];
868
+ /**
869
+ * **CSS Property**: `display`
870
+ *
871
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/display
872
+ */
873
+ '--d-mobile'?: CSSProperties['display'];
874
+ '--hvr-d-mobile'?: CSSProperties['display'];
875
+ '--focus-d-mobile'?: CSSProperties['display'];
876
+
877
+ /**
878
+ * **CSS Property**: `filter`
879
+ *
880
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/filter
881
+ */
882
+
883
+ '--fr'?: CSSProperties['filter'];
884
+ '--hvr-fr'?: CSSProperties['filter'];
885
+ '--focus-fr'?: CSSProperties['filter'];
886
+
887
+ /**
888
+ * **CSS Property**: `flex`
889
+ *
890
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex
891
+ */
892
+
893
+ '--fx'?: CSSProperties['flex'];
894
+ '--hvr-fx'?: CSSProperties['flex'];
895
+ '--focus-fx'?: CSSProperties['flex'];
896
+
897
+ /**
898
+ * **CSS Property**: `flex`
899
+ *
900
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex
901
+ */
902
+ '--fx-tablet'?: CSSProperties['flex'];
903
+ '--hvr-fx-tablet'?: CSSProperties['flex'];
904
+ '--focus-fx-tablet'?: CSSProperties['flex'];
905
+ /**
906
+ * **CSS Property**: `flex`
907
+ *
908
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex
909
+ */
910
+ '--fx-mobile'?: CSSProperties['flex'];
911
+ '--hvr-fx-mobile'?: CSSProperties['flex'];
912
+ '--focus-fx-mobile'?: CSSProperties['flex'];
913
+
914
+ /**
915
+ * **CSS Property**: `flex-basis`
916
+ *
917
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis
918
+ */
919
+
920
+ '--fb'?: CSSProperties['flexBasis'];
921
+ '--hvr-fb'?: CSSProperties['flexBasis'];
922
+ '--focus-fb'?: CSSProperties['flexBasis'];
923
+
924
+ /**
925
+ * **CSS Property**: `flex-basis`
926
+ *
927
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis
928
+ */
929
+ '--fb-tablet'?: CSSProperties['flexBasis'];
930
+ '--hvr-fb-tablet'?: CSSProperties['flexBasis'];
931
+ '--focus-fb-tablet'?: CSSProperties['flexBasis'];
932
+ /**
933
+ * **CSS Property**: `flex-basis`
934
+ *
935
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis
936
+ */
937
+ '--fb-mobile'?: CSSProperties['flexBasis'];
938
+ '--hvr-fb-mobile'?: CSSProperties['flexBasis'];
939
+ '--focus-fb-mobile'?: CSSProperties['flexBasis'];
940
+
941
+ /**
942
+ * **CSS Property**: `flex-direction`
943
+ *
944
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
945
+ */
946
+
947
+ '--fd'?: CSSProperties['flexDirection'];
948
+ '--hvr-fd'?: CSSProperties['flexDirection'];
949
+ '--focus-fd'?: CSSProperties['flexDirection'];
950
+
951
+ /**
952
+ * **CSS Property**: `flex-direction`
953
+ *
954
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
955
+ */
956
+ '--fd-tablet'?: CSSProperties['flexDirection'];
957
+ '--hvr-fd-tablet'?: CSSProperties['flexDirection'];
958
+ '--focus-fd-tablet'?: CSSProperties['flexDirection'];
959
+ /**
960
+ * **CSS Property**: `flex-direction`
961
+ *
962
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
963
+ */
964
+ '--fd-mobile'?: CSSProperties['flexDirection'];
965
+ '--hvr-fd-mobile'?: CSSProperties['flexDirection'];
966
+ '--focus-fd-mobile'?: CSSProperties['flexDirection'];
967
+
968
+ /**
969
+ * **CSS Property**: `flex-grow`
970
+ *
971
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow
972
+ */
973
+
974
+ '--fg'?: CSSProperties['flexGrow'];
975
+ '--hvr-fg'?: CSSProperties['flexGrow'];
976
+ '--focus-fg'?: CSSProperties['flexGrow'];
977
+
978
+ /**
979
+ * **CSS Property**: `flex-grow`
980
+ *
981
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow
982
+ */
983
+ '--fg-tablet'?: CSSProperties['flexGrow'];
984
+ '--hvr-fg-tablet'?: CSSProperties['flexGrow'];
985
+ '--focus-fg-tablet'?: CSSProperties['flexGrow'];
986
+ /**
987
+ * **CSS Property**: `flex-grow`
988
+ *
989
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow
990
+ */
991
+ '--fg-mobile'?: CSSProperties['flexGrow'];
992
+ '--hvr-fg-mobile'?: CSSProperties['flexGrow'];
993
+ '--focus-fg-mobile'?: CSSProperties['flexGrow'];
994
+
995
+ /**
996
+ * **CSS Property**: `flex-shrink`
997
+ *
998
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink
999
+ */
1000
+
1001
+ '--fs'?: CSSProperties['flexShrink'];
1002
+ '--hvr-fs'?: CSSProperties['flexShrink'];
1003
+ '--focus-fs'?: CSSProperties['flexShrink'];
1004
+
1005
+ /**
1006
+ * **CSS Property**: `flex-shrink`
1007
+ *
1008
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink
1009
+ */
1010
+ '--fs-tablet'?: CSSProperties['flexShrink'];
1011
+ '--hvr-fs-tablet'?: CSSProperties['flexShrink'];
1012
+ '--focus-fs-tablet'?: CSSProperties['flexShrink'];
1013
+ /**
1014
+ * **CSS Property**: `flex-shrink`
1015
+ *
1016
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink
1017
+ */
1018
+ '--fs-mobile'?: CSSProperties['flexShrink'];
1019
+ '--hvr-fs-mobile'?: CSSProperties['flexShrink'];
1020
+ '--focus-fs-mobile'?: CSSProperties['flexShrink'];
1021
+
1022
+ /**
1023
+ * **CSS Property**: `flex-wrap`
1024
+ *
1025
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap
1026
+ */
1027
+
1028
+ '--fw'?: CSSProperties['flexWrap'];
1029
+ '--hvr-fw'?: CSSProperties['flexWrap'];
1030
+ '--focus-fw'?: CSSProperties['flexWrap'];
1031
+
1032
+ /**
1033
+ * **CSS Property**: `flex-wrap`
1034
+ *
1035
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap
1036
+ */
1037
+ '--fw-tablet'?: CSSProperties['flexWrap'];
1038
+ '--hvr-fw-tablet'?: CSSProperties['flexWrap'];
1039
+ '--focus-fw-tablet'?: CSSProperties['flexWrap'];
1040
+ /**
1041
+ * **CSS Property**: `flex-wrap`
1042
+ *
1043
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap
1044
+ */
1045
+ '--fw-mobile'?: CSSProperties['flexWrap'];
1046
+ '--hvr-fw-mobile'?: CSSProperties['flexWrap'];
1047
+ '--focus-fw-mobile'?: CSSProperties['flexWrap'];
1048
+
1049
+ /**
1050
+ * **CSS Property**: `float`
1051
+ *
1052
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/float
1053
+ */
1054
+
1055
+ '--ft'?: CSSProperties['float'];
1056
+ '--hvr-ft'?: CSSProperties['float'];
1057
+ '--focus-ft'?: CSSProperties['float'];
1058
+
1059
+ /**
1060
+ * **CSS Property**: `float`
1061
+ *
1062
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/float
1063
+ */
1064
+ '--ft-tablet'?: CSSProperties['float'];
1065
+ '--hvr-ft-tablet'?: CSSProperties['float'];
1066
+ '--focus-ft-tablet'?: CSSProperties['float'];
1067
+ /**
1068
+ * **CSS Property**: `float`
1069
+ *
1070
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/float
1071
+ */
1072
+ '--ft-mobile'?: CSSProperties['float'];
1073
+ '--hvr-ft-mobile'?: CSSProperties['float'];
1074
+ '--focus-ft-mobile'?: CSSProperties['float'];
1075
+
1076
+ /**
1077
+ * **CSS Property**: `font-family`
1078
+ *
1079
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
1080
+ */
1081
+
1082
+ '--ff'?: CSSProperties['fontFamily'];
1083
+ '--hvr-ff'?: CSSProperties['fontFamily'];
1084
+ '--focus-ff'?: CSSProperties['fontFamily'];
1085
+
1086
+ /**
1087
+ * **CSS Property**: `font-family`
1088
+ *
1089
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
1090
+ */
1091
+ '--ff-tablet'?: CSSProperties['fontFamily'];
1092
+ '--hvr-ff-tablet'?: CSSProperties['fontFamily'];
1093
+ '--focus-ff-tablet'?: CSSProperties['fontFamily'];
1094
+ /**
1095
+ * **CSS Property**: `font-family`
1096
+ *
1097
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
1098
+ */
1099
+ '--ff-mobile'?: CSSProperties['fontFamily'];
1100
+ '--hvr-ff-mobile'?: CSSProperties['fontFamily'];
1101
+ '--focus-ff-mobile'?: CSSProperties['fontFamily'];
1102
+
1103
+ /**
1104
+ * **CSS Property**: `font-size`
1105
+ *
1106
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
1107
+ */
1108
+
1109
+ '--size'?: CSSProperties['fontSize'];
1110
+ '--hvr-size'?: CSSProperties['fontSize'];
1111
+ '--focus-size'?: CSSProperties['fontSize'];
1112
+
1113
+ /**
1114
+ * **CSS Property**: `font-size`
1115
+ *
1116
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
1117
+ */
1118
+ '--size-tablet'?: CSSProperties['fontSize'];
1119
+ '--hvr-size-tablet'?: CSSProperties['fontSize'];
1120
+ '--focus-size-tablet'?: CSSProperties['fontSize'];
1121
+ /**
1122
+ * **CSS Property**: `font-size`
1123
+ *
1124
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
1125
+ */
1126
+ '--size-mobile'?: CSSProperties['fontSize'];
1127
+ '--hvr-size-mobile'?: CSSProperties['fontSize'];
1128
+ '--focus-size-mobile'?: CSSProperties['fontSize'];
1129
+
1130
+ /**
1131
+ * **CSS Property**: `font-style`
1132
+ *
1133
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-style
1134
+ */
1135
+
1136
+ '--fs'?: CSSProperties['fontStyle'];
1137
+ '--hvr-fs'?: CSSProperties['fontStyle'];
1138
+ '--focus-fs'?: CSSProperties['fontStyle'];
1139
+
1140
+ /**
1141
+ * **CSS Property**: `font-style`
1142
+ *
1143
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-style
1144
+ */
1145
+ '--fs-tablet'?: CSSProperties['fontStyle'];
1146
+ '--hvr-fs-tablet'?: CSSProperties['fontStyle'];
1147
+ '--focus-fs-tablet'?: CSSProperties['fontStyle'];
1148
+ /**
1149
+ * **CSS Property**: `font-style`
1150
+ *
1151
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-style
1152
+ */
1153
+ '--fs-mobile'?: CSSProperties['fontStyle'];
1154
+ '--hvr-fs-mobile'?: CSSProperties['fontStyle'];
1155
+ '--focus-fs-mobile'?: CSSProperties['fontStyle'];
1156
+
1157
+ /**
1158
+ * **CSS Property**: `font-weight`
1159
+ *
1160
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
1161
+ */
1162
+
1163
+ '--weight'?: CSSProperties['fontWeight'];
1164
+ '--hvr-weight'?: CSSProperties['fontWeight'];
1165
+ '--focus-weight'?: CSSProperties['fontWeight'];
1166
+
1167
+ /**
1168
+ * **CSS Property**: `font-weight`
1169
+ *
1170
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
1171
+ */
1172
+ '--weight-tablet'?: CSSProperties['fontWeight'];
1173
+ '--hvr-weight-tablet'?: CSSProperties['fontWeight'];
1174
+ '--focus-weight-tablet'?: CSSProperties['fontWeight'];
1175
+ /**
1176
+ * **CSS Property**: `font-weight`
1177
+ *
1178
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
1179
+ */
1180
+ '--weight-mobile'?: CSSProperties['fontWeight'];
1181
+ '--hvr-weight-mobile'?: CSSProperties['fontWeight'];
1182
+ '--focus-weight-mobile'?: CSSProperties['fontWeight'];
1183
+
1184
+ /**
1185
+ * **CSS Property**: `grid-auto-columns`
1186
+ *
1187
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
1188
+ */
1189
+
1190
+ '--gac'?: CSSProperties['gridAutoColumns'];
1191
+ '--hvr-gac'?: CSSProperties['gridAutoColumns'];
1192
+ '--focus-gac'?: CSSProperties['gridAutoColumns'];
1193
+
1194
+ /**
1195
+ * **CSS Property**: `grid-auto-columns`
1196
+ *
1197
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
1198
+ */
1199
+ '--gac-tablet'?: CSSProperties['gridAutoColumns'];
1200
+ '--hvr-gac-tablet'?: CSSProperties['gridAutoColumns'];
1201
+ '--focus-gac-tablet'?: CSSProperties['gridAutoColumns'];
1202
+ /**
1203
+ * **CSS Property**: `grid-auto-columns`
1204
+ *
1205
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
1206
+ */
1207
+ '--gac-mobile'?: CSSProperties['gridAutoColumns'];
1208
+ '--hvr-gac-mobile'?: CSSProperties['gridAutoColumns'];
1209
+ '--focus-gac-mobile'?: CSSProperties['gridAutoColumns'];
1210
+
1211
+ /**
1212
+ * **CSS Property**: `grid-auto-rows`
1213
+ *
1214
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
1215
+ */
1216
+
1217
+ '--gar'?: CSSProperties['gridAutoRows'];
1218
+ '--hvr-gar'?: CSSProperties['gridAutoRows'];
1219
+ '--focus-gar'?: CSSProperties['gridAutoRows'];
1220
+
1221
+ /**
1222
+ * **CSS Property**: `grid-auto-rows`
1223
+ *
1224
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
1225
+ */
1226
+ '--gar-tablet'?: CSSProperties['gridAutoRows'];
1227
+ '--hvr-gar-tablet'?: CSSProperties['gridAutoRows'];
1228
+ '--focus-gar-tablet'?: CSSProperties['gridAutoRows'];
1229
+ /**
1230
+ * **CSS Property**: `grid-auto-rows`
1231
+ *
1232
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
1233
+ */
1234
+ '--gar-mobile'?: CSSProperties['gridAutoRows'];
1235
+ '--hvr-gar-mobile'?: CSSProperties['gridAutoRows'];
1236
+ '--focus-gar-mobile'?: CSSProperties['gridAutoRows'];
1237
+
1238
+ /**
1239
+ * **CSS Property**: `grid-column`
1240
+ *
1241
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
1242
+ */
1243
+
1244
+ '--gc'?: CSSProperties['gridColumn'];
1245
+ '--hvr-gc'?: CSSProperties['gridColumn'];
1246
+ '--focus-gc'?: CSSProperties['gridColumn'];
1247
+
1248
+ /**
1249
+ * **CSS Property**: `grid-column`
1250
+ *
1251
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
1252
+ */
1253
+ '--gc-tablet'?: CSSProperties['gridColumn'];
1254
+ '--hvr-gc-tablet'?: CSSProperties['gridColumn'];
1255
+ '--focus-gc-tablet'?: CSSProperties['gridColumn'];
1256
+ /**
1257
+ * **CSS Property**: `grid-column`
1258
+ *
1259
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
1260
+ */
1261
+ '--gc-mobile'?: CSSProperties['gridColumn'];
1262
+ '--hvr-gc-mobile'?: CSSProperties['gridColumn'];
1263
+ '--focus-gc-mobile'?: CSSProperties['gridColumn'];
1264
+
1265
+ /**
1266
+ * **CSS Property**: `grid-gap`
1267
+ *
1268
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
1269
+ */
1270
+
1271
+ '--gg'?: CSSProperties['gridGap'];
1272
+ '--hvr-gg'?: CSSProperties['gridGap'];
1273
+ '--focus-gg'?: CSSProperties['gridGap'];
1274
+
1275
+ /**
1276
+ * **CSS Property**: `grid-gap`
1277
+ *
1278
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
1279
+ */
1280
+ '--gg-tablet'?: CSSProperties['gridGap'];
1281
+ '--hvr-gg-tablet'?: CSSProperties['gridGap'];
1282
+ '--focus-gg-tablet'?: CSSProperties['gridGap'];
1283
+ /**
1284
+ * **CSS Property**: `grid-gap`
1285
+ *
1286
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
1287
+ */
1288
+ '--gg-mobile'?: CSSProperties['gridGap'];
1289
+ '--hvr-gg-mobile'?: CSSProperties['gridGap'];
1290
+ '--focus-gg-mobile'?: CSSProperties['gridGap'];
1291
+
1292
+ /**
1293
+ * **CSS Property**: `grid-row`
1294
+ *
1295
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
1296
+ */
1297
+
1298
+ '--gr'?: CSSProperties['gridRow'];
1299
+ '--hvr-gr'?: CSSProperties['gridRow'];
1300
+ '--focus-gr'?: CSSProperties['gridRow'];
1301
+
1302
+ /**
1303
+ * **CSS Property**: `grid-row`
1304
+ *
1305
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
1306
+ */
1307
+ '--gr-tablet'?: CSSProperties['gridRow'];
1308
+ '--hvr-gr-tablet'?: CSSProperties['gridRow'];
1309
+ '--focus-gr-tablet'?: CSSProperties['gridRow'];
1310
+ /**
1311
+ * **CSS Property**: `grid-row`
1312
+ *
1313
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
1314
+ */
1315
+ '--gr-mobile'?: CSSProperties['gridRow'];
1316
+ '--hvr-gr-mobile'?: CSSProperties['gridRow'];
1317
+ '--focus-gr-mobile'?: CSSProperties['gridRow'];
1318
+
1319
+ /**
1320
+ * **CSS Property**: `grid-template-columns`
1321
+ *
1322
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
1323
+ */
1324
+
1325
+ '--gtc'?: CSSProperties['gridTemplateColumns'];
1326
+ '--hvr-gtc'?: CSSProperties['gridTemplateColumns'];
1327
+ '--focus-gtc'?: CSSProperties['gridTemplateColumns'];
1328
+
1329
+ /**
1330
+ * **CSS Property**: `grid-template-columns`
1331
+ *
1332
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
1333
+ */
1334
+ '--gtc-tablet'?: CSSProperties['gridTemplateColumns'];
1335
+ '--hvr-gtc-tablet'?: CSSProperties['gridTemplateColumns'];
1336
+ '--focus-gtc-tablet'?: CSSProperties['gridTemplateColumns'];
1337
+ /**
1338
+ * **CSS Property**: `grid-template-columns`
1339
+ *
1340
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
1341
+ */
1342
+ '--gtc-mobile'?: CSSProperties['gridTemplateColumns'];
1343
+ '--hvr-gtc-mobile'?: CSSProperties['gridTemplateColumns'];
1344
+ '--focus-gtc-mobile'?: CSSProperties['gridTemplateColumns'];
1345
+
1346
+ /**
1347
+ * **CSS Property**: `grid-template-rows`
1348
+ *
1349
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
1350
+ */
1351
+
1352
+ '--gtr'?: CSSProperties['gridTemplateRows'];
1353
+ '--hvr-gtr'?: CSSProperties['gridTemplateRows'];
1354
+ '--focus-gtr'?: CSSProperties['gridTemplateRows'];
1355
+
1356
+ /**
1357
+ * **CSS Property**: `grid-template-rows`
1358
+ *
1359
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
1360
+ */
1361
+ '--gtr-tablet'?: CSSProperties['gridTemplateRows'];
1362
+ '--hvr-gtr-tablet'?: CSSProperties['gridTemplateRows'];
1363
+ '--focus-gtr-tablet'?: CSSProperties['gridTemplateRows'];
1364
+ /**
1365
+ * **CSS Property**: `grid-template-rows`
1366
+ *
1367
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
1368
+ */
1369
+ '--gtr-mobile'?: CSSProperties['gridTemplateRows'];
1370
+ '--hvr-gtr-mobile'?: CSSProperties['gridTemplateRows'];
1371
+ '--focus-gtr-mobile'?: CSSProperties['gridTemplateRows'];
1372
+
1373
+ /**
1374
+ * **CSS Property**: `height`
1375
+ *
1376
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/height
1377
+ */
1378
+
1379
+ '--h'?: CSSProperties['height'];
1380
+ '--hvr-h'?: CSSProperties['height'];
1381
+ '--focus-h'?: CSSProperties['height'];
1382
+
1383
+ /**
1384
+ * **CSS Property**: `height`
1385
+ *
1386
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/height
1387
+ */
1388
+ '--h-tablet'?: CSSProperties['height'];
1389
+ '--hvr-h-tablet'?: CSSProperties['height'];
1390
+ '--focus-h-tablet'?: CSSProperties['height'];
1391
+ /**
1392
+ * **CSS Property**: `height`
1393
+ *
1394
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/height
1395
+ */
1396
+ '--h-mobile'?: CSSProperties['height'];
1397
+ '--hvr-h-mobile'?: CSSProperties['height'];
1398
+ '--focus-h-mobile'?: CSSProperties['height'];
1399
+
1400
+ /**
1401
+ * **CSS Property**: `justify-content`
1402
+ *
1403
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
1404
+ */
1405
+
1406
+ '--jc'?: CSSProperties['justifyContent'];
1407
+ '--hvr-jc'?: CSSProperties['justifyContent'];
1408
+ '--focus-jc'?: CSSProperties['justifyContent'];
1409
+
1410
+ /**
1411
+ * **CSS Property**: `justify-content`
1412
+ *
1413
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
1414
+ */
1415
+ '--jc-tablet'?: CSSProperties['justifyContent'];
1416
+ '--hvr-jc-tablet'?: CSSProperties['justifyContent'];
1417
+ '--focus-jc-tablet'?: CSSProperties['justifyContent'];
1418
+ /**
1419
+ * **CSS Property**: `justify-content`
1420
+ *
1421
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
1422
+ */
1423
+ '--jc-mobile'?: CSSProperties['justifyContent'];
1424
+ '--hvr-jc-mobile'?: CSSProperties['justifyContent'];
1425
+ '--focus-jc-mobile'?: CSSProperties['justifyContent'];
1426
+
1427
+ /**
1428
+ * **CSS Property**: `left`
1429
+ *
1430
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/left
1431
+ */
1432
+
1433
+ '--left'?: CSSProperties['left'];
1434
+ '--hvr-left'?: CSSProperties['left'];
1435
+ '--focus-left'?: CSSProperties['left'];
1436
+
1437
+ /**
1438
+ * **CSS Property**: `left`
1439
+ *
1440
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/left
1441
+ */
1442
+ '--left-tablet'?: CSSProperties['left'];
1443
+ '--hvr-left-tablet'?: CSSProperties['left'];
1444
+ '--focus-left-tablet'?: CSSProperties['left'];
1445
+ /**
1446
+ * **CSS Property**: `left`
1447
+ *
1448
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/left
1449
+ */
1450
+ '--left-mobile'?: CSSProperties['left'];
1451
+ '--hvr-left-mobile'?: CSSProperties['left'];
1452
+ '--focus-left-mobile'?: CSSProperties['left'];
1453
+
1454
+ /**
1455
+ * **CSS Property**: `letter-spacing`
1456
+ *
1457
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing
1458
+ */
1459
+
1460
+ '--ls'?: CSSProperties['letterSpacing'];
1461
+ '--hvr-ls'?: CSSProperties['letterSpacing'];
1462
+ '--focus-ls'?: CSSProperties['letterSpacing'];
1463
+
1464
+ /**
1465
+ * **CSS Property**: `letter-spacing`
1466
+ *
1467
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing
1468
+ */
1469
+ '--ls-tablet'?: CSSProperties['letterSpacing'];
1470
+ '--hvr-ls-tablet'?: CSSProperties['letterSpacing'];
1471
+ '--focus-ls-tablet'?: CSSProperties['letterSpacing'];
1472
+ /**
1473
+ * **CSS Property**: `letter-spacing`
1474
+ *
1475
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing
1476
+ */
1477
+ '--ls-mobile'?: CSSProperties['letterSpacing'];
1478
+ '--hvr-ls-mobile'?: CSSProperties['letterSpacing'];
1479
+ '--focus-ls-mobile'?: CSSProperties['letterSpacing'];
1480
+
1481
+ /**
1482
+ * **CSS Property**: `-webkit-line-clamp`
1483
+ *
1484
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp
1485
+ */
1486
+
1487
+ '--line-clamp'?: CSSProperties['webkitLineClamp'];
1488
+ '--hvr-line-clamp'?: CSSProperties['webkitLineClamp'];
1489
+ '--focus-line-clamp'?: CSSProperties['webkitLineClamp'];
1490
+
1491
+ /**
1492
+ * **CSS Property**: `-webkit-line-clamp`
1493
+ *
1494
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp
1495
+ */
1496
+ '--line-clamp-tablet'?: CSSProperties['webkitLineClamp'];
1497
+ '--hvr-line-clamp-tablet'?: CSSProperties['webkitLineClamp'];
1498
+ '--focus-line-clamp-tablet'?: CSSProperties['webkitLineClamp'];
1499
+ /**
1500
+ * **CSS Property**: `-webkit-line-clamp`
1501
+ *
1502
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp
1503
+ */
1504
+ '--line-clamp-mobile'?: CSSProperties['webkitLineClamp'];
1505
+ '--hvr-line-clamp-mobile'?: CSSProperties['webkitLineClamp'];
1506
+ '--focus-line-clamp-mobile'?: CSSProperties['webkitLineClamp'];
1507
+
1508
+ /**
1509
+ * **CSS Property**: `line-height`
1510
+ *
1511
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/line-height
1512
+ */
1513
+
1514
+ '--lh'?: CSSProperties['lineHeight'];
1515
+ '--hvr-lh'?: CSSProperties['lineHeight'];
1516
+ '--focus-lh'?: CSSProperties['lineHeight'];
1517
+
1518
+ /**
1519
+ * **CSS Property**: `line-height`
1520
+ *
1521
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/line-height
1522
+ */
1523
+ '--lh-tablet'?: CSSProperties['lineHeight'];
1524
+ '--hvr-lh-tablet'?: CSSProperties['lineHeight'];
1525
+ '--focus-lh-tablet'?: CSSProperties['lineHeight'];
1526
+ /**
1527
+ * **CSS Property**: `line-height`
1528
+ *
1529
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/line-height
1530
+ */
1531
+ '--lh-mobile'?: CSSProperties['lineHeight'];
1532
+ '--hvr-lh-mobile'?: CSSProperties['lineHeight'];
1533
+ '--focus-lh-mobile'?: CSSProperties['lineHeight'];
1534
+
1535
+ /**
1536
+ * **CSS Property**: `text-decoration-thickness`
1537
+ *
1538
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-thickness
1539
+ */
1540
+
1541
+ '--tdt'?: CSSProperties['textDecorationThickness'];
1542
+ '--hvr-tdt'?: CSSProperties['textDecorationThickness'];
1543
+ '--focus-tdt'?: CSSProperties['textDecorationThickness'];
1544
+
1545
+ /**
1546
+ * **CSS Property**: `text-decoration-thickness`
1547
+ *
1548
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-thickness
1549
+ */
1550
+ '--tdt-tablet'?: CSSProperties['textDecorationThickness'];
1551
+ '--hvr-tdt-tablet'?: CSSProperties['textDecorationThickness'];
1552
+ '--focus-tdt-tablet'?: CSSProperties['textDecorationThickness'];
1553
+ /**
1554
+ * **CSS Property**: `text-decoration-thickness`
1555
+ *
1556
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-thickness
1557
+ */
1558
+ '--tdt-mobile'?: CSSProperties['textDecorationThickness'];
1559
+ '--hvr-tdt-mobile'?: CSSProperties['textDecorationThickness'];
1560
+ '--focus-tdt-mobile'?: CSSProperties['textDecorationThickness'];
1561
+
1562
+ /**
1563
+ * **CSS Property**: `text-decoration-color`
1564
+ *
1565
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color
1566
+ */
1567
+
1568
+ '--tdc'?: CSSProperties['textDecorationColor'];
1569
+ '--hvr-tdc'?: CSSProperties['textDecorationColor'];
1570
+ '--focus-tdc'?: CSSProperties['textDecorationColor'];
1571
+
1572
+ /**
1573
+ * **CSS Property**: `text-decoration-color`
1574
+ *
1575
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color
1576
+ */
1577
+ '--tdc-tablet'?: CSSProperties['textDecorationColor'];
1578
+ '--hvr-tdc-tablet'?: CSSProperties['textDecorationColor'];
1579
+ '--focus-tdc-tablet'?: CSSProperties['textDecorationColor'];
1580
+ /**
1581
+ * **CSS Property**: `text-decoration-color`
1582
+ *
1583
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color
1584
+ */
1585
+ '--tdc-mobile'?: CSSProperties['textDecorationColor'];
1586
+ '--hvr-tdc-mobile'?: CSSProperties['textDecorationColor'];
1587
+ '--focus-tdc-mobile'?: CSSProperties['textDecorationColor'];
1588
+
1589
+ /**
1590
+ * **CSS Property**: `text-decoration-style`
1591
+ *
1592
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style
1593
+ */
1594
+
1595
+ '--tds'?: CSSProperties['textDecorationStyle'];
1596
+ '--hvr-tds'?: CSSProperties['textDecorationStyle'];
1597
+ '--focus-tds'?: CSSProperties['textDecorationStyle'];
1598
+
1599
+ /**
1600
+ * **CSS Property**: `text-decoration-style`
1601
+ *
1602
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style
1603
+ */
1604
+ '--tds-tablet'?: CSSProperties['textDecorationStyle'];
1605
+ '--hvr-tds-tablet'?: CSSProperties['textDecorationStyle'];
1606
+ '--focus-tds-tablet'?: CSSProperties['textDecorationStyle'];
1607
+ /**
1608
+ * **CSS Property**: `text-decoration-style`
1609
+ *
1610
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style
1611
+ */
1612
+ '--tds-mobile'?: CSSProperties['textDecorationStyle'];
1613
+ '--hvr-tds-mobile'?: CSSProperties['textDecorationStyle'];
1614
+ '--focus-tds-mobile'?: CSSProperties['textDecorationStyle'];
1615
+
1616
+ /**
1617
+ * **CSS Property**: `margin`
1618
+ *
1619
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin
1620
+ */
1621
+
1622
+ '--m'?: CSSProperties['margin'];
1623
+ '--hvr-m'?: CSSProperties['margin'];
1624
+ '--focus-m'?: CSSProperties['margin'];
1625
+
1626
+ /**
1627
+ * **CSS Property**: `margin`
1628
+ *
1629
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin
1630
+ */
1631
+ '--m-tablet'?: CSSProperties['margin'];
1632
+ '--hvr-m-tablet'?: CSSProperties['margin'];
1633
+ '--focus-m-tablet'?: CSSProperties['margin'];
1634
+ /**
1635
+ * **CSS Property**: `margin`
1636
+ *
1637
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin
1638
+ */
1639
+ '--m-mobile'?: CSSProperties['margin'];
1640
+ '--hvr-m-mobile'?: CSSProperties['margin'];
1641
+ '--focus-m-mobile'?: CSSProperties['margin'];
1642
+
1643
+ /**
1644
+ * **CSS Property**: `margin-bottom`
1645
+ *
1646
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom
1647
+ */
1648
+
1649
+ '--mb'?: CSSProperties['marginBottom'];
1650
+ '--hvr-mb'?: CSSProperties['marginBottom'];
1651
+ '--focus-mb'?: CSSProperties['marginBottom'];
1652
+
1653
+ /**
1654
+ * **CSS Property**: `margin-bottom`
1655
+ *
1656
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom
1657
+ */
1658
+ '--mb-tablet'?: CSSProperties['marginBottom'];
1659
+ '--hvr-mb-tablet'?: CSSProperties['marginBottom'];
1660
+ '--focus-mb-tablet'?: CSSProperties['marginBottom'];
1661
+ /**
1662
+ * **CSS Property**: `margin-bottom`
1663
+ *
1664
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom
1665
+ */
1666
+ '--mb-mobile'?: CSSProperties['marginBottom'];
1667
+ '--hvr-mb-mobile'?: CSSProperties['marginBottom'];
1668
+ '--focus-mb-mobile'?: CSSProperties['marginBottom'];
1669
+
1670
+ /**
1671
+ * **CSS Property**: `margin-left`
1672
+ *
1673
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left
1674
+ */
1675
+
1676
+ '--ml'?: CSSProperties['marginLeft'];
1677
+ '--hvr-ml'?: CSSProperties['marginLeft'];
1678
+ '--focus-ml'?: CSSProperties['marginLeft'];
1679
+
1680
+ /**
1681
+ * **CSS Property**: `margin-left`
1682
+ *
1683
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left
1684
+ */
1685
+ '--ml-tablet'?: CSSProperties['marginLeft'];
1686
+ '--hvr-ml-tablet'?: CSSProperties['marginLeft'];
1687
+ '--focus-ml-tablet'?: CSSProperties['marginLeft'];
1688
+ /**
1689
+ * **CSS Property**: `margin-left`
1690
+ *
1691
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left
1692
+ */
1693
+ '--ml-mobile'?: CSSProperties['marginLeft'];
1694
+ '--hvr-ml-mobile'?: CSSProperties['marginLeft'];
1695
+ '--focus-ml-mobile'?: CSSProperties['marginLeft'];
1696
+
1697
+ /**
1698
+ * **CSS Property**: `margin-right`
1699
+ *
1700
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right
1701
+ */
1702
+
1703
+ '--mr'?: CSSProperties['marginRight'];
1704
+ '--hvr-mr'?: CSSProperties['marginRight'];
1705
+ '--focus-mr'?: CSSProperties['marginRight'];
1706
+
1707
+ /**
1708
+ * **CSS Property**: `margin-right`
1709
+ *
1710
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right
1711
+ */
1712
+ '--mr-tablet'?: CSSProperties['marginRight'];
1713
+ '--hvr-mr-tablet'?: CSSProperties['marginRight'];
1714
+ '--focus-mr-tablet'?: CSSProperties['marginRight'];
1715
+ /**
1716
+ * **CSS Property**: `margin-right`
1717
+ *
1718
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right
1719
+ */
1720
+ '--mr-mobile'?: CSSProperties['marginRight'];
1721
+ '--hvr-mr-mobile'?: CSSProperties['marginRight'];
1722
+ '--focus-mr-mobile'?: CSSProperties['marginRight'];
1723
+
1724
+ /**
1725
+ * **CSS Property**: `margin-top`
1726
+ *
1727
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top
1728
+ */
1729
+
1730
+ '--mt'?: CSSProperties['marginTop'];
1731
+ '--hvr-mt'?: CSSProperties['marginTop'];
1732
+ '--focus-mt'?: CSSProperties['marginTop'];
1733
+
1734
+ /**
1735
+ * **CSS Property**: `margin-top`
1736
+ *
1737
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top
1738
+ */
1739
+ '--mt-tablet'?: CSSProperties['marginTop'];
1740
+ '--hvr-mt-tablet'?: CSSProperties['marginTop'];
1741
+ '--focus-mt-tablet'?: CSSProperties['marginTop'];
1742
+ /**
1743
+ * **CSS Property**: `margin-top`
1744
+ *
1745
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top
1746
+ */
1747
+ '--mt-mobile'?: CSSProperties['marginTop'];
1748
+ '--hvr-mt-mobile'?: CSSProperties['marginTop'];
1749
+ '--focus-mt-mobile'?: CSSProperties['marginTop'];
1750
+
1751
+ /**
1752
+ * **CSS Property**: `max-height`
1753
+ *
1754
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-height
1755
+ */
1756
+
1757
+ '--maxh'?: CSSProperties['maxHeight'];
1758
+ '--hvr-maxh'?: CSSProperties['maxHeight'];
1759
+ '--focus-maxh'?: CSSProperties['maxHeight'];
1760
+
1761
+ /**
1762
+ * **CSS Property**: `max-height`
1763
+ *
1764
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-height
1765
+ */
1766
+ '--maxh-tablet'?: CSSProperties['maxHeight'];
1767
+ '--hvr-maxh-tablet'?: CSSProperties['maxHeight'];
1768
+ '--focus-maxh-tablet'?: CSSProperties['maxHeight'];
1769
+ /**
1770
+ * **CSS Property**: `max-height`
1771
+ *
1772
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-height
1773
+ */
1774
+ '--maxh-mobile'?: CSSProperties['maxHeight'];
1775
+ '--hvr-maxh-mobile'?: CSSProperties['maxHeight'];
1776
+ '--focus-maxh-mobile'?: CSSProperties['maxHeight'];
1777
+
1778
+ /**
1779
+ * **CSS Property**: `max-width`
1780
+ *
1781
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-width
1782
+ */
1783
+
1784
+ '--maxw'?: CSSProperties['maxWidth'];
1785
+ '--hvr-maxw'?: CSSProperties['maxWidth'];
1786
+ '--focus-maxw'?: CSSProperties['maxWidth'];
1787
+
1788
+ /**
1789
+ * **CSS Property**: `max-width`
1790
+ *
1791
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-width
1792
+ */
1793
+ '--maxw-tablet'?: CSSProperties['maxWidth'];
1794
+ '--hvr-maxw-tablet'?: CSSProperties['maxWidth'];
1795
+ '--focus-maxw-tablet'?: CSSProperties['maxWidth'];
1796
+ /**
1797
+ * **CSS Property**: `max-width`
1798
+ *
1799
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/max-width
1800
+ */
1801
+ '--maxw-mobile'?: CSSProperties['maxWidth'];
1802
+ '--hvr-maxw-mobile'?: CSSProperties['maxWidth'];
1803
+ '--focus-maxw-mobile'?: CSSProperties['maxWidth'];
1804
+
1805
+ /**
1806
+ * **CSS Property**: `min-height`
1807
+ *
1808
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-height
1809
+ */
1810
+
1811
+ '--minh'?: CSSProperties['minHeight'];
1812
+ '--hvr-minh'?: CSSProperties['minHeight'];
1813
+ '--focus-minh'?: CSSProperties['minHeight'];
1814
+
1815
+ /**
1816
+ * **CSS Property**: `min-height`
1817
+ *
1818
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-height
1819
+ */
1820
+ '--minh-tablet'?: CSSProperties['minHeight'];
1821
+ '--hvr-minh-tablet'?: CSSProperties['minHeight'];
1822
+ '--focus-minh-tablet'?: CSSProperties['minHeight'];
1823
+ /**
1824
+ * **CSS Property**: `min-height`
1825
+ *
1826
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-height
1827
+ */
1828
+ '--minh-mobile'?: CSSProperties['minHeight'];
1829
+ '--hvr-minh-mobile'?: CSSProperties['minHeight'];
1830
+ '--focus-minh-mobile'?: CSSProperties['minHeight'];
1831
+
1832
+ /**
1833
+ * **CSS Property**: `min-width`
1834
+ *
1835
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-width
1836
+ */
1837
+
1838
+ '--minw'?: CSSProperties['minWidth'];
1839
+ '--hvr-minw'?: CSSProperties['minWidth'];
1840
+ '--focus-minw'?: CSSProperties['minWidth'];
1841
+
1842
+ /**
1843
+ * **CSS Property**: `min-width`
1844
+ *
1845
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-width
1846
+ */
1847
+ '--minw-tablet'?: CSSProperties['minWidth'];
1848
+ '--hvr-minw-tablet'?: CSSProperties['minWidth'];
1849
+ '--focus-minw-tablet'?: CSSProperties['minWidth'];
1850
+ /**
1851
+ * **CSS Property**: `min-width`
1852
+ *
1853
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/min-width
1854
+ */
1855
+ '--minw-mobile'?: CSSProperties['minWidth'];
1856
+ '--hvr-minw-mobile'?: CSSProperties['minWidth'];
1857
+ '--focus-minw-mobile'?: CSSProperties['minWidth'];
1858
+
1859
+ /**
1860
+ * **CSS Property**: `rotate`
1861
+ *
1862
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/rotate
1863
+ */
1864
+
1865
+ '--rt'?: CSSProperties['rotate'];
1866
+ '--hvr-rt'?: CSSProperties['rotate'];
1867
+ '--focus-rt'?: CSSProperties['rotate'];
1868
+
1869
+ /**
1870
+ * **CSS Property**: `rotate`
1871
+ *
1872
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/rotate
1873
+ */
1874
+ '--rt-tablet'?: CSSProperties['rotate'];
1875
+ '--hvr-rt-tablet'?: CSSProperties['rotate'];
1876
+ '--focus-rt-tablet'?: CSSProperties['rotate'];
1877
+ /**
1878
+ * **CSS Property**: `rotate`
1879
+ *
1880
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/rotate
1881
+ */
1882
+ '--rt-mobile'?: CSSProperties['rotate'];
1883
+ '--hvr-rt-mobile'?: CSSProperties['rotate'];
1884
+ '--focus-rt-mobile'?: CSSProperties['rotate'];
1885
+
1886
+ /**
1887
+ * **CSS Property**: `object-fit`
1888
+ *
1889
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit
1890
+ */
1891
+
1892
+ '--objf'?: CSSProperties['objectFit'];
1893
+ '--hvr-objf'?: CSSProperties['objectFit'];
1894
+ '--focus-objf'?: CSSProperties['objectFit'];
1895
+
1896
+ /**
1897
+ * **CSS Property**: `object-fit`
1898
+ *
1899
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit
1900
+ */
1901
+ '--objf-tablet'?: CSSProperties['objectFit'];
1902
+ '--hvr-objf-tablet'?: CSSProperties['objectFit'];
1903
+ '--focus-objf-tablet'?: CSSProperties['objectFit'];
1904
+ /**
1905
+ * **CSS Property**: `object-fit`
1906
+ *
1907
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit
1908
+ */
1909
+ '--objf-mobile'?: CSSProperties['objectFit'];
1910
+ '--hvr-objf-mobile'?: CSSProperties['objectFit'];
1911
+ '--focus-objf-mobile'?: CSSProperties['objectFit'];
1912
+
1913
+ /**
1914
+ * **CSS Property**: `object-position`
1915
+ *
1916
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-position
1917
+ */
1918
+
1919
+ '--objp'?: CSSProperties['objectPosition'];
1920
+ '--hvr-objp'?: CSSProperties['objectPosition'];
1921
+ '--focus-objp'?: CSSProperties['objectPosition'];
1922
+
1923
+ /**
1924
+ * **CSS Property**: `object-position`
1925
+ *
1926
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-position
1927
+ */
1928
+ '--objp-tablet'?: CSSProperties['objectPosition'];
1929
+ '--hvr-objp-tablet'?: CSSProperties['objectPosition'];
1930
+ '--focus-objp-tablet'?: CSSProperties['objectPosition'];
1931
+ /**
1932
+ * **CSS Property**: `object-position`
1933
+ *
1934
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/object-position
1935
+ */
1936
+ '--objp-mobile'?: CSSProperties['objectPosition'];
1937
+ '--hvr-objp-mobile'?: CSSProperties['objectPosition'];
1938
+ '--focus-objp-mobile'?: CSSProperties['objectPosition'];
1939
+
1940
+ /**
1941
+ * **CSS Property**: `opacity`
1942
+ *
1943
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/opacity
1944
+ */
1945
+
1946
+ '--op'?: CSSProperties['opacity'];
1947
+ '--hvr-op'?: CSSProperties['opacity'];
1948
+ '--focus-op'?: CSSProperties['opacity'];
1949
+
1950
+ /**
1951
+ * **CSS Property**: `opacity`
1952
+ *
1953
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/opacity
1954
+ */
1955
+ '--op-tablet'?: CSSProperties['opacity'];
1956
+ '--hvr-op-tablet'?: CSSProperties['opacity'];
1957
+ '--focus-op-tablet'?: CSSProperties['opacity'];
1958
+ /**
1959
+ * **CSS Property**: `opacity`
1960
+ *
1961
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/opacity
1962
+ */
1963
+ '--op-mobile'?: CSSProperties['opacity'];
1964
+ '--hvr-op-mobile'?: CSSProperties['opacity'];
1965
+ '--focus-op-mobile'?: CSSProperties['opacity'];
1966
+
1967
+ /**
1968
+ * **CSS Property**: `order`
1969
+ *
1970
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/order
1971
+ */
1972
+
1973
+ '--o'?: CSSProperties['order'];
1974
+ '--hvr-o'?: CSSProperties['order'];
1975
+ '--focus-o'?: CSSProperties['order'];
1976
+
1977
+ /**
1978
+ * **CSS Property**: `order`
1979
+ *
1980
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/order
1981
+ */
1982
+ '--o-tablet'?: CSSProperties['order'];
1983
+ '--hvr-o-tablet'?: CSSProperties['order'];
1984
+ '--focus-o-tablet'?: CSSProperties['order'];
1985
+ /**
1986
+ * **CSS Property**: `order`
1987
+ *
1988
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/order
1989
+ */
1990
+ '--o-mobile'?: CSSProperties['order'];
1991
+ '--hvr-o-mobile'?: CSSProperties['order'];
1992
+ '--focus-o-mobile'?: CSSProperties['order'];
1993
+
1994
+ /**
1995
+ * **CSS Property**: `padding`
1996
+ *
1997
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding
1998
+ */
1999
+
2000
+ '--p'?: CSSProperties['padding'];
2001
+ '--hvr-p'?: CSSProperties['padding'];
2002
+ '--focus-p'?: CSSProperties['padding'];
2003
+
2004
+ /**
2005
+ * **CSS Property**: `padding`
2006
+ *
2007
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding
2008
+ */
2009
+ '--p-tablet'?: CSSProperties['padding'];
2010
+ '--hvr-p-tablet'?: CSSProperties['padding'];
2011
+ '--focus-p-tablet'?: CSSProperties['padding'];
2012
+ /**
2013
+ * **CSS Property**: `padding`
2014
+ *
2015
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding
2016
+ */
2017
+ '--p-mobile'?: CSSProperties['padding'];
2018
+ '--hvr-p-mobile'?: CSSProperties['padding'];
2019
+ '--focus-p-mobile'?: CSSProperties['padding'];
2020
+
2021
+ /**
2022
+ * **CSS Property**: `padding-bottom`
2023
+ *
2024
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom
2025
+ */
2026
+
2027
+ '--pb'?: CSSProperties['paddingBottom'];
2028
+ '--hvr-pb'?: CSSProperties['paddingBottom'];
2029
+ '--focus-pb'?: CSSProperties['paddingBottom'];
2030
+
2031
+ /**
2032
+ * **CSS Property**: `padding-bottom`
2033
+ *
2034
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom
2035
+ */
2036
+ '--pb-tablet'?: CSSProperties['paddingBottom'];
2037
+ '--hvr-pb-tablet'?: CSSProperties['paddingBottom'];
2038
+ '--focus-pb-tablet'?: CSSProperties['paddingBottom'];
2039
+ /**
2040
+ * **CSS Property**: `padding-bottom`
2041
+ *
2042
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom
2043
+ */
2044
+ '--pb-mobile'?: CSSProperties['paddingBottom'];
2045
+ '--hvr-pb-mobile'?: CSSProperties['paddingBottom'];
2046
+ '--focus-pb-mobile'?: CSSProperties['paddingBottom'];
2047
+
2048
+ /**
2049
+ * **CSS Property**: `padding-left`
2050
+ *
2051
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left
2052
+ */
2053
+
2054
+ '--pl'?: CSSProperties['paddingLeft'];
2055
+ '--hvr-pl'?: CSSProperties['paddingLeft'];
2056
+ '--focus-pl'?: CSSProperties['paddingLeft'];
2057
+
2058
+ /**
2059
+ * **CSS Property**: `padding-left`
2060
+ *
2061
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left
2062
+ */
2063
+ '--pl-tablet'?: CSSProperties['paddingLeft'];
2064
+ '--hvr-pl-tablet'?: CSSProperties['paddingLeft'];
2065
+ '--focus-pl-tablet'?: CSSProperties['paddingLeft'];
2066
+ /**
2067
+ * **CSS Property**: `padding-left`
2068
+ *
2069
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left
2070
+ */
2071
+ '--pl-mobile'?: CSSProperties['paddingLeft'];
2072
+ '--hvr-pl-mobile'?: CSSProperties['paddingLeft'];
2073
+ '--focus-pl-mobile'?: CSSProperties['paddingLeft'];
2074
+
2075
+ /**
2076
+ * **CSS Property**: `padding-right`
2077
+ *
2078
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right
2079
+ */
2080
+
2081
+ '--pr'?: CSSProperties['paddingRight'];
2082
+ '--hvr-pr'?: CSSProperties['paddingRight'];
2083
+ '--focus-pr'?: CSSProperties['paddingRight'];
2084
+
2085
+ /**
2086
+ * **CSS Property**: `padding-right`
2087
+ *
2088
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right
2089
+ */
2090
+ '--pr-tablet'?: CSSProperties['paddingRight'];
2091
+ '--hvr-pr-tablet'?: CSSProperties['paddingRight'];
2092
+ '--focus-pr-tablet'?: CSSProperties['paddingRight'];
2093
+ /**
2094
+ * **CSS Property**: `padding-right`
2095
+ *
2096
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right
2097
+ */
2098
+ '--pr-mobile'?: CSSProperties['paddingRight'];
2099
+ '--hvr-pr-mobile'?: CSSProperties['paddingRight'];
2100
+ '--focus-pr-mobile'?: CSSProperties['paddingRight'];
2101
+
2102
+ /**
2103
+ * **CSS Property**: `padding-top`
2104
+ *
2105
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top
2106
+ */
2107
+
2108
+ '--pt'?: CSSProperties['paddingTop'];
2109
+ '--hvr-pt'?: CSSProperties['paddingTop'];
2110
+ '--focus-pt'?: CSSProperties['paddingTop'];
2111
+
2112
+ /**
2113
+ * **CSS Property**: `padding-top`
2114
+ *
2115
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top
2116
+ */
2117
+ '--pt-tablet'?: CSSProperties['paddingTop'];
2118
+ '--hvr-pt-tablet'?: CSSProperties['paddingTop'];
2119
+ '--focus-pt-tablet'?: CSSProperties['paddingTop'];
2120
+ /**
2121
+ * **CSS Property**: `padding-top`
2122
+ *
2123
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top
2124
+ */
2125
+ '--pt-mobile'?: CSSProperties['paddingTop'];
2126
+ '--hvr-pt-mobile'?: CSSProperties['paddingTop'];
2127
+ '--focus-pt-mobile'?: CSSProperties['paddingTop'];
2128
+
2129
+ /**
2130
+ * **CSS Property**: `position`
2131
+ *
2132
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/position
2133
+ */
2134
+
2135
+ '--pos'?: CSSProperties['position'];
2136
+ '--hvr-pos'?: CSSProperties['position'];
2137
+ '--focus-pos'?: CSSProperties['position'];
2138
+
2139
+ /**
2140
+ * **CSS Property**: `position`
2141
+ *
2142
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/position
2143
+ */
2144
+ '--pos-tablet'?: CSSProperties['position'];
2145
+ '--hvr-pos-tablet'?: CSSProperties['position'];
2146
+ '--focus-pos-tablet'?: CSSProperties['position'];
2147
+ /**
2148
+ * **CSS Property**: `position`
2149
+ *
2150
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/position
2151
+ */
2152
+ '--pos-mobile'?: CSSProperties['position'];
2153
+ '--hvr-pos-mobile'?: CSSProperties['position'];
2154
+ '--focus-pos-mobile'?: CSSProperties['position'];
2155
+
2156
+ /**
2157
+ * **CSS Property**: `right`
2158
+ *
2159
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/right
2160
+ */
2161
+
2162
+ '--right'?: CSSProperties['right'];
2163
+ '--hvr-right'?: CSSProperties['right'];
2164
+ '--focus-right'?: CSSProperties['right'];
2165
+
2166
+ /**
2167
+ * **CSS Property**: `right`
2168
+ *
2169
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/right
2170
+ */
2171
+ '--right-tablet'?: CSSProperties['right'];
2172
+ '--hvr-right-tablet'?: CSSProperties['right'];
2173
+ '--focus-right-tablet'?: CSSProperties['right'];
2174
+ /**
2175
+ * **CSS Property**: `right`
2176
+ *
2177
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/right
2178
+ */
2179
+ '--right-mobile'?: CSSProperties['right'];
2180
+ '--hvr-right-mobile'?: CSSProperties['right'];
2181
+ '--focus-right-mobile'?: CSSProperties['right'];
2182
+
2183
+ /**
2184
+ * **CSS Property**: `row-gap`
2185
+ *
2186
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap
2187
+ */
2188
+
2189
+ '--rg'?: CSSProperties['rowGap'];
2190
+ '--hvr-rg'?: CSSProperties['rowGap'];
2191
+ '--focus-rg'?: CSSProperties['rowGap'];
2192
+
2193
+ /**
2194
+ * **CSS Property**: `row-gap`
2195
+ *
2196
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap
2197
+ */
2198
+ '--rg-tablet'?: CSSProperties['rowGap'];
2199
+ '--hvr-rg-tablet'?: CSSProperties['rowGap'];
2200
+ '--focus-rg-tablet'?: CSSProperties['rowGap'];
2201
+ /**
2202
+ * **CSS Property**: `row-gap`
2203
+ *
2204
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap
2205
+ */
2206
+ '--rg-mobile'?: CSSProperties['rowGap'];
2207
+ '--hvr-rg-mobile'?: CSSProperties['rowGap'];
2208
+ '--focus-rg-mobile'?: CSSProperties['rowGap'];
2209
+
2210
+ /**
2211
+ * **CSS Property**: `text-align`
2212
+ *
2213
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
2214
+ */
2215
+
2216
+ '--ta'?: CSSProperties['textAlign'];
2217
+ '--hvr-ta'?: CSSProperties['textAlign'];
2218
+ '--focus-ta'?: CSSProperties['textAlign'];
2219
+
2220
+ /**
2221
+ * **CSS Property**: `text-align`
2222
+ *
2223
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
2224
+ */
2225
+ '--ta-tablet'?: CSSProperties['textAlign'];
2226
+ '--hvr-ta-tablet'?: CSSProperties['textAlign'];
2227
+ '--focus-ta-tablet'?: CSSProperties['textAlign'];
2228
+ /**
2229
+ * **CSS Property**: `text-align`
2230
+ *
2231
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
2232
+ */
2233
+ '--ta-mobile'?: CSSProperties['textAlign'];
2234
+ '--hvr-ta-mobile'?: CSSProperties['textAlign'];
2235
+ '--focus-ta-mobile'?: CSSProperties['textAlign'];
2236
+
2237
+ /**
2238
+ * **CSS Property**: `text-decoration`
2239
+ *
2240
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
2241
+ */
2242
+
2243
+ '--td'?: CSSProperties['textDecoration'];
2244
+ '--hvr-td'?: CSSProperties['textDecoration'];
2245
+ '--focus-td'?: CSSProperties['textDecoration'];
2246
+
2247
+ /**
2248
+ * **CSS Property**: `text-decoration`
2249
+ *
2250
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
2251
+ */
2252
+ '--td-tablet'?: CSSProperties['textDecoration'];
2253
+ '--hvr-td-tablet'?: CSSProperties['textDecoration'];
2254
+ '--focus-td-tablet'?: CSSProperties['textDecoration'];
2255
+ /**
2256
+ * **CSS Property**: `text-decoration`
2257
+ *
2258
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration
2259
+ */
2260
+ '--td-mobile'?: CSSProperties['textDecoration'];
2261
+ '--hvr-td-mobile'?: CSSProperties['textDecoration'];
2262
+ '--focus-td-mobile'?: CSSProperties['textDecoration'];
2263
+
2264
+ /**
2265
+ * **CSS Property**: `text-shadow`
2266
+ *
2267
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow
2268
+ */
2269
+
2270
+ '--ts'?: CSSProperties['textShadow'];
2271
+ '--hvr-ts'?: CSSProperties['textShadow'];
2272
+ '--focus-ts'?: CSSProperties['textShadow'];
2273
+
2274
+ /**
2275
+ * **CSS Property**: `text-shadow`
2276
+ *
2277
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow
2278
+ */
2279
+ '--ts-tablet'?: CSSProperties['textShadow'];
2280
+ '--hvr-ts-tablet'?: CSSProperties['textShadow'];
2281
+ '--focus-ts-tablet'?: CSSProperties['textShadow'];
2282
+ /**
2283
+ * **CSS Property**: `text-shadow`
2284
+ *
2285
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow
2286
+ */
2287
+ '--ts-mobile'?: CSSProperties['textShadow'];
2288
+ '--hvr-ts-mobile'?: CSSProperties['textShadow'];
2289
+ '--focus-ts-mobile'?: CSSProperties['textShadow'];
2290
+
2291
+ /**
2292
+ * **CSS Property**: `text-transform`
2293
+ *
2294
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform
2295
+ */
2296
+
2297
+ '--tt'?: CSSProperties['textTransform'];
2298
+ '--hvr-tt'?: CSSProperties['textTransform'];
2299
+ '--focus-tt'?: CSSProperties['textTransform'];
2300
+
2301
+ /**
2302
+ * **CSS Property**: `text-transform`
2303
+ *
2304
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform
2305
+ */
2306
+ '--tt-tablet'?: CSSProperties['textTransform'];
2307
+ '--hvr-tt-tablet'?: CSSProperties['textTransform'];
2308
+ '--focus-tt-tablet'?: CSSProperties['textTransform'];
2309
+ /**
2310
+ * **CSS Property**: `text-transform`
2311
+ *
2312
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform
2313
+ */
2314
+ '--tt-mobile'?: CSSProperties['textTransform'];
2315
+ '--hvr-tt-mobile'?: CSSProperties['textTransform'];
2316
+ '--focus-tt-mobile'?: CSSProperties['textTransform'];
2317
+
2318
+ /**
2319
+ * **CSS Property**: `top`
2320
+ *
2321
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/top
2322
+ */
2323
+
2324
+ '--top'?: CSSProperties['top'];
2325
+ '--hvr-top'?: CSSProperties['top'];
2326
+ '--focus-top'?: CSSProperties['top'];
2327
+
2328
+ /**
2329
+ * **CSS Property**: `top`
2330
+ *
2331
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/top
2332
+ */
2333
+ '--top-tablet'?: CSSProperties['top'];
2334
+ '--hvr-top-tablet'?: CSSProperties['top'];
2335
+ '--focus-top-tablet'?: CSSProperties['top'];
2336
+ /**
2337
+ * **CSS Property**: `top`
2338
+ *
2339
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/top
2340
+ */
2341
+ '--top-mobile'?: CSSProperties['top'];
2342
+ '--hvr-top-mobile'?: CSSProperties['top'];
2343
+ '--focus-top-mobile'?: CSSProperties['top'];
2344
+
2345
+ /**
2346
+ * **CSS Property**: `transform`
2347
+ *
2348
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform
2349
+ */
2350
+
2351
+ '--t'?: CSSProperties['transform'];
2352
+ '--hvr-t'?: CSSProperties['transform'];
2353
+ '--focus-t'?: CSSProperties['transform'];
2354
+
2355
+ /**
2356
+ * **CSS Property**: `transform`
2357
+ *
2358
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform
2359
+ */
2360
+ '--t-tablet'?: CSSProperties['transform'];
2361
+ '--hvr-t-tablet'?: CSSProperties['transform'];
2362
+ '--focus-t-tablet'?: CSSProperties['transform'];
2363
+ /**
2364
+ * **CSS Property**: `transform`
2365
+ *
2366
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform
2367
+ */
2368
+ '--t-mobile'?: CSSProperties['transform'];
2369
+ '--hvr-t-mobile'?: CSSProperties['transform'];
2370
+ '--focus-t-mobile'?: CSSProperties['transform'];
2371
+
2372
+ /**
2373
+ * **CSS Property**: `transform-origin`
2374
+ *
2375
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin
2376
+ */
2377
+
2378
+ '--ta'?: CSSProperties['transformOrigin'];
2379
+ '--hvr-ta'?: CSSProperties['transformOrigin'];
2380
+ '--focus-ta'?: CSSProperties['transformOrigin'];
2381
+
2382
+ /**
2383
+ * **CSS Property**: `transform-origin`
2384
+ *
2385
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin
2386
+ */
2387
+ '--ta-tablet'?: CSSProperties['transformOrigin'];
2388
+ '--hvr-ta-tablet'?: CSSProperties['transformOrigin'];
2389
+ '--focus-ta-tablet'?: CSSProperties['transformOrigin'];
2390
+ /**
2391
+ * **CSS Property**: `transform-origin`
2392
+ *
2393
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin
2394
+ */
2395
+ '--ta-mobile'?: CSSProperties['transformOrigin'];
2396
+ '--hvr-ta-mobile'?: CSSProperties['transformOrigin'];
2397
+ '--focus-ta-mobile'?: CSSProperties['transformOrigin'];
2398
+
2399
+ /**
2400
+ * **CSS Property**: `transform-style`
2401
+ *
2402
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-style
2403
+ */
2404
+
2405
+ '--ts'?: CSSProperties['transformStyle'];
2406
+ '--hvr-ts'?: CSSProperties['transformStyle'];
2407
+ '--focus-ts'?: CSSProperties['transformStyle'];
2408
+
2409
+ /**
2410
+ * **CSS Property**: `transform-style`
2411
+ *
2412
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-style
2413
+ */
2414
+ '--ts-tablet'?: CSSProperties['transformStyle'];
2415
+ '--hvr-ts-tablet'?: CSSProperties['transformStyle'];
2416
+ '--focus-ts-tablet'?: CSSProperties['transformStyle'];
2417
+ /**
2418
+ * **CSS Property**: `transform-style`
2419
+ *
2420
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transform-style
2421
+ */
2422
+ '--ts-mobile'?: CSSProperties['transformStyle'];
2423
+ '--hvr-ts-mobile'?: CSSProperties['transformStyle'];
2424
+ '--focus-ts-mobile'?: CSSProperties['transformStyle'];
2425
+
2426
+ /**
2427
+ * **CSS Property**: `transition`
2428
+ *
2429
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition
2430
+ */
2431
+
2432
+ '--tn'?: CSSProperties['transition'];
2433
+ '--hvr-tn'?: CSSProperties['transition'];
2434
+ '--focus-tn'?: CSSProperties['transition'];
2435
+
2436
+ /**
2437
+ * **CSS Property**: `transition`
2438
+ *
2439
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition
2440
+ */
2441
+ '--tn-tablet'?: CSSProperties['transition'];
2442
+ '--hvr-tn-tablet'?: CSSProperties['transition'];
2443
+ '--focus-tn-tablet'?: CSSProperties['transition'];
2444
+ /**
2445
+ * **CSS Property**: `transition`
2446
+ *
2447
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition
2448
+ */
2449
+ '--tn-mobile'?: CSSProperties['transition'];
2450
+ '--hvr-tn-mobile'?: CSSProperties['transition'];
2451
+ '--focus-tn-mobile'?: CSSProperties['transition'];
2452
+
2453
+ /**
2454
+ * **CSS Property**: `transition-delay`
2455
+ *
2456
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-delay
2457
+ */
2458
+
2459
+ '--td'?: CSSProperties['transitionDelay'];
2460
+ '--hvr-td'?: CSSProperties['transitionDelay'];
2461
+ '--focus-td'?: CSSProperties['transitionDelay'];
2462
+
2463
+ /**
2464
+ * **CSS Property**: `transition-delay`
2465
+ *
2466
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-delay
2467
+ */
2468
+ '--td-tablet'?: CSSProperties['transitionDelay'];
2469
+ '--hvr-td-tablet'?: CSSProperties['transitionDelay'];
2470
+ '--focus-td-tablet'?: CSSProperties['transitionDelay'];
2471
+ /**
2472
+ * **CSS Property**: `transition-delay`
2473
+ *
2474
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-delay
2475
+ */
2476
+ '--td-mobile'?: CSSProperties['transitionDelay'];
2477
+ '--hvr-td-mobile'?: CSSProperties['transitionDelay'];
2478
+ '--focus-td-mobile'?: CSSProperties['transitionDelay'];
2479
+
2480
+ /**
2481
+ * **CSS Property**: `transition-duration`
2482
+ *
2483
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-duration
2484
+ */
2485
+
2486
+ '--tnd'?: CSSProperties['transitionDuration'];
2487
+ '--hvr-tnd'?: CSSProperties['transitionDuration'];
2488
+ '--focus-tnd'?: CSSProperties['transitionDuration'];
2489
+
2490
+ /**
2491
+ * **CSS Property**: `transition-duration`
2492
+ *
2493
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-duration
2494
+ */
2495
+ '--tnd-tablet'?: CSSProperties['transitionDuration'];
2496
+ '--hvr-tnd-tablet'?: CSSProperties['transitionDuration'];
2497
+ '--focus-tnd-tablet'?: CSSProperties['transitionDuration'];
2498
+ /**
2499
+ * **CSS Property**: `transition-duration`
2500
+ *
2501
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-duration
2502
+ */
2503
+ '--tnd-mobile'?: CSSProperties['transitionDuration'];
2504
+ '--hvr-tnd-mobile'?: CSSProperties['transitionDuration'];
2505
+ '--focus-tnd-mobile'?: CSSProperties['transitionDuration'];
2506
+
2507
+ /**
2508
+ * **CSS Property**: `transition-property`
2509
+ *
2510
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-property
2511
+ */
2512
+
2513
+ '--tp'?: CSSProperties['transitionProperty'];
2514
+ '--hvr-tp'?: CSSProperties['transitionProperty'];
2515
+ '--focus-tp'?: CSSProperties['transitionProperty'];
2516
+
2517
+ /**
2518
+ * **CSS Property**: `transition-property`
2519
+ *
2520
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-property
2521
+ */
2522
+ '--tp-tablet'?: CSSProperties['transitionProperty'];
2523
+ '--hvr-tp-tablet'?: CSSProperties['transitionProperty'];
2524
+ '--focus-tp-tablet'?: CSSProperties['transitionProperty'];
2525
+ /**
2526
+ * **CSS Property**: `transition-property`
2527
+ *
2528
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-property
2529
+ */
2530
+ '--tp-mobile'?: CSSProperties['transitionProperty'];
2531
+ '--hvr-tp-mobile'?: CSSProperties['transitionProperty'];
2532
+ '--focus-tp-mobile'?: CSSProperties['transitionProperty'];
2533
+
2534
+ /**
2535
+ * **CSS Property**: `transition-timing-function`
2536
+ *
2537
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function
2538
+ */
2539
+
2540
+ '--ttf'?: CSSProperties['transitionTimingFunction'];
2541
+ '--hvr-ttf'?: CSSProperties['transitionTimingFunction'];
2542
+ '--focus-ttf'?: CSSProperties['transitionTimingFunction'];
2543
+
2544
+ /**
2545
+ * **CSS Property**: `transition-timing-function`
2546
+ *
2547
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function
2548
+ */
2549
+ '--ttf-tablet'?: CSSProperties['transitionTimingFunction'];
2550
+ '--hvr-ttf-tablet'?: CSSProperties['transitionTimingFunction'];
2551
+ '--focus-ttf-tablet'?: CSSProperties['transitionTimingFunction'];
2552
+ /**
2553
+ * **CSS Property**: `transition-timing-function`
2554
+ *
2555
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/transition-timing-function
2556
+ */
2557
+ '--ttf-mobile'?: CSSProperties['transitionTimingFunction'];
2558
+ '--hvr-ttf-mobile'?: CSSProperties['transitionTimingFunction'];
2559
+ '--focus-ttf-mobile'?: CSSProperties['transitionTimingFunction'];
2560
+
2561
+ /**
2562
+ * **CSS Property**: `translate`
2563
+ *
2564
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/translate
2565
+ */
2566
+
2567
+ '--tsl'?: CSSProperties['translate'];
2568
+ '--hvr-tsl'?: CSSProperties['translate'];
2569
+ '--focus-tsl'?: CSSProperties['translate'];
2570
+
2571
+ /**
2572
+ * **CSS Property**: `translate`
2573
+ *
2574
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/translate
2575
+ */
2576
+ '--tsl-tablet'?: CSSProperties['translate'];
2577
+ '--hvr-tsl-tablet'?: CSSProperties['translate'];
2578
+ '--focus-tsl-tablet'?: CSSProperties['translate'];
2579
+ /**
2580
+ * **CSS Property**: `translate`
2581
+ *
2582
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/translate
2583
+ */
2584
+ '--tsl-mobile'?: CSSProperties['translate'];
2585
+ '--hvr-tsl-mobile'?: CSSProperties['translate'];
2586
+ '--focus-tsl-mobile'?: CSSProperties['translate'];
2587
+
2588
+ /**
2589
+ * **CSS Property**: `visibility`
2590
+ *
2591
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/visibility
2592
+ */
2593
+
2594
+ '--v'?: CSSProperties['visibility'];
2595
+ '--hvr-v'?: CSSProperties['visibility'];
2596
+ '--focus-v'?: CSSProperties['visibility'];
2597
+
2598
+ /**
2599
+ * **CSS Property**: `visibility`
2600
+ *
2601
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/visibility
2602
+ */
2603
+ '--v-tablet'?: CSSProperties['visibility'];
2604
+ '--hvr-v-tablet'?: CSSProperties['visibility'];
2605
+ '--focus-v-tablet'?: CSSProperties['visibility'];
2606
+ /**
2607
+ * **CSS Property**: `visibility`
2608
+ *
2609
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/visibility
2610
+ */
2611
+ '--v-mobile'?: CSSProperties['visibility'];
2612
+ '--hvr-v-mobile'?: CSSProperties['visibility'];
2613
+ '--focus-v-mobile'?: CSSProperties['visibility'];
2614
+
2615
+ /**
2616
+ * **CSS Property**: `width`
2617
+ *
2618
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/width
2619
+ */
2620
+
2621
+ '--w'?: CSSProperties['width'];
2622
+ '--hvr-w'?: CSSProperties['width'];
2623
+ '--focus-w'?: CSSProperties['width'];
2624
+
2625
+ /**
2626
+ * **CSS Property**: `width`
2627
+ *
2628
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/width
2629
+ */
2630
+ '--w-tablet'?: CSSProperties['width'];
2631
+ '--hvr-w-tablet'?: CSSProperties['width'];
2632
+ '--focus-w-tablet'?: CSSProperties['width'];
2633
+ /**
2634
+ * **CSS Property**: `width`
2635
+ *
2636
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/width
2637
+ */
2638
+ '--w-mobile'?: CSSProperties['width'];
2639
+ '--hvr-w-mobile'?: CSSProperties['width'];
2640
+ '--focus-w-mobile'?: CSSProperties['width'];
2641
+
2642
+ /**
2643
+ * **CSS Property**: `z-index`
2644
+ *
2645
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
2646
+ */
2647
+
2648
+ '--z'?: CSSProperties['zIndex'];
2649
+ '--hvr-z'?: CSSProperties['zIndex'];
2650
+ '--focus-z'?: CSSProperties['zIndex'];
2651
+
2652
+ /**
2653
+ * **CSS Property**: `z-index`
2654
+ *
2655
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
2656
+ */
2657
+ '--z-tablet'?: CSSProperties['zIndex'];
2658
+ '--hvr-z-tablet'?: CSSProperties['zIndex'];
2659
+ '--focus-z-tablet'?: CSSProperties['zIndex'];
2660
+ /**
2661
+ * **CSS Property**: `z-index`
2662
+ *
2663
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
2664
+ */
2665
+ '--z-mobile'?: CSSProperties['zIndex'];
2666
+ '--hvr-z-mobile'?: CSSProperties['zIndex'];
2667
+ '--focus-z-mobile'?: CSSProperties['zIndex'];
2668
+
2669
+ [key: string]: any;
2670
+ }
2671
+ }