@likec4/styles 1.35.0 → 1.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,10 +5,10 @@ import type { CssProperties } from './system-types';
5
5
  import type { Token } from '../tokens/index';
6
6
 
7
7
  type AnyString = (string & {})
8
- type CssVars = "var(--likec4-palette)" | "var(--likec4-text-size)" | "var(--likec4-spacing)" | "var(--likec4-icon-size)"
8
+ type CssVars = "var(--likec4-palette-fill)" | "var(--likec4-palette-stroke)" | "var(--likec4-palette-hiContrast)" | "var(--likec4-palette-loContrast)" | "var(--likec4-palette-relation-stroke)" | "var(--likec4-palette-relation-label)" | "var(--likec4-palette-relation-label-bg)" | "var(--likec4-text-size)" | "var(--likec4-spacing)" | "var(--text-fz)" | "var(--likec4-icon-size)"
9
9
  type CssVarValue = ConditionalValue<Token | CssVars | AnyString | (number & {})>
10
10
 
11
- type CssVarKeys = "--likec4-palette" | "--likec4-text-size" | "--likec4-spacing" | "--likec4-icon-size" | `--${string}` & {}
11
+ type CssVarKeys = "--likec4-palette-fill" | "--likec4-palette-stroke" | "--likec4-palette-hiContrast" | "--likec4-palette-loContrast" | "--likec4-palette-relation-stroke" | "--likec4-palette-relation-label" | "--likec4-palette-relation-label-bg" | "--likec4-text-size" | "--likec4-spacing" | "--text-fz" | "--likec4-icon-size" | `--${string}` & {}
12
12
 
13
13
  export type CssVarProperties = {
14
14
  [key in CssVarKeys]?: CssVarValue
@@ -1459,7 +1459,7 @@ borderRightWidth?: ConditionalValue<WithEscapeHatch<CssProperties["borderRightWi
1459
1459
  *
1460
1460
  * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
1461
1461
  */
1462
- borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssVars | CssProperties["borderSpacing"]>
1462
+ borderSpacing?: ConditionalValue<WithEscapeHatch<UtilityValues["borderSpacing"] | CssVars>>
1463
1463
  /**
1464
1464
  * The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
1465
1465
  *
@@ -1609,7 +1609,7 @@ borderWidth?: ConditionalValue<WithEscapeHatch<CssProperties["borderWidth"]>>
1609
1609
  *
1610
1610
  * @see https://developer.mozilla.org/docs/Web/CSS/bottom
1611
1611
  */
1612
- bottom?: ConditionalValue<UtilityValues["bottom"] | CssVars | CssProperties["bottom"]>
1612
+ bottom?: ConditionalValue<WithEscapeHatch<UtilityValues["bottom"] | CssVars>>
1613
1613
  boxAlign?: ConditionalValue<WithEscapeHatch<CssProperties["boxAlign"]>>
1614
1614
  /**
1615
1615
  * The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
@@ -1843,7 +1843,7 @@ columnFill?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["columnFil
1843
1843
  *
1844
1844
  * @see https://developer.mozilla.org/docs/Web/CSS/column-gap
1845
1845
  */
1846
- columnGap?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"]>
1846
+ columnGap?: ConditionalValue<WithEscapeHatch<UtilityValues["columnGap"] | CssVars>>
1847
1847
  /**
1848
1848
  * The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
1849
1849
  *
@@ -2735,7 +2735,7 @@ forcedColorAdjust?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["fo
2735
2735
  *
2736
2736
  * @see https://developer.mozilla.org/docs/Web/CSS/gap
2737
2737
  */
2738
- gap?: ConditionalValue<UtilityValues["gap"] | CssVars | CssProperties["gap"]>
2738
+ gap?: ConditionalValue<WithEscapeHatch<UtilityValues["gap"] | CssVars>>
2739
2739
  /**
2740
2740
  * The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
2741
2741
  *
@@ -2828,7 +2828,7 @@ gridColumn?: ConditionalValue<WithEscapeHatch<CssProperties["gridColumn"]>>
2828
2828
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
2829
2829
  */
2830
2830
  gridColumnEnd?: ConditionalValue<WithEscapeHatch<CssProperties["gridColumnEnd"]>>
2831
- gridColumnGap?: ConditionalValue<UtilityValues["gridColumnGap"] | CssVars | CssProperties["gridColumnGap"]>
2831
+ gridColumnGap?: ConditionalValue<WithEscapeHatch<UtilityValues["gridColumnGap"] | CssVars>>
2832
2832
  /**
2833
2833
  * The **`grid-column-start`** CSS property specifies a grid item's start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
2834
2834
  *
@@ -2843,7 +2843,7 @@ gridColumnEnd?: ConditionalValue<WithEscapeHatch<CssProperties["gridColumnEnd"]>
2843
2843
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
2844
2844
  */
2845
2845
  gridColumnStart?: ConditionalValue<WithEscapeHatch<CssProperties["gridColumnStart"]>>
2846
- gridGap?: ConditionalValue<UtilityValues["gridGap"] | CssVars | CssProperties["gridGap"]>
2846
+ gridGap?: ConditionalValue<WithEscapeHatch<UtilityValues["gridGap"] | CssVars>>
2847
2847
  /**
2848
2848
  * The **`grid-row`** CSS shorthand property specifies a grid item's size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
2849
2849
  *
@@ -2870,7 +2870,7 @@ gridRow?: ConditionalValue<WithEscapeHatch<CssProperties["gridRow"]>>
2870
2870
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
2871
2871
  */
2872
2872
  gridRowEnd?: ConditionalValue<WithEscapeHatch<CssProperties["gridRowEnd"]>>
2873
- gridRowGap?: ConditionalValue<UtilityValues["gridRowGap"] | CssVars | CssProperties["gridRowGap"]>
2873
+ gridRowGap?: ConditionalValue<WithEscapeHatch<UtilityValues["gridRowGap"] | CssVars>>
2874
2874
  /**
2875
2875
  * The **`grid-row-start`** CSS property specifies a grid item's start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
2876
2876
  *
@@ -3084,7 +3084,7 @@ inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssVars | CssPropert
3084
3084
  *
3085
3085
  * @see https://developer.mozilla.org/docs/Web/CSS/inset
3086
3086
  */
3087
- inset?: ConditionalValue<UtilityValues["inset"] | CssVars | CssProperties["inset"]>
3087
+ inset?: ConditionalValue<WithEscapeHatch<UtilityValues["inset"] | CssVars>>
3088
3088
  /**
3089
3089
  * The **`inset-block`** CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3090
3090
  *
@@ -3096,7 +3096,7 @@ inset?: ConditionalValue<UtilityValues["inset"] | CssVars | CssProperties["inset
3096
3096
  *
3097
3097
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
3098
3098
  */
3099
- insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"]>
3099
+ insetBlock?: ConditionalValue<WithEscapeHatch<UtilityValues["insetBlock"] | CssVars>>
3100
3100
  /**
3101
3101
  * The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3102
3102
  *
@@ -3110,7 +3110,7 @@ insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssPropert
3110
3110
  *
3111
3111
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
3112
3112
  */
3113
- insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssVars | CssProperties["insetBlockEnd"]>
3113
+ insetBlockEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["insetBlockEnd"] | CssVars>>
3114
3114
  /**
3115
3115
  * The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3116
3116
  *
@@ -3124,7 +3124,7 @@ insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssVars | CssP
3124
3124
  *
3125
3125
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
3126
3126
  */
3127
- insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssVars | CssProperties["insetBlockStart"]>
3127
+ insetBlockStart?: ConditionalValue<WithEscapeHatch<UtilityValues["insetBlockStart"] | CssVars>>
3128
3128
  /**
3129
3129
  * The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3130
3130
  *
@@ -3136,7 +3136,7 @@ insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssVars |
3136
3136
  *
3137
3137
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
3138
3138
  */
3139
- insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"]>
3139
+ insetInline?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInline"] | CssVars>>
3140
3140
  /**
3141
3141
  * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3142
3142
  *
@@ -3150,7 +3150,7 @@ insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssPrope
3150
3150
  *
3151
3151
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
3152
3152
  */
3153
- insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"]>
3153
+ insetInlineEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineEnd"] | CssVars>>
3154
3154
  /**
3155
3155
  * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3156
3156
  *
@@ -3164,7 +3164,7 @@ insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | Cs
3164
3164
  *
3165
3165
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
3166
3166
  */
3167
- insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"]>
3167
+ insetInlineStart?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineStart"] | CssVars>>
3168
3168
  interpolateSize?: ConditionalValue<WithEscapeHatch<CssProperties["interpolateSize"]>>
3169
3169
  /**
3170
3170
  * The **`isolation`** CSS property determines whether an element must create a new stacking context.
@@ -3250,7 +3250,7 @@ justifyTracks?: ConditionalValue<WithEscapeHatch<CssProperties["justifyTracks"]>
3250
3250
  *
3251
3251
  * @see https://developer.mozilla.org/docs/Web/CSS/left
3252
3252
  */
3253
- left?: ConditionalValue<UtilityValues["left"] | CssVars | CssProperties["left"]>
3253
+ left?: ConditionalValue<WithEscapeHatch<UtilityValues["left"] | CssVars>>
3254
3254
  /**
3255
3255
  * The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
3256
3256
  *
@@ -3380,7 +3380,7 @@ listStyleType?: ConditionalValue<WithEscapeHatch<CssProperties["listStyleType"]>
3380
3380
  *
3381
3381
  * @see https://developer.mozilla.org/docs/Web/CSS/margin
3382
3382
  */
3383
- margin?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"]>
3383
+ margin?: ConditionalValue<WithEscapeHatch<UtilityValues["margin"] | CssVars>>
3384
3384
  /**
3385
3385
  * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
3386
3386
  *
@@ -3392,7 +3392,7 @@ margin?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["mar
3392
3392
  *
3393
3393
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
3394
3394
  */
3395
- marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"]>
3395
+ marginBlock?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBlock"] | CssVars>>
3396
3396
  /**
3397
3397
  * The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
3398
3398
  *
@@ -3406,7 +3406,7 @@ marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssPrope
3406
3406
  *
3407
3407
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
3408
3408
  */
3409
- marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssVars | CssProperties["marginBlockEnd"]>
3409
+ marginBlockEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBlockEnd"] | CssVars>>
3410
3410
  /**
3411
3411
  * The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
3412
3412
  *
@@ -3420,7 +3420,7 @@ marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssVars | Cs
3420
3420
  *
3421
3421
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
3422
3422
  */
3423
- marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssVars | CssProperties["marginBlockStart"]>
3423
+ marginBlockStart?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBlockStart"] | CssVars>>
3424
3424
  /**
3425
3425
  * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
3426
3426
  *
@@ -3434,7 +3434,7 @@ marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssVars
3434
3434
  *
3435
3435
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
3436
3436
  */
3437
- marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"]>
3437
+ marginBottom?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBottom"] | CssVars>>
3438
3438
  /**
3439
3439
  * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
3440
3440
  *
@@ -3446,7 +3446,7 @@ marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssPro
3446
3446
  *
3447
3447
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
3448
3448
  */
3449
- marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"]>
3449
+ marginInline?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInline"] | CssVars>>
3450
3450
  /**
3451
3451
  * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3452
3452
  *
@@ -3461,7 +3461,7 @@ marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssPro
3461
3461
  *
3462
3462
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
3463
3463
  */
3464
- marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"]>
3464
+ marginInlineEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineEnd"] | CssVars>>
3465
3465
  /**
3466
3466
  * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
3467
3467
  *
@@ -3476,7 +3476,7 @@ marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars |
3476
3476
  *
3477
3477
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
3478
3478
  */
3479
- marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"]>
3479
+ marginInlineStart?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineStart"] | CssVars>>
3480
3480
  /**
3481
3481
  * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
3482
3482
  *
@@ -3490,7 +3490,7 @@ marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVar
3490
3490
  *
3491
3491
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
3492
3492
  */
3493
- marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"]>
3493
+ marginLeft?: ConditionalValue<WithEscapeHatch<UtilityValues["marginLeft"] | CssVars>>
3494
3494
  /**
3495
3495
  * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
3496
3496
  *
@@ -3504,7 +3504,7 @@ marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssPropert
3504
3504
  *
3505
3505
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
3506
3506
  */
3507
- marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"]>
3507
+ marginRight?: ConditionalValue<WithEscapeHatch<UtilityValues["marginRight"] | CssVars>>
3508
3508
  /**
3509
3509
  * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
3510
3510
  *
@@ -3518,7 +3518,7 @@ marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssPrope
3518
3518
  *
3519
3519
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
3520
3520
  */
3521
- marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"]>
3521
+ marginTop?: ConditionalValue<WithEscapeHatch<UtilityValues["marginTop"] | CssVars>>
3522
3522
  /**
3523
3523
  * The `margin-trim` property allows the container to trim the margins of its children where they adjoin the container's edges.
3524
3524
  *
@@ -4159,7 +4159,7 @@ outlineColor?: ConditionalValue<WithEscapeHatch<UtilityValues["outlineColor"] |
4159
4159
  *
4160
4160
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
4161
4161
  */
4162
- outlineOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssVars | CssProperties["outlineOffset"]>
4162
+ outlineOffset?: ConditionalValue<WithEscapeHatch<UtilityValues["outlineOffset"] | CssVars>>
4163
4163
  /**
4164
4164
  * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
4165
4165
  *
@@ -4396,7 +4396,7 @@ overscrollBehaviorY?: ConditionalValue<WithEscapeHatch<CssProperties["overscroll
4396
4396
  *
4397
4397
  * @see https://developer.mozilla.org/docs/Web/CSS/padding
4398
4398
  */
4399
- padding?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"]>
4399
+ padding?: ConditionalValue<WithEscapeHatch<UtilityValues["padding"] | CssVars>>
4400
4400
  /**
4401
4401
  * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
4402
4402
  *
@@ -4408,7 +4408,7 @@ padding?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["p
4408
4408
  *
4409
4409
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
4410
4410
  */
4411
- paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"]>
4411
+ paddingBlock?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBlock"] | CssVars>>
4412
4412
  /**
4413
4413
  * The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
4414
4414
  *
@@ -4422,7 +4422,7 @@ paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssPro
4422
4422
  *
4423
4423
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
4424
4424
  */
4425
- paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssVars | CssProperties["paddingBlockEnd"]>
4425
+ paddingBlockEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBlockEnd"] | CssVars>>
4426
4426
  /**
4427
4427
  * The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
4428
4428
  *
@@ -4436,7 +4436,7 @@ paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssVars |
4436
4436
  *
4437
4437
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
4438
4438
  */
4439
- paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssVars | CssProperties["paddingBlockStart"]>
4439
+ paddingBlockStart?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBlockStart"] | CssVars>>
4440
4440
  /**
4441
4441
  * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
4442
4442
  *
@@ -4450,7 +4450,7 @@ paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssVar
4450
4450
  *
4451
4451
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
4452
4452
  */
4453
- paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"]>
4453
+ paddingBottom?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBottom"] | CssVars>>
4454
4454
  /**
4455
4455
  * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
4456
4456
  *
@@ -4462,7 +4462,7 @@ paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssP
4462
4462
  *
4463
4463
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
4464
4464
  */
4465
- paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"]>
4465
+ paddingInline?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInline"] | CssVars>>
4466
4466
  /**
4467
4467
  * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
4468
4468
  *
@@ -4477,7 +4477,7 @@ paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssP
4477
4477
  *
4478
4478
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
4479
4479
  */
4480
- paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"]>
4480
+ paddingInlineEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineEnd"] | CssVars>>
4481
4481
  /**
4482
4482
  * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
4483
4483
  *
@@ -4492,7 +4492,7 @@ paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars
4492
4492
  *
4493
4493
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
4494
4494
  */
4495
- paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"]>
4495
+ paddingInlineStart?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineStart"] | CssVars>>
4496
4496
  /**
4497
4497
  * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
4498
4498
  *
@@ -4506,7 +4506,7 @@ paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssV
4506
4506
  *
4507
4507
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
4508
4508
  */
4509
- paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"]>
4509
+ paddingLeft?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingLeft"] | CssVars>>
4510
4510
  /**
4511
4511
  * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
4512
4512
  *
@@ -4520,7 +4520,7 @@ paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssPrope
4520
4520
  *
4521
4521
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
4522
4522
  */
4523
- paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"]>
4523
+ paddingRight?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingRight"] | CssVars>>
4524
4524
  /**
4525
4525
  * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
4526
4526
  *
@@ -4534,7 +4534,7 @@ paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssPro
4534
4534
  *
4535
4535
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
4536
4536
  */
4537
- paddingTop?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"]>
4537
+ paddingTop?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingTop"] | CssVars>>
4538
4538
  /**
4539
4539
  * The **`page`** CSS property is used to specify the named page, a specific type of page defined by the `@page` at-rule.
4540
4540
  *
@@ -4762,7 +4762,7 @@ resize?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["resize"]>>
4762
4762
  *
4763
4763
  * @see https://developer.mozilla.org/docs/Web/CSS/right
4764
4764
  */
4765
- right?: ConditionalValue<UtilityValues["right"] | CssVars | CssProperties["right"]>
4765
+ right?: ConditionalValue<WithEscapeHatch<UtilityValues["right"] | CssVars>>
4766
4766
  /**
4767
4767
  * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property.
4768
4768
  *
@@ -4790,7 +4790,7 @@ rotate?: ConditionalValue<UtilityValues["rotate"] | CssVars | CssProperties["rot
4790
4790
  *
4791
4791
  * @see https://developer.mozilla.org/docs/Web/CSS/row-gap
4792
4792
  */
4793
- rowGap?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"]>
4793
+ rowGap?: ConditionalValue<WithEscapeHatch<UtilityValues["rowGap"] | CssVars>>
4794
4794
  /**
4795
4795
  * The **`ruby-align`** CSS property defines the distribution of the different ruby elements over the base.
4796
4796
  *
@@ -4868,7 +4868,7 @@ scrollBehavior?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["scrol
4868
4868
  *
4869
4869
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
4870
4870
  */
4871
- scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssProperties["scrollMargin"]>
4871
+ scrollMargin?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMargin"] | CssVars>>
4872
4872
  /**
4873
4873
  * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
4874
4874
  *
@@ -4880,7 +4880,7 @@ scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssPro
4880
4880
  *
4881
4881
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
4882
4882
  */
4883
- scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars | CssProperties["scrollMarginBlock"]>
4883
+ scrollMarginBlock?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginBlock"] | CssVars>>
4884
4884
  /**
4885
4885
  * The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4886
4886
  *
@@ -4894,7 +4894,7 @@ scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVar
4894
4894
  *
4895
4895
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
4896
4896
  */
4897
- scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] | CssVars | CssProperties["scrollMarginBlockEnd"]>
4897
+ scrollMarginBlockEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginBlockEnd"] | CssVars>>
4898
4898
  /**
4899
4899
  * The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4900
4900
  *
@@ -4908,7 +4908,7 @@ scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] |
4908
4908
  *
4909
4909
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
4910
4910
  */
4911
- scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"] | CssVars | CssProperties["scrollMarginBlockStart"]>
4911
+ scrollMarginBlockStart?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginBlockStart"] | CssVars>>
4912
4912
  /**
4913
4913
  * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4914
4914
  *
@@ -4923,7 +4923,7 @@ scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"
4923
4923
  *
4924
4924
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
4925
4925
  */
4926
- scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssVars | CssProperties["scrollMarginBottom"]>
4926
+ scrollMarginBottom?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginBottom"] | CssVars>>
4927
4927
  /**
4928
4928
  * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
4929
4929
  *
@@ -4935,7 +4935,7 @@ scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssV
4935
4935
  *
4936
4936
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
4937
4937
  */
4938
- scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars | CssProperties["scrollMarginInline"]>
4938
+ scrollMarginInline?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginInline"] | CssVars>>
4939
4939
  /**
4940
4940
  * The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4941
4941
  *
@@ -4949,7 +4949,7 @@ scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssV
4949
4949
  *
4950
4950
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
4951
4951
  */
4952
- scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"] | CssVars | CssProperties["scrollMarginInlineEnd"]>
4952
+ scrollMarginInlineEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginInlineEnd"] | CssVars>>
4953
4953
  /**
4954
4954
  * The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4955
4955
  *
@@ -4963,7 +4963,7 @@ scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"]
4963
4963
  *
4964
4964
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
4965
4965
  */
4966
- scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStart"] | CssVars | CssProperties["scrollMarginInlineStart"]>
4966
+ scrollMarginInlineStart?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginInlineStart"] | CssVars>>
4967
4967
  /**
4968
4968
  * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4969
4969
  *
@@ -4978,7 +4978,7 @@ scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStar
4978
4978
  *
4979
4979
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
4980
4980
  */
4981
- scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssVars | CssProperties["scrollMarginLeft"]>
4981
+ scrollMarginLeft?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginLeft"] | CssVars>>
4982
4982
  /**
4983
4983
  * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4984
4984
  *
@@ -4993,7 +4993,7 @@ scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssVars
4993
4993
  *
4994
4994
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
4995
4995
  */
4996
- scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssVars | CssProperties["scrollMarginRight"]>
4996
+ scrollMarginRight?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginRight"] | CssVars>>
4997
4997
  /**
4998
4998
  * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
4999
4999
  *
@@ -5008,7 +5008,7 @@ scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssVar
5008
5008
  *
5009
5009
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
5010
5010
  */
5011
- scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssVars | CssProperties["scrollMarginTop"]>
5011
+ scrollMarginTop?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginTop"] | CssVars>>
5012
5012
  /**
5013
5013
  * The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
5014
5014
  *
@@ -5020,7 +5020,7 @@ scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssVars |
5020
5020
  *
5021
5021
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
5022
5022
  */
5023
- scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssProperties["scrollPadding"]>
5023
+ scrollPadding?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPadding"] | CssVars>>
5024
5024
  /**
5025
5025
  * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
5026
5026
  *
@@ -5032,7 +5032,7 @@ scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssP
5032
5032
  *
5033
5033
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
5034
5034
  */
5035
- scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"]>
5035
+ scrollPaddingBlock?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingBlock"] | CssVars>>
5036
5036
  /**
5037
5037
  * The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5038
5038
  *
@@ -5046,7 +5046,7 @@ scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssV
5046
5046
  *
5047
5047
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
5048
5048
  */
5049
- scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"] | CssVars | CssProperties["scrollPaddingBlockEnd"]>
5049
+ scrollPaddingBlockEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingBlockEnd"] | CssVars>>
5050
5050
  /**
5051
5051
  * The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5052
5052
  *
@@ -5060,7 +5060,7 @@ scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"]
5060
5060
  *
5061
5061
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
5062
5062
  */
5063
- scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStart"] | CssVars | CssProperties["scrollPaddingBlockStart"]>
5063
+ scrollPaddingBlockStart?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingBlockStart"] | CssVars>>
5064
5064
  /**
5065
5065
  * The `scroll-padding-bottom` property defines offsets for the bottom of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5066
5066
  *
@@ -5074,7 +5074,7 @@ scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStar
5074
5074
  *
5075
5075
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
5076
5076
  */
5077
- scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | CssVars | CssProperties["scrollPaddingBottom"]>
5077
+ scrollPaddingBottom?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingBottom"] | CssVars>>
5078
5078
  /**
5079
5079
  * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
5080
5080
  *
@@ -5086,7 +5086,7 @@ scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | Cs
5086
5086
  *
5087
5087
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
5088
5088
  */
5089
- scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"]>
5089
+ scrollPaddingInline?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingInline"] | CssVars>>
5090
5090
  /**
5091
5091
  * The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5092
5092
  *
@@ -5100,7 +5100,7 @@ scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | Cs
5100
5100
  *
5101
5101
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
5102
5102
  */
5103
- scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"] | CssVars | CssProperties["scrollPaddingInlineEnd"]>
5103
+ scrollPaddingInlineEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingInlineEnd"] | CssVars>>
5104
5104
  /**
5105
5105
  * The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5106
5106
  *
@@ -5114,7 +5114,7 @@ scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"
5114
5114
  *
5115
5115
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
5116
5116
  */
5117
- scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineStart"] | CssVars | CssProperties["scrollPaddingInlineStart"]>
5117
+ scrollPaddingInlineStart?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingInlineStart"] | CssVars>>
5118
5118
  /**
5119
5119
  * The `scroll-padding-left` property defines offsets for the left of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5120
5120
  *
@@ -5128,7 +5128,7 @@ scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineSt
5128
5128
  *
5129
5129
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
5130
5130
  */
5131
- scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssVars | CssProperties["scrollPaddingLeft"]>
5131
+ scrollPaddingLeft?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingLeft"] | CssVars>>
5132
5132
  /**
5133
5133
  * The `scroll-padding-right` property defines offsets for the right of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5134
5134
  *
@@ -5142,7 +5142,7 @@ scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssVar
5142
5142
  *
5143
5143
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
5144
5144
  */
5145
- scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssVars | CssProperties["scrollPaddingRight"]>
5145
+ scrollPaddingRight?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingRight"] | CssVars>>
5146
5146
  /**
5147
5147
  * The **`scroll-padding-top`** property defines offsets for the top of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
5148
5148
  *
@@ -5156,7 +5156,7 @@ scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssV
5156
5156
  *
5157
5157
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
5158
5158
  */
5159
- scrollPaddingTop?: ConditionalValue<UtilityValues["scrollPaddingTop"] | CssVars | CssProperties["scrollPaddingTop"]>
5159
+ scrollPaddingTop?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingTop"] | CssVars>>
5160
5160
  /**
5161
5161
  * The `scroll-snap-align` property specifies the box's snap position as an alignment of its snap area (as the alignment subject) within its snap container's snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
5162
5162
  *
@@ -5588,7 +5588,7 @@ textEmphasisStyle?: ConditionalValue<WithEscapeHatch<CssProperties["textEmphasis
5588
5588
  *
5589
5589
  * @see https://developer.mozilla.org/docs/Web/CSS/text-indent
5590
5590
  */
5591
- textIndent?: ConditionalValue<UtilityValues["textIndent"] | CssVars | CssProperties["textIndent"]>
5591
+ textIndent?: ConditionalValue<WithEscapeHatch<UtilityValues["textIndent"] | CssVars>>
5592
5592
  /**
5593
5593
  * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
5594
5594
  *
@@ -5761,7 +5761,7 @@ timelineScope?: ConditionalValue<WithEscapeHatch<CssProperties["timelineScope"]>
5761
5761
  *
5762
5762
  * @see https://developer.mozilla.org/docs/Web/CSS/top
5763
5763
  */
5764
- top?: ConditionalValue<UtilityValues["top"] | CssVars | CssProperties["top"]>
5764
+ top?: ConditionalValue<WithEscapeHatch<UtilityValues["top"] | CssVars>>
5765
5765
  /**
5766
5766
  * The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
5767
5767
  *
@@ -6188,8 +6188,8 @@ wordWrap?: ConditionalValue<WithEscapeHatch<CssProperties["wordWrap"]>>
6188
6188
  * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
6189
6189
  */
6190
6190
  writingMode?: ConditionalValue<WithEscapeHatch<CssVars | CssProperties["writingMode"]>>
6191
- x?: ConditionalValue<UtilityValues["translateX"] | CssVars | CssProperties["translateX"]>
6192
- y?: ConditionalValue<UtilityValues["translateY"] | CssVars | CssProperties["translateY"]>
6191
+ x?: ConditionalValue<WithEscapeHatch<UtilityValues["translateX"] | CssVars>>
6192
+ y?: ConditionalValue<WithEscapeHatch<UtilityValues["translateY"] | CssVars>>
6193
6193
  /**
6194
6194
  * The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
6195
6195
  *
@@ -6248,7 +6248,7 @@ pos?: ConditionalValue<WithEscapeHatch<CssProperties["position"]>>
6248
6248
  *
6249
6249
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
6250
6250
  */
6251
- insetX?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"]>
6251
+ insetX?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInline"] | CssVars>>
6252
6252
  /**
6253
6253
  * The **`inset-block`** CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6254
6254
  *
@@ -6260,7 +6260,7 @@ insetX?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties
6260
6260
  *
6261
6261
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-block
6262
6262
  */
6263
- insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"]>
6263
+ insetY?: ConditionalValue<WithEscapeHatch<UtilityValues["insetBlock"] | CssVars>>
6264
6264
  /**
6265
6265
  * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6266
6266
  *
@@ -6274,7 +6274,7 @@ insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties[
6274
6274
  *
6275
6275
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
6276
6276
  */
6277
- insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"]>
6277
+ insetEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineEnd"] | CssVars>>
6278
6278
  /**
6279
6279
  * The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6280
6280
  *
@@ -6288,7 +6288,7 @@ insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssPrope
6288
6288
  *
6289
6289
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
6290
6290
  */
6291
- end?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"]>
6291
+ end?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineEnd"] | CssVars>>
6292
6292
  /**
6293
6293
  * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6294
6294
  *
@@ -6302,7 +6302,7 @@ end?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties
6302
6302
  *
6303
6303
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
6304
6304
  */
6305
- insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"]>
6305
+ insetStart?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineStart"] | CssVars>>
6306
6306
  /**
6307
6307
  * The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6308
6308
  *
@@ -6316,7 +6316,7 @@ insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssP
6316
6316
  *
6317
6317
  * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
6318
6318
  */
6319
- start?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"]>
6319
+ start?: ConditionalValue<WithEscapeHatch<UtilityValues["insetInlineStart"] | CssVars>>
6320
6320
  /**
6321
6321
  * The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
6322
6322
  *
@@ -6343,7 +6343,7 @@ flexDir?: ConditionalValue<WithEscapeHatch<CssProperties["flexDirection"]>>
6343
6343
  *
6344
6344
  * @see https://developer.mozilla.org/docs/Web/CSS/padding
6345
6345
  */
6346
- p?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"]>
6346
+ p?: ConditionalValue<WithEscapeHatch<UtilityValues["padding"] | CssVars>>
6347
6347
  /**
6348
6348
  * The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
6349
6349
  *
@@ -6357,7 +6357,7 @@ p?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding
6357
6357
  *
6358
6358
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-left
6359
6359
  */
6360
- pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"]>
6360
+ pl?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingLeft"] | CssVars>>
6361
6361
  /**
6362
6362
  * The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
6363
6363
  *
@@ -6371,7 +6371,7 @@ pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["pa
6371
6371
  *
6372
6372
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-right
6373
6373
  */
6374
- pr?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"]>
6374
+ pr?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingRight"] | CssVars>>
6375
6375
  /**
6376
6376
  * The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
6377
6377
  *
@@ -6385,7 +6385,7 @@ pr?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["p
6385
6385
  *
6386
6386
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-top
6387
6387
  */
6388
- pt?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"]>
6388
+ pt?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingTop"] | CssVars>>
6389
6389
  /**
6390
6390
  * The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
6391
6391
  *
@@ -6399,7 +6399,7 @@ pt?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["pad
6399
6399
  *
6400
6400
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
6401
6401
  */
6402
- pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"]>
6402
+ pb?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBottom"] | CssVars>>
6403
6403
  /**
6404
6404
  * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
6405
6405
  *
@@ -6411,7 +6411,7 @@ pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["
6411
6411
  *
6412
6412
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
6413
6413
  */
6414
- py?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"]>
6414
+ py?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBlock"] | CssVars>>
6415
6415
  /**
6416
6416
  * The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
6417
6417
  *
@@ -6423,7 +6423,7 @@ py?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["p
6423
6423
  *
6424
6424
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block
6425
6425
  */
6426
- paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"]>
6426
+ paddingY?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingBlock"] | CssVars>>
6427
6427
  /**
6428
6428
  * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
6429
6429
  *
@@ -6435,7 +6435,7 @@ paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssPropert
6435
6435
  *
6436
6436
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
6437
6437
  */
6438
- paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"]>
6438
+ paddingX?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInline"] | CssVars>>
6439
6439
  /**
6440
6440
  * The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
6441
6441
  *
@@ -6447,7 +6447,7 @@ paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProper
6447
6447
  *
6448
6448
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
6449
6449
  */
6450
- px?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"]>
6450
+ px?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInline"] | CssVars>>
6451
6451
  /**
6452
6452
  * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6453
6453
  *
@@ -6462,7 +6462,7 @@ px?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["
6462
6462
  *
6463
6463
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
6464
6464
  */
6465
- pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"]>
6465
+ pe?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineEnd"] | CssVars>>
6466
6466
  /**
6467
6467
  * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6468
6468
  *
@@ -6477,7 +6477,7 @@ pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssPropertie
6477
6477
  *
6478
6478
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
6479
6479
  */
6480
- paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"]>
6480
+ paddingEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineEnd"] | CssVars>>
6481
6481
  /**
6482
6482
  * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6483
6483
  *
@@ -6492,7 +6492,7 @@ paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssP
6492
6492
  *
6493
6493
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
6494
6494
  */
6495
- ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"]>
6495
+ ps?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineStart"] | CssVars>>
6496
6496
  /**
6497
6497
  * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6498
6498
  *
@@ -6507,7 +6507,7 @@ ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssPropert
6507
6507
  *
6508
6508
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
6509
6509
  */
6510
- paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"]>
6510
+ paddingStart?: ConditionalValue<WithEscapeHatch<UtilityValues["paddingInlineStart"] | CssVars>>
6511
6511
  /**
6512
6512
  * The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
6513
6513
  *
@@ -6521,7 +6521,7 @@ paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars |
6521
6521
  *
6522
6522
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-left
6523
6523
  */
6524
- ml?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"]>
6524
+ ml?: ConditionalValue<WithEscapeHatch<UtilityValues["marginLeft"] | CssVars>>
6525
6525
  /**
6526
6526
  * The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
6527
6527
  *
@@ -6535,7 +6535,7 @@ ml?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["mar
6535
6535
  *
6536
6536
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-right
6537
6537
  */
6538
- mr?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"]>
6538
+ mr?: ConditionalValue<WithEscapeHatch<UtilityValues["marginRight"] | CssVars>>
6539
6539
  /**
6540
6540
  * The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
6541
6541
  *
@@ -6549,7 +6549,7 @@ mr?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["ma
6549
6549
  *
6550
6550
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-top
6551
6551
  */
6552
- mt?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"]>
6552
+ mt?: ConditionalValue<WithEscapeHatch<UtilityValues["marginTop"] | CssVars>>
6553
6553
  /**
6554
6554
  * The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
6555
6555
  *
@@ -6563,7 +6563,7 @@ mt?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marg
6563
6563
  *
6564
6564
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
6565
6565
  */
6566
- mb?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"]>
6566
+ mb?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBottom"] | CssVars>>
6567
6567
  /**
6568
6568
  * The **`margin`** CSS shorthand property sets the margin area on all four sides of an element.
6569
6569
  *
@@ -6575,7 +6575,7 @@ mb?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["m
6575
6575
  *
6576
6576
  * @see https://developer.mozilla.org/docs/Web/CSS/margin
6577
6577
  */
6578
- m?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"]>
6578
+ m?: ConditionalValue<WithEscapeHatch<UtilityValues["margin"] | CssVars>>
6579
6579
  /**
6580
6580
  * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
6581
6581
  *
@@ -6587,7 +6587,7 @@ m?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"]
6587
6587
  *
6588
6588
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
6589
6589
  */
6590
- my?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"]>
6590
+ my?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBlock"] | CssVars>>
6591
6591
  /**
6592
6592
  * The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
6593
6593
  *
@@ -6599,7 +6599,7 @@ my?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["ma
6599
6599
  *
6600
6600
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block
6601
6601
  */
6602
- marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"]>
6602
+ marginY?: ConditionalValue<WithEscapeHatch<UtilityValues["marginBlock"] | CssVars>>
6603
6603
  /**
6604
6604
  * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
6605
6605
  *
@@ -6611,7 +6611,7 @@ marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssPropertie
6611
6611
  *
6612
6612
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
6613
6613
  */
6614
- mx?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"]>
6614
+ mx?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInline"] | CssVars>>
6615
6615
  /**
6616
6616
  * The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
6617
6617
  *
@@ -6623,7 +6623,7 @@ mx?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["m
6623
6623
  *
6624
6624
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
6625
6625
  */
6626
- marginX?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"]>
6626
+ marginX?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInline"] | CssVars>>
6627
6627
  /**
6628
6628
  * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6629
6629
  *
@@ -6638,7 +6638,7 @@ marginX?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperti
6638
6638
  *
6639
6639
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
6640
6640
  */
6641
- me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"]>
6641
+ me?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineEnd"] | CssVars>>
6642
6642
  /**
6643
6643
  * The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6644
6644
  *
@@ -6653,7 +6653,7 @@ me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties
6653
6653
  *
6654
6654
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
6655
6655
  */
6656
- marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"]>
6656
+ marginEnd?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineEnd"] | CssVars>>
6657
6657
  /**
6658
6658
  * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6659
6659
  *
@@ -6668,7 +6668,7 @@ marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssPro
6668
6668
  *
6669
6669
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
6670
6670
  */
6671
- ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"]>
6671
+ ms?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineStart"] | CssVars>>
6672
6672
  /**
6673
6673
  * The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
6674
6674
  *
@@ -6683,7 +6683,7 @@ ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperti
6683
6683
  *
6684
6684
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
6685
6685
  */
6686
- marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"]>
6686
+ marginStart?: ConditionalValue<WithEscapeHatch<UtilityValues["marginInlineStart"] | CssVars>>
6687
6687
  /**
6688
6688
  * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
6689
6689
  *
@@ -6737,7 +6737,7 @@ ring?: ConditionalValue<UtilityValues["outline"] | CssVars | CssProperties["outl
6737
6737
  *
6738
6738
  * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
6739
6739
  */
6740
- ringOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssVars | CssProperties["outlineOffset"]>
6740
+ ringOffset?: ConditionalValue<WithEscapeHatch<UtilityValues["outlineOffset"] | CssVars>>
6741
6741
  /**
6742
6742
  * The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
6743
6743
  *
@@ -7306,7 +7306,7 @@ borderEndColor?: ConditionalValue<WithEscapeHatch<UtilityValues["borderInlineEnd
7306
7306
  */
7307
7307
  shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"]>
7308
7308
  shadowColor?: ConditionalValue<WithEscapeHatch<UtilityValues["boxShadowColor"] | CssVars>>
7309
- z?: ConditionalValue<UtilityValues["translateZ"] | CssVars | CssProperties["translateZ"]>
7309
+ z?: ConditionalValue<WithEscapeHatch<UtilityValues["translateZ"] | CssVars>>
7310
7310
  /**
7311
7311
  * The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
7312
7312
  *
@@ -7318,7 +7318,7 @@ shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["
7318
7318
  *
7319
7319
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
7320
7320
  */
7321
- scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars | CssProperties["scrollMarginBlock"]>
7321
+ scrollMarginY?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginBlock"] | CssVars>>
7322
7322
  /**
7323
7323
  * The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
7324
7324
  *
@@ -7330,7 +7330,7 @@ scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars |
7330
7330
  *
7331
7331
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
7332
7332
  */
7333
- scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars | CssProperties["scrollMarginInline"]>
7333
+ scrollMarginX?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollMarginInline"] | CssVars>>
7334
7334
  /**
7335
7335
  * The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
7336
7336
  *
@@ -7342,7 +7342,7 @@ scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars |
7342
7342
  *
7343
7343
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
7344
7344
  */
7345
- scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"]>
7345
+ scrollPaddingY?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingBlock"] | CssVars>>
7346
7346
  /**
7347
7347
  * The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
7348
7348
  *
@@ -7354,11 +7354,11 @@ scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars
7354
7354
  *
7355
7355
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
7356
7356
  */
7357
- scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"]>
7357
+ scrollPaddingX?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollPaddingInline"] | CssVars>>
7358
7358
  hideFrom?: ConditionalValue<UtilityValues["hideFrom"] | CssVars | CssProperties["hideFrom"]>
7359
7359
  hideBelow?: ConditionalValue<UtilityValues["hideBelow"] | CssVars | CssProperties["hideBelow"]>
7360
- spaceX?: ConditionalValue<UtilityValues["spaceX"] | CssVars | CssProperties["spaceX"]>
7361
- spaceY?: ConditionalValue<UtilityValues["spaceY"] | CssVars | CssProperties["spaceY"]>
7360
+ spaceX?: ConditionalValue<WithEscapeHatch<UtilityValues["spaceX"] | CssVars>>
7361
+ spaceY?: ConditionalValue<WithEscapeHatch<UtilityValues["spaceY"] | CssVars>>
7362
7362
  divideX?: ConditionalValue<string | number | CssProperties["divideX"]>
7363
7363
  divideY?: ConditionalValue<string | number | CssProperties["divideY"]>
7364
7364
  divideColor?: ConditionalValue<WithEscapeHatch<UtilityValues["divideColor"] | CssVars>>
@@ -7398,17 +7398,17 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars
7398
7398
  backdropOpacity?: ConditionalValue<string | number | CssProperties["backdropOpacity"]>
7399
7399
  backdropSaturate?: ConditionalValue<string | number | CssProperties["backdropSaturate"]>
7400
7400
  backdropSepia?: ConditionalValue<string | number | CssProperties["backdropSepia"]>
7401
- borderSpacingX?: ConditionalValue<UtilityValues["borderSpacingX"] | CssVars | CssProperties["borderSpacingX"]>
7402
- borderSpacingY?: ConditionalValue<UtilityValues["borderSpacingY"] | CssVars | CssProperties["borderSpacingY"]>
7401
+ borderSpacingX?: ConditionalValue<WithEscapeHatch<UtilityValues["borderSpacingX"] | CssVars>>
7402
+ borderSpacingY?: ConditionalValue<WithEscapeHatch<UtilityValues["borderSpacingY"] | CssVars>>
7403
7403
  animationState?: ConditionalValue<string | number | CssProperties["animationState"]>
7404
7404
  rotateX?: ConditionalValue<string | number | CssProperties["rotateX"]>
7405
7405
  rotateY?: ConditionalValue<string | number | CssProperties["rotateY"]>
7406
7406
  rotateZ?: ConditionalValue<string | number | CssProperties["rotateZ"]>
7407
7407
  scaleX?: ConditionalValue<string | number | CssProperties["scaleX"]>
7408
7408
  scaleY?: ConditionalValue<string | number | CssProperties["scaleY"]>
7409
- translateX?: ConditionalValue<UtilityValues["translateX"] | CssVars | CssProperties["translateX"]>
7410
- translateY?: ConditionalValue<UtilityValues["translateY"] | CssVars | CssProperties["translateY"]>
7411
- translateZ?: ConditionalValue<UtilityValues["translateZ"] | CssVars | CssProperties["translateZ"]>
7409
+ translateX?: ConditionalValue<WithEscapeHatch<UtilityValues["translateX"] | CssVars>>
7410
+ translateY?: ConditionalValue<WithEscapeHatch<UtilityValues["translateY"] | CssVars>>
7411
+ translateZ?: ConditionalValue<WithEscapeHatch<UtilityValues["translateZ"] | CssVars>>
7412
7412
  scrollbar?: ConditionalValue<UtilityValues["scrollbar"] | CssVars | CssProperties["scrollbar"]>
7413
7413
  scrollSnapStrictness?: ConditionalValue<UtilityValues["scrollSnapStrictness"] | CssVars | CssProperties["scrollSnapStrictness"]>
7414
7414
  /**
@@ -7423,7 +7423,7 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars
7423
7423
  *
7424
7424
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
7425
7425
  */
7426
- scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | CssVars | CssProperties["scrollSnapMargin"]>
7426
+ scrollSnapMargin?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSnapMargin"] | CssVars>>
7427
7427
  /**
7428
7428
  * The `scroll-margin-top` property defines the top margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
7429
7429
  *
@@ -7438,7 +7438,7 @@ scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | CssVars
7438
7438
  *
7439
7439
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
7440
7440
  */
7441
- scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | CssVars | CssProperties["scrollSnapMarginTop"]>
7441
+ scrollSnapMarginTop?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSnapMarginTop"] | CssVars>>
7442
7442
  /**
7443
7443
  * The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
7444
7444
  *
@@ -7453,7 +7453,7 @@ scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | Cs
7453
7453
  *
7454
7454
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
7455
7455
  */
7456
- scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"] | CssVars | CssProperties["scrollSnapMarginBottom"]>
7456
+ scrollSnapMarginBottom?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSnapMarginBottom"] | CssVars>>
7457
7457
  /**
7458
7458
  * The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
7459
7459
  *
@@ -7468,7 +7468,7 @@ scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"
7468
7468
  *
7469
7469
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
7470
7470
  */
7471
- scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] | CssVars | CssProperties["scrollSnapMarginLeft"]>
7471
+ scrollSnapMarginLeft?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSnapMarginLeft"] | CssVars>>
7472
7472
  /**
7473
7473
  * The `scroll-margin-right` property defines the right margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
7474
7474
  *
@@ -7483,17 +7483,15 @@ scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] |
7483
7483
  *
7484
7484
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
7485
7485
  */
7486
- scrollSnapMarginRight?: ConditionalValue<UtilityValues["scrollSnapMarginRight"] | CssVars | CssProperties["scrollSnapMarginRight"]>
7486
+ scrollSnapMarginRight?: ConditionalValue<WithEscapeHatch<UtilityValues["scrollSnapMarginRight"] | CssVars>>
7487
7487
  srOnly?: ConditionalValue<UtilityValues["srOnly"] | CssVars | CssProperties["srOnly"]>
7488
7488
  debug?: ConditionalValue<UtilityValues["debug"] | CssVars | CssProperties["debug"]>
7489
- likec4Palette?: ConditionalValue<UtilityValues["likec4Palette"] | CssVars | CssProperties["likec4Palette"]>
7490
- likec4RelationPalette?: ConditionalValue<UtilityValues["likec4RelationPalette"] | CssVars | CssProperties["likec4RelationPalette"]>
7491
7489
  colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | CssVars | CssProperties["colorPalette"]>
7492
7490
  textStyle?: ConditionalValue<UtilityValues["textStyle"] | CssVars | CssProperties["textStyle"]>
7493
7491
  layerStyle?: ConditionalValue<UtilityValues["layerStyle"] | CssVars | CssProperties["layerStyle"]>
7494
7492
  animationStyle?: ConditionalValue<UtilityValues["animationStyle"] | CssVars | CssProperties["animationStyle"]>
7495
7493
  }
7496
7494
 
7497
- type StrictTokenProps = "outlineColor" | "ringColor" | "divideColor" | "color" | "fontFamily" | "textDecorationColor" | "textEmphasisColor" | "textShadowColor" | "background" | "bg" | "backgroundColor" | "bgColor" | "gradientFrom" | "gradientTo" | "gradientVia" | "borderColor" | "borderInlineColor" | "borderXColor" | "borderBlockColor" | "borderYColor" | "borderLeftColor" | "borderInlineStartColor" | "borderStartColor" | "borderRightColor" | "borderInlineEndColor" | "borderEndColor" | "borderTopColor" | "borderBottomColor" | "borderBlockEndColor" | "borderBlockStartColor" | "boxShadowColor" | "shadowColor" | "transitionTimingFunction" | "animationTimingFunction" | "accentColor" | "caretColor" | "scrollbarColor" | "fill" | "stroke"
7495
+ type StrictTokenProps = "top" | "left" | "inset" | "insetInline" | "insetX" | "insetBlock" | "insetY" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetEnd" | "end" | "insetInlineStart" | "insetStart" | "start" | "right" | "bottom" | "gap" | "gridGap" | "gridRowGap" | "gridColumnGap" | "rowGap" | "columnGap" | "padding" | "p" | "paddingLeft" | "pl" | "paddingRight" | "pr" | "paddingTop" | "pt" | "paddingBottom" | "pb" | "paddingBlock" | "py" | "paddingY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingInline" | "paddingX" | "px" | "paddingInlineEnd" | "pe" | "paddingEnd" | "paddingInlineStart" | "ps" | "paddingStart" | "marginLeft" | "ml" | "marginRight" | "mr" | "marginTop" | "mt" | "marginBottom" | "mb" | "margin" | "m" | "marginBlock" | "my" | "marginY" | "marginBlockEnd" | "marginBlockStart" | "marginInline" | "mx" | "marginX" | "marginInlineEnd" | "me" | "marginEnd" | "marginInlineStart" | "ms" | "marginStart" | "spaceX" | "spaceY" | "outlineColor" | "ringColor" | "outlineOffset" | "ringOffset" | "divideColor" | "color" | "fontFamily" | "textDecorationColor" | "textEmphasisColor" | "textIndent" | "textShadowColor" | "background" | "bg" | "backgroundColor" | "bgColor" | "gradientFrom" | "gradientTo" | "gradientVia" | "borderColor" | "borderInlineColor" | "borderXColor" | "borderBlockColor" | "borderYColor" | "borderLeftColor" | "borderInlineStartColor" | "borderStartColor" | "borderRightColor" | "borderInlineEndColor" | "borderEndColor" | "borderTopColor" | "borderBottomColor" | "borderBlockEndColor" | "borderBlockStartColor" | "boxShadowColor" | "shadowColor" | "borderSpacing" | "borderSpacingX" | "borderSpacingY" | "transitionTimingFunction" | "animationTimingFunction" | "translateX" | "x" | "translateY" | "y" | "translateZ" | "z" | "accentColor" | "caretColor" | "scrollbarColor" | "scrollMargin" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollMarginBottom" | "scrollMarginBlock" | "scrollMarginY" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginInline" | "scrollMarginX" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingY" | "scrollPaddingBlockStart" | "scrollPaddingBlockEnd" | "scrollPaddingInline" | "scrollPaddingX" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollPaddingBottom" | "scrollSnapMargin" | "scrollSnapMarginTop" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "fill" | "stroke"
7498
7496
 
7499
7497
  type Restrict<Key, Value, Fallback> = Key extends StrictTokenProps ? Value : Value | Fallback