@cerberus-design/react 1.1.2 → 1.2.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/admonition/primitives.d.cts +3 -3
- package/dist/components/admonition/primitives.d.ts +3 -3
- package/dist/components/circular-progress/primitives.cjs +1 -1
- package/dist/components/circular-progress/primitives.d.cts +2 -953
- package/dist/components/circular-progress/primitives.d.ts +2 -953
- package/dist/components/circular-progress/primitives.js +2 -2
- package/dist/components/popover/index.cjs +19 -0
- package/dist/components/popover/index.d.cts +3 -0
- package/dist/components/popover/index.d.ts +3 -0
- package/dist/components/popover/index.js +4 -0
- package/dist/components/popover/parts.cjs +23 -0
- package/dist/components/popover/parts.d.cts +65 -0
- package/dist/components/popover/parts.d.ts +65 -0
- package/dist/components/popover/parts.js +23 -0
- package/dist/components/popover/placement-container.cjs +12 -0
- package/dist/components/popover/placement-container.d.cts +7 -0
- package/dist/components/popover/placement-container.d.ts +7 -0
- package/dist/components/popover/placement-container.js +12 -0
- package/dist/components/popover/popover.cjs +46 -0
- package/dist/components/popover/popover.d.cts +15 -0
- package/dist/components/popover/popover.d.ts +15 -0
- package/dist/components/popover/popover.js +46 -0
- package/dist/components/popover/primitives.cjs +38 -0
- package/dist/components/popover/primitives.d.cts +69 -0
- package/dist/components/popover/primitives.d.ts +69 -0
- package/dist/components/popover/primitives.js +26 -0
- package/dist/components/progress/primitives.d.cts +2 -2
- package/dist/components/progress/primitives.d.ts +2 -2
- package/dist/components/table/primitives.d.cts +10 -10
- package/dist/components/table/primitives.d.ts +10 -10
- package/dist/config/icons/default.cjs +5 -0
- package/dist/config/icons/default.js +6 -1
- package/dist/config/types.d.cts +5 -0
- package/dist/config/types.d.ts +5 -0
- package/dist/index.cjs +578 -62
- package/dist/index.client.d.cts +1 -1
- package/dist/index.client.d.ts +1 -1
- package/dist/index.client.js +2 -2
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -2
- package/dist/panda.buildinfo.json +7 -0
- package/package.json +4 -4
|
@@ -2,12 +2,7 @@ import { Progress, ProgressRootProps, ProgressLabelProps, ProgressValueTextProps
|
|
|
2
2
|
import { HTMLArkProps } from '@ark-ui/react/factory';
|
|
3
3
|
import { CircularProgressVariantProps } from 'styled-system/recipes';
|
|
4
4
|
import { CerberusPrimitiveProps } from '../../system/index';
|
|
5
|
-
import { RefAttributes,
|
|
6
|
-
import { CerberusProps } from '../..';
|
|
7
|
-
import { Nested, SystemProperties, CssVarProperties, CssVarValue, ConditionalValue, CssVars, AnyString, String, Number, CornerShapeValue, SystemStyleObject } from 'styled-system/types';
|
|
8
|
-
import { SpacingToken, AnimationToken, DurationToken, AspectRatioToken, SizeToken, RadiusToken, ShadowToken, FontSizeToken, ColorToken, ZIndexToken } from 'styled-system/tokens';
|
|
9
|
-
import { Globals } from 'node_modules/styled-system/types/csstype';
|
|
10
|
-
import { UtilityValues } from 'node_modules/styled-system/types/prop-type';
|
|
5
|
+
import { RefAttributes, DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
11
6
|
export type CircularProgressRootProps = CerberusPrimitiveProps<ProgressRootProps & CircularProgressVariantProps>;
|
|
12
7
|
export declare const CircularProgressRoot: {
|
|
13
8
|
(internalProps: CerberusPrimitiveProps<Progress.RootProps & RefAttributes<HTMLDivElement>>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -40,952 +35,6 @@ export declare const CircularProgressCircleRange: {
|
|
|
40
35
|
};
|
|
41
36
|
export type CircularProgressInfoGroupProps = HTMLArkProps<'div'>;
|
|
42
37
|
export declare const CircularProgressInfoGroup: {
|
|
43
|
-
(internalProps: CerberusPrimitiveProps<
|
|
44
|
-
[x: string]: any;
|
|
45
|
-
[x: number]: any;
|
|
46
|
-
[x: symbol]: any;
|
|
47
|
-
htmlWidth?: string | number | undefined;
|
|
48
|
-
htmlHeight?: string | number | undefined;
|
|
49
|
-
htmlTranslate?: "yes" | "no" | undefined | undefined;
|
|
50
|
-
htmlContent?: string | undefined;
|
|
51
|
-
} & {
|
|
52
|
-
[x: `&[data-part=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
53
|
-
[x: `&[data-attr=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
54
|
-
[x: `&[data-placement=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
55
|
-
[x: `&[data-theme=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
56
|
-
[x: `&[data-size=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
57
|
-
[x: `&[data-state=${string}]`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
58
|
-
[x: `[data-part=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
59
|
-
[x: `[data-attr=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
60
|
-
[x: `[data-placement=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
61
|
-
[x: `[data-theme=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
62
|
-
[x: `[data-size=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
63
|
-
[x: `[data-state=${string}] &`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
64
|
-
[x: `${string}&`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
65
|
-
[x: `&${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
66
|
-
[x: `@page${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
67
|
-
[x: `@media${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
68
|
-
[x: `@layer${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
69
|
-
[x: `@container${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
70
|
-
[x: `@supports${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
71
|
-
[x: `@scope${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
72
|
-
[x: `@starting-style${string}`]: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
73
|
-
[x: `--${string}`]: CssVarValue | undefined;
|
|
74
|
-
top?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Top< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Top< String | Number> | undefined>[] | undefined>;
|
|
75
|
-
right?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Right< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Right< String | Number> | undefined>[] | undefined>;
|
|
76
|
-
bottom?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Bottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Bottom< String | Number> | undefined>[] | undefined>;
|
|
77
|
-
left?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Left< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Left< String | Number> | undefined>[] | undefined>;
|
|
78
|
-
p?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Padding< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Padding< String | Number> | undefined>[] | undefined>;
|
|
79
|
-
clipPath?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ClipPath | readonly string[] | undefined>;
|
|
80
|
-
filter?: ConditionalValue< CssVars | AnyString | "auto" | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Filter | undefined>;
|
|
81
|
-
marker?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Marker | undefined>;
|
|
82
|
-
mask?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Mask< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Mask< String | Number> | undefined>[] | undefined>;
|
|
83
|
-
page?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Page | undefined>;
|
|
84
|
-
container?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Container | undefined>;
|
|
85
|
-
_cerberusTheme?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
86
|
-
_lightMode?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
87
|
-
_darkMode?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
88
|
-
_systemMode?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
89
|
-
_open?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
90
|
-
_closed?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
91
|
-
_modalOpen?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
92
|
-
_pinned?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
93
|
-
_leftPinned?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
94
|
-
_rightPinned?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
95
|
-
_isOver?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
96
|
-
_isDropped?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
97
|
-
_isComplete?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
98
|
-
_placeholderShown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
99
|
-
_screenReaderOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
100
|
-
_checked?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
101
|
-
_indeterminate?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
102
|
-
_dataReadOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
103
|
-
_userInvalid?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
104
|
-
_groupInvalid?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
105
|
-
_groupChecked?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
106
|
-
_notDisabled?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
107
|
-
_highEmphasis?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
108
|
-
_lowEmphasis?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
109
|
-
_today?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
110
|
-
_pastDay?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
111
|
-
_inRange?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
112
|
-
_startRange?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
113
|
-
_endRange?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
114
|
-
_positionBottom?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
115
|
-
_positionTop?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
116
|
-
_positionLeft?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
117
|
-
_positionRight?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
118
|
-
_startIndicator?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
119
|
-
_endIndicator?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
120
|
-
_horizontal?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
121
|
-
_vertical?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
122
|
-
_xsSize?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
123
|
-
_smSize?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
124
|
-
_mdSize?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
125
|
-
_lgSize?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
126
|
-
_xlSize?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
127
|
-
_notify?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
128
|
-
_startIcon?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
129
|
-
_tooltip?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
130
|
-
_admin?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
131
|
-
_student?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
132
|
-
_user?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
133
|
-
_highlight?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
134
|
-
_spellingError?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
135
|
-
_grammarError?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
136
|
-
_pagePalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
137
|
-
_actionPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
138
|
-
_secondaryActionPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
139
|
-
_infoPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
140
|
-
_successPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
141
|
-
_warningPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
142
|
-
_dangerPalette?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
143
|
-
_page?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
144
|
-
_action?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
145
|
-
_secondaryAction?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
146
|
-
_info?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
147
|
-
_success?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
148
|
-
_warning?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
149
|
-
_danger?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
150
|
-
_hover?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
151
|
-
_focus?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
152
|
-
_focusWithin?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
153
|
-
_focusVisible?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
154
|
-
_disabled?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
155
|
-
_active?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
156
|
-
_visited?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
157
|
-
_target?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
158
|
-
_readOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
159
|
-
_readWrite?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
160
|
-
_empty?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
161
|
-
_enabled?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
162
|
-
_expanded?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
163
|
-
_highlighted?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
164
|
-
_complete?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
165
|
-
_incomplete?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
166
|
-
_dragging?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
167
|
-
_before?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
168
|
-
_after?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
169
|
-
_firstLetter?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
170
|
-
_firstLine?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
171
|
-
_marker?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
172
|
-
_selection?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
173
|
-
_file?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
174
|
-
_backdrop?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
175
|
-
_first?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
176
|
-
_last?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
177
|
-
_only?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
178
|
-
_even?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
179
|
-
_odd?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
180
|
-
_firstOfType?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
181
|
-
_lastOfType?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
182
|
-
_onlyOfType?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
183
|
-
_peerFocus?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
184
|
-
_peerHover?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
185
|
-
_peerActive?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
186
|
-
_peerFocusWithin?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
187
|
-
_peerFocusVisible?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
188
|
-
_peerDisabled?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
189
|
-
_peerChecked?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
190
|
-
_peerInvalid?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
191
|
-
_peerExpanded?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
192
|
-
_peerPlaceholderShown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
193
|
-
_groupFocus?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
194
|
-
_groupHover?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
195
|
-
_groupActive?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
196
|
-
_groupFocusWithin?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
197
|
-
_groupFocusVisible?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
198
|
-
_groupDisabled?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
199
|
-
_groupExpanded?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
200
|
-
_required?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
201
|
-
_valid?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
202
|
-
_invalid?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
203
|
-
_autofill?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
204
|
-
_outOfRange?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
205
|
-
_placeholder?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
206
|
-
_pressed?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
207
|
-
_selected?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
208
|
-
_grabbed?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
209
|
-
_underValue?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
210
|
-
_overValue?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
211
|
-
_atValue?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
212
|
-
_default?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
213
|
-
_optional?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
214
|
-
_fullscreen?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
215
|
-
_loading?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
216
|
-
_hidden?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
217
|
-
_current?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
218
|
-
_currentPage?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
219
|
-
_currentStep?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
220
|
-
_unavailable?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
221
|
-
_rangeStart?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
222
|
-
_rangeEnd?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
223
|
-
_now?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
224
|
-
_topmost?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
225
|
-
_motionReduce?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
226
|
-
_motionSafe?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
227
|
-
_print?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
228
|
-
_landscape?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
229
|
-
_portrait?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
230
|
-
_dark?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
231
|
-
_light?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
232
|
-
_osDark?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
233
|
-
_osLight?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
234
|
-
_highContrast?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
235
|
-
_lessContrast?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
236
|
-
_moreContrast?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
237
|
-
_ltr?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
238
|
-
_rtl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
239
|
-
_scrollbar?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
240
|
-
_scrollbarThumb?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
241
|
-
_scrollbarTrack?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
242
|
-
_icon?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
243
|
-
_starting?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
244
|
-
_noscript?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
245
|
-
_invertedColors?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
246
|
-
sm?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
247
|
-
smOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
248
|
-
smDown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
249
|
-
md?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
250
|
-
mdOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
251
|
-
mdDown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
252
|
-
lg?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
253
|
-
lgOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
254
|
-
lgDown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
255
|
-
xl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
256
|
-
xlOnly?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
257
|
-
xlDown?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
258
|
-
"2xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
259
|
-
"2xlOnly"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
260
|
-
"2xlDown"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
261
|
-
smToMd?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
262
|
-
smToLg?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
263
|
-
smToXl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
264
|
-
smTo2xl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
265
|
-
mdToLg?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
266
|
-
mdToXl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
267
|
-
mdTo2xl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
268
|
-
lgToXl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
269
|
-
lgTo2xl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
270
|
-
xlTo2xl?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
271
|
-
"@/xs"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
272
|
-
"@/sm"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
273
|
-
"@/md"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
274
|
-
"@/lg"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
275
|
-
"@/xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
276
|
-
"@/2xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
277
|
-
"@/3xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
278
|
-
"@/4xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
279
|
-
"@/5xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
280
|
-
"@/6xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
281
|
-
"@/7xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
282
|
-
"@/8xl"?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
283
|
-
_themeCerberus?: Nested< SystemProperties & CssVarProperties> | undefined;
|
|
284
|
-
"--font-display"?: CssVarValue | undefined;
|
|
285
|
-
"--font-sans"?: CssVarValue | undefined;
|
|
286
|
-
"--font-mono"?: CssVarValue | undefined;
|
|
287
|
-
display?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Display | undefined>;
|
|
288
|
-
overlay?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Overlay | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Overlay | undefined>[] | undefined>;
|
|
289
|
-
WebkitAppearance?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitAppearance | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitAppearance | undefined>[] | undefined>;
|
|
290
|
-
WebkitBorderBefore?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitBorderBefore< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitBorderBefore< String | Number> | undefined>[] | undefined>;
|
|
291
|
-
WebkitBorderBeforeColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitBorderBeforeColor | undefined>;
|
|
292
|
-
WebkitBorderBeforeStyle?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitBorderBeforeStyle | undefined>;
|
|
293
|
-
WebkitBorderBeforeWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitBorderBeforeWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitBorderBeforeWidth< String | Number> | undefined>[] | undefined>;
|
|
294
|
-
WebkitBoxReflect?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitBoxReflect< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitBoxReflect< String | Number> | undefined>[] | undefined>;
|
|
295
|
-
WebkitLineClamp?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitLineClamp | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitLineClamp | undefined>[] | undefined>;
|
|
296
|
-
WebkitMask?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMask< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMask< String | Number> | undefined>[] | undefined>;
|
|
297
|
-
WebkitMaskAttachment?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskAttachment | undefined>;
|
|
298
|
-
WebkitMaskClip?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskClip | undefined>;
|
|
299
|
-
WebkitMaskComposite?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskComposite | undefined>;
|
|
300
|
-
WebkitMaskImage?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskImage | undefined>;
|
|
301
|
-
WebkitMaskOrigin?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskOrigin | undefined>;
|
|
302
|
-
WebkitMaskPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskPosition< String | Number> | undefined>[] | undefined>;
|
|
303
|
-
WebkitMaskPositionX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskPositionX< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskPositionX< String | Number> | undefined>[] | undefined>;
|
|
304
|
-
WebkitMaskPositionY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskPositionY< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskPositionY< String | Number> | undefined>[] | undefined>;
|
|
305
|
-
WebkitMaskRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitMaskRepeat | undefined>;
|
|
306
|
-
WebkitMaskRepeatX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskRepeatX | undefined>[] | undefined>;
|
|
307
|
-
WebkitMaskRepeatY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskRepeatY | undefined>[] | undefined>;
|
|
308
|
-
WebkitMaskSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitMaskSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitMaskSize< String | Number> | undefined>[] | undefined>;
|
|
309
|
-
WebkitOverflowScrolling?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitOverflowScrolling | undefined>[] | undefined>;
|
|
310
|
-
WebkitTapHighlightColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitTapHighlightColor | undefined>;
|
|
311
|
-
WebkitTextFillColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
312
|
-
WebkitTextStroke?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitTextStroke< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitTextStroke< String | Number> | undefined>[] | undefined>;
|
|
313
|
-
WebkitTextStrokeColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WebkitTextStrokeColor | undefined>;
|
|
314
|
-
WebkitTextStrokeWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitTextStrokeWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitTextStrokeWidth< String | Number> | undefined>[] | undefined>;
|
|
315
|
-
WebkitTouchCallout?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitTouchCallout | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitTouchCallout | undefined>[] | undefined>;
|
|
316
|
-
WebkitUserModify?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitUserModify | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitUserModify | undefined>[] | undefined>;
|
|
317
|
-
WebkitUserSelect?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WebkitUserSelect | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WebkitUserSelect | undefined>[] | undefined>;
|
|
318
|
-
accentColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "auto" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
319
|
-
alignContent?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AlignContent | undefined>;
|
|
320
|
-
alignItems?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AlignItems | undefined>;
|
|
321
|
-
alignSelf?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AlignSelf | undefined>;
|
|
322
|
-
alignTracks?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AlignTracks | undefined>;
|
|
323
|
-
all?: ConditionalValue< CssVars | AnyString | Globals | readonly NonNullable< Globals | undefined>[] | undefined>;
|
|
324
|
-
anchorName?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnchorName | undefined>;
|
|
325
|
-
anchorScope?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnchorScope | undefined>;
|
|
326
|
-
animation?: ConditionalValue< AnimationToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Animation<string & {}> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Animation<string & {}> | undefined>[] | undefined>;
|
|
327
|
-
animationComposition?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationComposition | undefined>;
|
|
328
|
-
animationDelay?: ConditionalValue< DurationToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationDelay<string & {}> | undefined>;
|
|
329
|
-
animationDirection?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationDirection | undefined>;
|
|
330
|
-
animationDuration?: ConditionalValue< DurationToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationDuration<string & {}> | undefined>;
|
|
331
|
-
animationFillMode?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationFillMode | undefined>;
|
|
332
|
-
animationIterationCount?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.AnimationIterationCount | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AnimationIterationCount | undefined>[] | undefined>;
|
|
333
|
-
animationName?: ConditionalValue<"spin" | "ping" | "pulse" | "bounce" | CssVars | AnyString | "position" | "bgPosition" | readonly string[] | "expandHeight" | "collapseHeight" | "expandWidth" | "collapseWidth" | "fadeIn" | "fadeOut" | "fadeInDown" | "slideIn" | "slideOut" | "slideFromLeftFull" | "slideFromRightFull" | "slideFromTopFull" | "slideFromBottomFull" | "slideFromTop" | "slideFromBottom" | "slideFromLeft" | "slideFromRight" | "slideToTop" | "slideToBottom" | "slideToLeft" | "slideToRight" | "rubberBand" | "scaleIn" | "scaleOut" | "zoomIn" | import("node_modules/styled-system/types/csstype").Property.AnimationName | undefined>;
|
|
334
|
-
animationPlayState?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationPlayState | undefined>;
|
|
335
|
-
animationRange?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.AnimationRange< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AnimationRange< String | Number> | undefined>[] | undefined>;
|
|
336
|
-
animationRangeEnd?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.AnimationRangeEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AnimationRangeEnd< String | Number> | undefined>[] | undefined>;
|
|
337
|
-
animationRangeStart?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.AnimationRangeStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AnimationRangeStart< String | Number> | undefined>[] | undefined>;
|
|
338
|
-
animationTimeline?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.AnimationTimeline | undefined>;
|
|
339
|
-
animationTimingFunction?: ConditionalValue<"default" | "linear" | "in" | "out" | "in-out" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | undefined>;
|
|
340
|
-
appearance?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Appearance | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Appearance | undefined>[] | undefined>;
|
|
341
|
-
aspectRatio?: ConditionalValue< AspectRatioToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.AspectRatio | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AspectRatio | undefined>[] | undefined>;
|
|
342
|
-
backdropFilter?: ConditionalValue< CssVars | AnyString | "auto" | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackdropFilter | undefined>;
|
|
343
|
-
backfaceVisibility?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BackfaceVisibility | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackfaceVisibility | undefined>[] | undefined>;
|
|
344
|
-
background?: ConditionalValue<"top" | "right" | "bottom" | "left" | "center" | "none" | "black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | String | Number | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "border-box" | "content-box" | "padding-box" | "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "fixed" | "local" | "scroll" | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Background< String | Number> | undefined>[] | undefined>;
|
|
345
|
-
backgroundAttachment?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundAttachment | undefined>;
|
|
346
|
-
backgroundBlendMode?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundBlendMode | undefined>;
|
|
347
|
-
backgroundClip?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundClip | undefined>;
|
|
348
|
-
backgroundColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
349
|
-
backgroundImage?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundImage | undefined>;
|
|
350
|
-
backgroundOrigin?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundOrigin | undefined>;
|
|
351
|
-
backgroundPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPosition< String | Number> | undefined>[] | undefined>;
|
|
352
|
-
backgroundPositionX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPositionX< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPositionX< String | Number> | undefined>[] | undefined>;
|
|
353
|
-
backgroundPositionY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPositionY< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPositionY< String | Number> | undefined>[] | undefined>;
|
|
354
|
-
backgroundRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundRepeat | undefined>;
|
|
355
|
-
backgroundSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundSize< String | Number> | undefined>[] | undefined>;
|
|
356
|
-
blockSize?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.BlockSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BlockSize< String | Number> | undefined>[] | undefined>;
|
|
357
|
-
border?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Border< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Border< String | Number> | undefined>[] | undefined>;
|
|
358
|
-
borderBlock?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlock< String | Number> | undefined>[] | undefined>;
|
|
359
|
-
borderBlockColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
360
|
-
borderBlockEnd?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
361
|
-
borderBlockEndColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
362
|
-
borderBlockEndStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockEndStyle | undefined>[] | undefined>;
|
|
363
|
-
borderBlockEndWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockEndWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockEndWidth< String | Number> | undefined>[] | undefined>;
|
|
364
|
-
borderBlockStart?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockStart< String | Number> | undefined>[] | undefined>;
|
|
365
|
-
borderBlockStartColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
366
|
-
borderBlockStartStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockStartStyle | undefined>[] | undefined>;
|
|
367
|
-
borderBlockStartWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockStartWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockStartWidth< String | Number> | undefined>[] | undefined>;
|
|
368
|
-
borderBlockStyle?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderBlockStyle | undefined>;
|
|
369
|
-
borderBlockWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockWidth< String | Number> | undefined>[] | undefined>;
|
|
370
|
-
borderBottom?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottom< String | Number> | undefined>[] | undefined>;
|
|
371
|
-
borderBottomColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
372
|
-
borderBottomLeftRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomLeftRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomLeftRadius< String | Number> | undefined>[] | undefined>;
|
|
373
|
-
borderBottomRightRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomRightRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomRightRadius< String | Number> | undefined>[] | undefined>;
|
|
374
|
-
borderBottomStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomStyle | undefined>[] | undefined>;
|
|
375
|
-
borderBottomWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomWidth< String | Number> | undefined>[] | undefined>;
|
|
376
|
-
borderCollapse?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderCollapse | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderCollapse | undefined>[] | undefined>;
|
|
377
|
-
borderColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
378
|
-
borderEndEndRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderEndEndRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderEndEndRadius< String | Number> | undefined>[] | undefined>;
|
|
379
|
-
borderEndStartRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderEndStartRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderEndStartRadius< String | Number> | undefined>[] | undefined>;
|
|
380
|
-
borderImage?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderImage | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderImage | undefined>[] | undefined>;
|
|
381
|
-
borderImageOutset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderImageOutset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderImageOutset< String | Number> | undefined>[] | undefined>;
|
|
382
|
-
borderImageRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderImageRepeat | undefined>;
|
|
383
|
-
borderImageSlice?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderImageSlice | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderImageSlice | undefined>[] | undefined>;
|
|
384
|
-
borderImageSource?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderImageSource | undefined>;
|
|
385
|
-
borderImageWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderImageWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderImageWidth< String | Number> | undefined>[] | undefined>;
|
|
386
|
-
borderInline?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInline< String | Number> | undefined>[] | undefined>;
|
|
387
|
-
borderInlineColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
388
|
-
borderInlineEnd?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
389
|
-
borderInlineEndColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
390
|
-
borderInlineEndStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineEndStyle | undefined>[] | undefined>;
|
|
391
|
-
borderInlineEndWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineEndWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineEndWidth< String | Number> | undefined>[] | undefined>;
|
|
392
|
-
borderInlineStart?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineStart< String | Number> | undefined>[] | undefined>;
|
|
393
|
-
borderInlineStartColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
394
|
-
borderInlineStartStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineStartStyle | undefined>[] | undefined>;
|
|
395
|
-
borderInlineStartWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineStartWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineStartWidth< String | Number> | undefined>[] | undefined>;
|
|
396
|
-
borderInlineStyle?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderInlineStyle | undefined>;
|
|
397
|
-
borderInlineWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineWidth< String | Number> | undefined>[] | undefined>;
|
|
398
|
-
borderLeft?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderLeft< String | Number> | undefined>[] | undefined>;
|
|
399
|
-
borderLeftColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
400
|
-
borderLeftStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderLeftStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderLeftStyle | undefined>[] | undefined>;
|
|
401
|
-
borderLeftWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderLeftWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderLeftWidth< String | Number> | undefined>[] | undefined>;
|
|
402
|
-
borderRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
403
|
-
borderRight?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRight< String | Number> | undefined>[] | undefined>;
|
|
404
|
-
borderRightColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
405
|
-
borderRightStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRightStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRightStyle | undefined>[] | undefined>;
|
|
406
|
-
borderRightWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRightWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRightWidth< String | Number> | undefined>[] | undefined>;
|
|
407
|
-
borderSpacing?: ConditionalValue< SpacingToken | CssVars | AnyString | "auto" | import("node_modules/styled-system/types/csstype").Property.BorderSpacing< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderSpacing< String | Number> | undefined>[] | undefined>;
|
|
408
|
-
borderStartEndRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderStartEndRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderStartEndRadius< String | Number> | undefined>[] | undefined>;
|
|
409
|
-
borderStartStartRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderStartStartRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderStartStartRadius< String | Number> | undefined>[] | undefined>;
|
|
410
|
-
borderStyle?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderStyle | undefined>;
|
|
411
|
-
borderTop?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTop< String | Number> | undefined>[] | undefined>;
|
|
412
|
-
borderTopColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
413
|
-
borderTopLeftRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopLeftRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopLeftRadius< String | Number> | undefined>[] | undefined>;
|
|
414
|
-
borderTopRightRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopRightRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopRightRadius< String | Number> | undefined>[] | undefined>;
|
|
415
|
-
borderTopStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopStyle | undefined>[] | undefined>;
|
|
416
|
-
borderTopWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopWidth< String | Number> | undefined>[] | undefined>;
|
|
417
|
-
borderWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderWidth< String | Number> | undefined>[] | undefined>;
|
|
418
|
-
boxAlign?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxAlign | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxAlign | undefined>[] | undefined>;
|
|
419
|
-
boxDecorationBreak?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BoxDecorationBreak | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxDecorationBreak | undefined>[] | undefined>;
|
|
420
|
-
boxDirection?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxDirection | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxDirection | undefined>[] | undefined>;
|
|
421
|
-
boxFlex?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxFlex | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxFlex | undefined>[] | undefined>;
|
|
422
|
-
boxFlexGroup?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxFlexGroup | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxFlexGroup | undefined>[] | undefined>;
|
|
423
|
-
boxLines?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxLines | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxLines | undefined>[] | undefined>;
|
|
424
|
-
boxOrdinalGroup?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxOrdinalGroup | undefined>[] | undefined>;
|
|
425
|
-
boxOrient?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxOrient | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxOrient | undefined>[] | undefined>;
|
|
426
|
-
boxPack?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BoxPack | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxPack | undefined>[] | undefined>;
|
|
427
|
-
boxShadow?: ConditionalValue< ShadowToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BoxShadow | undefined>;
|
|
428
|
-
boxSizing?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BoxSizing | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BoxSizing | undefined>[] | undefined>;
|
|
429
|
-
breakAfter?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BreakAfter | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BreakAfter | undefined>[] | undefined>;
|
|
430
|
-
breakBefore?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BreakBefore | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BreakBefore | undefined>[] | undefined>;
|
|
431
|
-
breakInside?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BreakInside | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BreakInside | undefined>[] | undefined>;
|
|
432
|
-
captionSide?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.CaptionSide | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.CaptionSide | undefined>[] | undefined>;
|
|
433
|
-
caret?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Caret | undefined>;
|
|
434
|
-
caretColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "auto" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
435
|
-
caretShape?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.CaretShape | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.CaretShape | undefined>[] | undefined>;
|
|
436
|
-
clear?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Clear | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Clear | undefined>[] | undefined>;
|
|
437
|
-
clip?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Clip | undefined>;
|
|
438
|
-
clipRule?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ClipRule | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ClipRule | undefined>[] | undefined>;
|
|
439
|
-
color?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
440
|
-
colorInterpolationFilters?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColorInterpolationFilters | undefined>[] | undefined>;
|
|
441
|
-
colorScheme?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ColorScheme | undefined>;
|
|
442
|
-
columnCount?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnCount | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnCount | undefined>[] | undefined>;
|
|
443
|
-
columnFill?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnFill | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnFill | undefined>[] | undefined>;
|
|
444
|
-
columnGap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnGap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnGap< String | Number> | undefined>[] | undefined>;
|
|
445
|
-
columnRule?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnRule< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnRule< String | Number> | undefined>[] | undefined>;
|
|
446
|
-
columnRuleColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ColumnRuleColor | undefined>;
|
|
447
|
-
columnRuleStyle?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ColumnRuleStyle | undefined>;
|
|
448
|
-
columnRuleWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnRuleWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnRuleWidth< String | Number> | undefined>[] | undefined>;
|
|
449
|
-
columnSpan?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnSpan | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnSpan | undefined>[] | undefined>;
|
|
450
|
-
columnWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColumnWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColumnWidth< String | Number> | undefined>[] | undefined>;
|
|
451
|
-
columns?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Columns< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Columns< String | Number> | undefined>[] | undefined>;
|
|
452
|
-
contain?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Contain | undefined>;
|
|
453
|
-
containIntrinsicBlockSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicBlockSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicBlockSize< String | Number> | undefined>[] | undefined>;
|
|
454
|
-
containIntrinsicHeight?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicHeight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicHeight< String | Number> | undefined>[] | undefined>;
|
|
455
|
-
containIntrinsicInlineSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicInlineSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicInlineSize< String | Number> | undefined>[] | undefined>;
|
|
456
|
-
containIntrinsicSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicSize< String | Number> | undefined>[] | undefined>;
|
|
457
|
-
containIntrinsicWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContainIntrinsicWidth< String | Number> | undefined>[] | undefined>;
|
|
458
|
-
containerName?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ContainerName | undefined>;
|
|
459
|
-
containerType?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ContainerType | undefined>;
|
|
460
|
-
content?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Content | undefined>;
|
|
461
|
-
contentVisibility?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ContentVisibility | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ContentVisibility | undefined>[] | undefined>;
|
|
462
|
-
cornerShape?: ConditionalValue< AnyString | String | Globals | CornerShapeValue | "square square" | "square round" | "square bevel" | "square scoop" | "square notch" | "square squircle" | `square superellipse(${number})` | "round square" | "round round" | "round bevel" | "round scoop" | "round notch" | "round squircle" | `round superellipse(${number})` | "bevel square" | "bevel round" | "bevel bevel" | "bevel scoop" | "bevel notch" | "bevel squircle" | `bevel superellipse(${number})` | "scoop square" | "scoop round" | "scoop bevel" | "scoop scoop" | "scoop notch" | "scoop squircle" | `scoop superellipse(${number})` | "notch square" | "notch round" | "notch bevel" | "notch scoop" | "notch notch" | "notch squircle" | `notch superellipse(${number})` | "squircle square" | "squircle round" | "squircle bevel" | "squircle scoop" | "squircle notch" | "squircle squircle" | `squircle superellipse(${number})` | `superellipse(${number}) square` | `superellipse(${number}) round` | `superellipse(${number}) bevel` | `superellipse(${number}) scoop` | `superellipse(${number}) notch` | `superellipse(${number}) squircle` | `superellipse(${number}) superellipse(${number})` | "square square square" | "square square round" | "square square bevel" | "square square scoop" | "square square notch" | "square square squircle" | `square square superellipse(${number})` | "square round square" | "square round round" | "square round bevel" | "square round scoop" | "square round notch" | "square round squircle" | `square round superellipse(${number})` | "square bevel square" | "square bevel round" | "square bevel bevel" | "square bevel scoop" | "square bevel notch" | "square bevel squircle" | `square bevel superellipse(${number})` | "square scoop square" | "square scoop round" | "square scoop bevel" | "square scoop scoop" | "square scoop notch" | "square scoop squircle" | `square scoop superellipse(${number})` | "square notch square" | "square notch round" | "square notch bevel" | "square notch scoop" | "square notch notch" | "square notch squircle" | `square notch superellipse(${number})` | "square squircle square" | "square squircle round" | "square squircle bevel" | "square squircle scoop" | "square squircle notch" | "square squircle squircle" | `square squircle superellipse(${number})` | `square superellipse(${number}) square` | `square superellipse(${number}) round` | `square superellipse(${number}) bevel` | `square superellipse(${number}) scoop` | `square superellipse(${number}) notch` | `square superellipse(${number}) squircle` | `square superellipse(${number}) superellipse(${number})` | "round square square" | "round square round" | "round square bevel" | "round square scoop" | "round square notch" | "round square squircle" | `round square superellipse(${number})` | "round round square" | "round round round" | "round round bevel" | "round round scoop" | "round round notch" | "round round squircle" | `round round superellipse(${number})` | "round bevel square" | "round bevel round" | "round bevel bevel" | "round bevel scoop" | "round bevel notch" | "round bevel squircle" | `round bevel superellipse(${number})` | "round scoop square" | "round scoop round" | "round scoop bevel" | "round scoop scoop" | "round scoop notch" | "round scoop squircle" | `round scoop superellipse(${number})` | "round notch square" | "round notch round" | "round notch bevel" | "round notch scoop" | "round notch notch" | "round notch squircle" | `round notch superellipse(${number})` | "round squircle square" | "round squircle round" | "round squircle bevel" | "round squircle scoop" | "round squircle notch" | "round squircle squircle" | `round squircle superellipse(${number})` | `round superellipse(${number}) square` | `round superellipse(${number}) round` | `round superellipse(${number}) bevel` | `round superellipse(${number}) scoop` | `round superellipse(${number}) notch` | `round superellipse(${number}) squircle` | `round superellipse(${number}) superellipse(${number})` | "bevel square square" | "bevel square round" | "bevel square bevel" | "bevel square scoop" | "bevel square notch" | "bevel square squircle" | `bevel square superellipse(${number})` | "bevel round square" | "bevel round round" | "bevel round bevel" | "bevel round scoop" | "bevel round notch" | "bevel round squircle" | `bevel round superellipse(${number})` | "bevel bevel square" | "bevel bevel round" | "bevel bevel bevel" | "bevel bevel scoop" | "bevel bevel notch" | "bevel bevel squircle" | `bevel bevel superellipse(${number})` | "bevel scoop square" | "bevel scoop round" | "bevel scoop bevel" | "bevel scoop scoop" | "bevel scoop notch" | "bevel scoop squircle" | `bevel scoop superellipse(${number})` | "bevel notch square" | "bevel notch round" | "bevel notch bevel" | "bevel notch scoop" | "bevel notch notch" | "bevel notch squircle" | `bevel notch superellipse(${number})` | "bevel squircle square" | "bevel squircle round" | "bevel squircle bevel" | "bevel squircle scoop" | "bevel squircle notch" | "bevel squircle squircle" | `bevel squircle superellipse(${number})` | `bevel superellipse(${number}) square` | `bevel superellipse(${number}) round` | `bevel superellipse(${number}) bevel` | `bevel superellipse(${number}) scoop` | `bevel superellipse(${number}) notch` | `bevel superellipse(${number}) squircle` | `bevel superellipse(${number}) superellipse(${number})` | "scoop square square" | "scoop square round" | "scoop square bevel" | "scoop square scoop" | "scoop square notch" | "scoop square squircle" | `scoop square superellipse(${number})` | "scoop round square" | "scoop round round" | "scoop round bevel" | "scoop round scoop" | "scoop round notch" | "scoop round squircle" | `scoop round superellipse(${number})` | "scoop bevel square" | "scoop bevel round" | "scoop bevel bevel" | "scoop bevel scoop" | "scoop bevel notch" | "scoop bevel squircle" | `scoop bevel superellipse(${number})` | "scoop scoop square" | "scoop scoop round" | "scoop scoop bevel" | "scoop scoop scoop" | "scoop scoop notch" | "scoop scoop squircle" | `scoop scoop superellipse(${number})` | "scoop notch square" | "scoop notch round" | "scoop notch bevel" | "scoop notch scoop" | "scoop notch notch" | "scoop notch squircle" | `scoop notch superellipse(${number})` | "scoop squircle square" | "scoop squircle round" | "scoop squircle bevel" | "scoop squircle scoop" | "scoop squircle notch" | "scoop squircle squircle" | `scoop squircle superellipse(${number})` | `scoop superellipse(${number}) square` | `scoop superellipse(${number}) round` | `scoop superellipse(${number}) bevel` | `scoop superellipse(${number}) scoop` | `scoop superellipse(${number}) notch` | `scoop superellipse(${number}) squircle` | `scoop superellipse(${number}) superellipse(${number})` | "notch square square" | "notch square round" | "notch square bevel" | "notch square scoop" | "notch square notch" | "notch square squircle" | `notch square superellipse(${number})` | "notch round square" | "notch round round" | "notch round bevel" | "notch round scoop" | "notch round notch" | "notch round squircle" | `notch round superellipse(${number})` | "notch bevel square" | "notch bevel round" | "notch bevel bevel" | "notch bevel scoop" | "notch bevel notch" | "notch bevel squircle" | `notch bevel superellipse(${number})` | "notch scoop square" | "notch scoop round" | "notch scoop bevel" | "notch scoop scoop" | "notch scoop notch" | "notch scoop squircle" | `notch scoop superellipse(${number})` | "notch notch square" | "notch notch round" | "notch notch bevel" | "notch notch scoop" | "notch notch notch" | "notch notch squircle" | `notch notch superellipse(${number})` | "notch squircle square" | "notch squircle round" | "notch squircle bevel" | "notch squircle scoop" | "notch squircle notch" | "notch squircle squircle" | `notch squircle superellipse(${number})` | `notch superellipse(${number}) square` | `notch superellipse(${number}) round` | `notch superellipse(${number}) bevel` | `notch superellipse(${number}) scoop` | `notch superellipse(${number}) notch` | `notch superellipse(${number}) squircle` | `notch superellipse(${number}) superellipse(${number})` | "squircle square square" | "squircle square round" | "squircle square bevel" | "squircle square scoop" | "squircle square notch" | "squircle square squircle" | `squircle square superellipse(${number})` | "squircle round square" | "squircle round round" | "squircle round bevel" | "squircle round scoop" | "squircle round notch" | "squircle round squircle" | `squircle round superellipse(${number})` | "squircle bevel square" | "squircle bevel round" | "squircle bevel bevel" | "squircle bevel scoop" | "squircle bevel notch" | "squircle bevel squircle" | `squircle bevel superellipse(${number})` | "squircle scoop square" | "squircle scoop round" | "squircle scoop bevel" | "squircle scoop scoop" | "squircle scoop notch" | "squircle scoop squircle" | `squircle scoop superellipse(${number})` | "squircle notch square" | "squircle notch round" | "squircle notch bevel" | "squircle notch scoop" | "squircle notch notch" | "squircle notch squircle" | `squircle notch superellipse(${number})` | "squircle squircle square" | "squircle squircle round" | "squircle squircle bevel" | "squircle squircle scoop" | "squircle squircle notch" | "squircle squircle squircle" | `squircle squircle superellipse(${number})` | `squircle superellipse(${number}) square` | `squircle superellipse(${number}) round` | `squircle superellipse(${number}) bevel` | `squircle superellipse(${number}) scoop` | `squircle superellipse(${number}) notch` | `squircle superellipse(${number}) squircle` | `squircle superellipse(${number}) superellipse(${number})` | `superellipse(${number}) square square` | `superellipse(${number}) square round` | `superellipse(${number}) square bevel` | `superellipse(${number}) square scoop` | `superellipse(${number}) square notch` | `superellipse(${number}) square squircle` | `superellipse(${number}) square superellipse(${number})` | `superellipse(${number}) round square` | `superellipse(${number}) round round` | `superellipse(${number}) round bevel` | `superellipse(${number}) round scoop` | `superellipse(${number}) round notch` | `superellipse(${number}) round squircle` | `superellipse(${number}) round superellipse(${number})` | `superellipse(${number}) bevel square` | `superellipse(${number}) bevel round` | `superellipse(${number}) bevel bevel` | `superellipse(${number}) bevel scoop` | `superellipse(${number}) bevel notch` | `superellipse(${number}) bevel squircle` | `superellipse(${number}) bevel superellipse(${number})` | `superellipse(${number}) scoop square` | `superellipse(${number}) scoop round` | `superellipse(${number}) scoop bevel` | `superellipse(${number}) scoop scoop` | `superellipse(${number}) scoop notch` | `superellipse(${number}) scoop squircle` | `superellipse(${number}) scoop superellipse(${number})` | `superellipse(${number}) notch square` | `superellipse(${number}) notch round` | `superellipse(${number}) notch bevel` | `superellipse(${number}) notch scoop` | `superellipse(${number}) notch notch` | `superellipse(${number}) notch squircle` | `superellipse(${number}) notch superellipse(${number})` | `superellipse(${number}) squircle square` | `superellipse(${number}) squircle round` | `superellipse(${number}) squircle bevel` | `superellipse(${number}) squircle scoop` | `superellipse(${number}) squircle notch` | `superellipse(${number}) squircle squircle` | `superellipse(${number}) squircle superellipse(${number})` | `superellipse(${number}) superellipse(${number}) square` | `superellipse(${number}) superellipse(${number}) round` | `superellipse(${number}) superellipse(${number}) bevel` | `superellipse(${number}) superellipse(${number}) scoop` | `superellipse(${number}) superellipse(${number}) notch` | `superellipse(${number}) superellipse(${number}) squircle` | `superellipse(${number}) superellipse(${number}) superellipse(${number})` | "square square square square" | "square square square round" | "square square square bevel" | "square square square scoop" | "square square square notch" | "square square square squircle" | `square square square superellipse(${number})` | "square square round square" | "square square round round" | "square square round bevel" | "square square round scoop" | "square square round notch" | "square square round squircle" | `square square round superellipse(${number})` | "square square bevel square" | "square square bevel round" | "square square bevel bevel" | "square square bevel scoop" | "square square bevel notch" | "square square bevel squircle" | `square square bevel superellipse(${number})` | "square square scoop square" | "square square scoop round" | "square square scoop bevel" | "square square scoop scoop" | "square square scoop notch" | "square square scoop squircle" | `square square scoop superellipse(${number})` | "square square notch square" | "square square notch round" | "square square notch bevel" | "square square notch scoop" | "square square notch notch" | "square square notch squircle" | `square square notch superellipse(${number})` | "square square squircle square" | "square square squircle round" | "square square squircle bevel" | "square square squircle scoop" | "square square squircle notch" | "square square squircle squircle" | `square square squircle superellipse(${number})` | `square square superellipse(${number}) square` | `square square superellipse(${number}) round` | `square square superellipse(${number}) bevel` | `square square superellipse(${number}) scoop` | `square square superellipse(${number}) notch` | `square square superellipse(${number}) squircle` | `square square superellipse(${number}) superellipse(${number})` | "square round square square" | "square round square round" | "square round square bevel" | "square round square scoop" | "square round square notch" | "square round square squircle" | `square round square superellipse(${number})` | "square round round square" | "square round round round" | "square round round bevel" | "square round round scoop" | "square round round notch" | "square round round squircle" | `square round round superellipse(${number})` | "square round bevel square" | "square round bevel round" | "square round bevel bevel" | "square round bevel scoop" | "square round bevel notch" | "square round bevel squircle" | `square round bevel superellipse(${number})` | "square round scoop square" | "square round scoop round" | "square round scoop bevel" | "square round scoop scoop" | "square round scoop notch" | "square round scoop squircle" | `square round scoop superellipse(${number})` | "square round notch square" | "square round notch round" | "square round notch bevel" | "square round notch scoop" | "square round notch notch" | "square round notch squircle" | `square round notch superellipse(${number})` | "square round squircle square" | "square round squircle round" | "square round squircle bevel" | "square round squircle scoop" | "square round squircle notch" | "square round squircle squircle" | `square round squircle superellipse(${number})` | `square round superellipse(${number}) square` | `square round superellipse(${number}) round` | `square round superellipse(${number}) bevel` | `square round superellipse(${number}) scoop` | `square round superellipse(${number}) notch` | `square round superellipse(${number}) squircle` | `square round superellipse(${number}) superellipse(${number})` | "square bevel square square" | "square bevel square round" | "square bevel square bevel" | "square bevel square scoop" | "square bevel square notch" | "square bevel square squircle" | `square bevel square superellipse(${number})` | "square bevel round square" | "square bevel round round" | "square bevel round bevel" | "square bevel round scoop" | "square bevel round notch" | "square bevel round squircle" | `square bevel round superellipse(${number})` | "square bevel bevel square" | "square bevel bevel round" | "square bevel bevel bevel" | "square bevel bevel scoop" | "square bevel bevel notch" | "square bevel bevel squircle" | `square bevel bevel superellipse(${number})` | "square bevel scoop square" | "square bevel scoop round" | "square bevel scoop bevel" | "square bevel scoop scoop" | "square bevel scoop notch" | "square bevel scoop squircle" | `square bevel scoop superellipse(${number})` | "square bevel notch square" | "square bevel notch round" | "square bevel notch bevel" | "square bevel notch scoop" | "square bevel notch notch" | "square bevel notch squircle" | `square bevel notch superellipse(${number})` | "square bevel squircle square" | "square bevel squircle round" | "square bevel squircle bevel" | "square bevel squircle scoop" | "square bevel squircle notch" | "square bevel squircle squircle" | `square bevel squircle superellipse(${number})` | `square bevel superellipse(${number}) square` | `square bevel superellipse(${number}) round` | `square bevel superellipse(${number}) bevel` | `square bevel superellipse(${number}) scoop` | `square bevel superellipse(${number}) notch` | `square bevel superellipse(${number}) squircle` | `square bevel superellipse(${number}) superellipse(${number})` | "square scoop square square" | "square scoop square round" | "square scoop square bevel" | "square scoop square scoop" | "square scoop square notch" | "square scoop square squircle" | `square scoop square superellipse(${number})` | "square scoop round square" | "square scoop round round" | "square scoop round bevel" | "square scoop round scoop" | "square scoop round notch" | "square scoop round squircle" | `square scoop round superellipse(${number})` | "square scoop bevel square" | "square scoop bevel round" | "square scoop bevel bevel" | "square scoop bevel scoop" | "square scoop bevel notch" | "square scoop bevel squircle" | `square scoop bevel superellipse(${number})` | "square scoop scoop square" | "square scoop scoop round" | "square scoop scoop bevel" | "square scoop scoop scoop" | "square scoop scoop notch" | "square scoop scoop squircle" | `square scoop scoop superellipse(${number})` | "square scoop notch square" | "square scoop notch round" | "square scoop notch bevel" | "square scoop notch scoop" | "square scoop notch notch" | "square scoop notch squircle" | `square scoop notch superellipse(${number})` | "square scoop squircle square" | "square scoop squircle round" | "square scoop squircle bevel" | "square scoop squircle scoop" | "square scoop squircle notch" | "square scoop squircle squircle" | `square scoop squircle superellipse(${number})` | `square scoop superellipse(${number}) square` | `square scoop superellipse(${number}) round` | `square scoop superellipse(${number}) bevel` | `square scoop superellipse(${number}) scoop` | `square scoop superellipse(${number}) notch` | `square scoop superellipse(${number}) squircle` | `square scoop superellipse(${number}) superellipse(${number})` | "square notch square square" | "square notch square round" | "square notch square bevel" | "square notch square scoop" | "square notch square notch" | "square notch square squircle" | `square notch square superellipse(${number})` | "square notch round square" | "square notch round round" | "square notch round bevel" | "square notch round scoop" | "square notch round notch" | "square notch round squircle" | `square notch round superellipse(${number})` | "square notch bevel square" | "square notch bevel round" | "square notch bevel bevel" | "square notch bevel scoop" | "square notch bevel notch" | "square notch bevel squircle" | `square notch bevel superellipse(${number})` | "square notch scoop square" | "square notch scoop round" | "square notch scoop bevel" | "square notch scoop scoop" | "square notch scoop notch" | "square notch scoop squircle" | `square notch scoop superellipse(${number})` | "square notch notch square" | "square notch notch round" | "square notch notch bevel" | "square notch notch scoop" | "square notch notch notch" | "square notch notch squircle" | `square notch notch superellipse(${number})` | "square notch squircle square" | "square notch squircle round" | "square notch squircle bevel" | "square notch squircle scoop" | "square notch squircle notch" | "square notch squircle squircle" | `square notch squircle superellipse(${number})` | `square notch superellipse(${number}) square` | `square notch superellipse(${number}) round` | `square notch superellipse(${number}) bevel` | `square notch superellipse(${number}) scoop` | `square notch superellipse(${number}) notch` | `square notch superellipse(${number}) squircle` | `square notch superellipse(${number}) superellipse(${number})` | "square squircle square square" | "square squircle square round" | "square squircle square bevel" | "square squircle square scoop" | "square squircle square notch" | "square squircle square squircle" | `square squircle square superellipse(${number})` | "square squircle round square" | "square squircle round round" | "square squircle round bevel" | "square squircle round scoop" | "square squircle round notch" | "square squircle round squircle" | `square squircle round superellipse(${number})` | "square squircle bevel square" | "square squircle bevel round" | "square squircle bevel bevel" | "square squircle bevel scoop" | "square squircle bevel notch" | "square squircle bevel squircle" | `square squircle bevel superellipse(${number})` | "square squircle scoop square" | "square squircle scoop round" | "square squircle scoop bevel" | "square squircle scoop scoop" | "square squircle scoop notch" | "square squircle scoop squircle" | `square squircle scoop superellipse(${number})` | "square squircle notch square" | "square squircle notch round" | "square squircle notch bevel" | "square squircle notch scoop" | "square squircle notch notch" | "square squircle notch squircle" | `square squircle notch superellipse(${number})` | "square squircle squircle square" | "square squircle squircle round" | "square squircle squircle bevel" | "square squircle squircle scoop" | "square squircle squircle notch" | "square squircle squircle squircle" | `square squircle squircle superellipse(${number})` | `square squircle superellipse(${number}) square` | `square squircle superellipse(${number}) round` | `square squircle superellipse(${number}) bevel` | `square squircle superellipse(${number}) scoop` | `square squircle superellipse(${number}) notch` | `square squircle superellipse(${number}) squircle` | `square squircle superellipse(${number}) superellipse(${number})` | `square superellipse(${number}) square square` | `square superellipse(${number}) square round` | `square superellipse(${number}) square bevel` | `square superellipse(${number}) square scoop` | `square superellipse(${number}) square notch` | `square superellipse(${number}) square squircle` | `square superellipse(${number}) square superellipse(${number})` | `square superellipse(${number}) round square` | `square superellipse(${number}) round round` | `square superellipse(${number}) round bevel` | `square superellipse(${number}) round scoop` | `square superellipse(${number}) round notch` | `square superellipse(${number}) round squircle` | `square superellipse(${number}) round superellipse(${number})` | `square superellipse(${number}) bevel square` | `square superellipse(${number}) bevel round` | `square superellipse(${number}) bevel bevel` | `square superellipse(${number}) bevel scoop` | `square superellipse(${number}) bevel notch` | `square superellipse(${number}) bevel squircle` | `square superellipse(${number}) bevel superellipse(${number})` | `square superellipse(${number}) scoop square` | `square superellipse(${number}) scoop round` | `square superellipse(${number}) scoop bevel` | `square superellipse(${number}) scoop scoop` | `square superellipse(${number}) scoop notch` | `square superellipse(${number}) scoop squircle` | `square superellipse(${number}) scoop superellipse(${number})` | `square superellipse(${number}) notch square` | `square superellipse(${number}) notch round` | `square superellipse(${number}) notch bevel` | `square superellipse(${number}) notch scoop` | `square superellipse(${number}) notch notch` | `square superellipse(${number}) notch squircle` | `square superellipse(${number}) notch superellipse(${number})` | `square superellipse(${number}) squircle square` | `square superellipse(${number}) squircle round` | `square superellipse(${number}) squircle bevel` | `square superellipse(${number}) squircle scoop` | `square superellipse(${number}) squircle notch` | `square superellipse(${number}) squircle squircle` | `square superellipse(${number}) squircle superellipse(${number})` | `square superellipse(${number}) superellipse(${number}) square` | `square superellipse(${number}) superellipse(${number}) round` | `square superellipse(${number}) superellipse(${number}) bevel` | `square superellipse(${number}) superellipse(${number}) scoop` | `square superellipse(${number}) superellipse(${number}) notch` | `square superellipse(${number}) superellipse(${number}) squircle` | `square superellipse(${number}) superellipse(${number}) superellipse(${number})` | "round square square square" | "round square square round" | "round square square bevel" | "round square square scoop" | "round square square notch" | "round square square squircle" | `round square square superellipse(${number})` | "round square round square" | "round square round round" | "round square round bevel" | "round square round scoop" | "round square round notch" | "round square round squircle" | `round square round superellipse(${number})` | "round square bevel square" | "round square bevel round" | "round square bevel bevel" | "round square bevel scoop" | "round square bevel notch" | "round square bevel squircle" | `round square bevel superellipse(${number})` | "round square scoop square" | "round square scoop round" | "round square scoop bevel" | "round square scoop scoop" | "round square scoop notch" | "round square scoop squircle" | `round square scoop superellipse(${number})` | "round square notch square" | "round square notch round" | "round square notch bevel" | "round square notch scoop" | "round square notch notch" | "round square notch squircle" | `round square notch superellipse(${number})` | "round square squircle square" | "round square squircle round" | "round square squircle bevel" | "round square squircle scoop" | "round square squircle notch" | "round square squircle squircle" | `round square squircle superellipse(${number})` | `round square superellipse(${number}) square` | `round square superellipse(${number}) round` | `round square superellipse(${number}) bevel` | `round square superellipse(${number}) scoop` | `round square superellipse(${number}) notch` | `round square superellipse(${number}) squircle` | `round square superellipse(${number}) superellipse(${number})` | "round round square square" | "round round square round" | "round round square bevel" | "round round square scoop" | "round round square notch" | "round round square squircle" | `round round square superellipse(${number})` | "round round round square" | "round round round round" | "round round round bevel" | "round round round scoop" | "round round round notch" | "round round round squircle" | `round round round superellipse(${number})` | "round round bevel square" | "round round bevel round" | "round round bevel bevel" | "round round bevel scoop" | "round round bevel notch" | "round round bevel squircle" | `round round bevel superellipse(${number})` | "round round scoop square" | "round round scoop round" | "round round scoop bevel" | "round round scoop scoop" | "round round scoop notch" | "round round scoop squircle" | `round round scoop superellipse(${number})` | "round round notch square" | "round round notch round" | "round round notch bevel" | "round round notch scoop" | "round round notch notch" | "round round notch squircle" | `round round notch superellipse(${number})` | "round round squircle square" | "round round squircle round" | "round round squircle bevel" | "round round squircle scoop" | "round round squircle notch" | "round round squircle squircle" | `round round squircle superellipse(${number})` | `round round superellipse(${number}) square` | `round round superellipse(${number}) round` | `round round superellipse(${number}) bevel` | `round round superellipse(${number}) scoop` | `round round superellipse(${number}) notch` | `round round superellipse(${number}) squircle` | `round round superellipse(${number}) superellipse(${number})` | "round bevel square square" | "round bevel square round" | "round bevel square bevel" | "round bevel square scoop" | "round bevel square notch" | "round bevel square squircle" | `round bevel square superellipse(${number})` | "round bevel round square" | "round bevel round round" | "round bevel round bevel" | "round bevel round scoop" | "round bevel round notch" | "round bevel round squircle" | `round bevel round superellipse(${number})` | "round bevel bevel square" | "round bevel bevel round" | "round bevel bevel bevel" | "round bevel bevel scoop" | "round bevel bevel notch" | "round bevel bevel squircle" | `round bevel bevel superellipse(${number})` | "round bevel scoop square" | "round bevel scoop round" | "round bevel scoop bevel" | "round bevel scoop scoop" | "round bevel scoop notch" | "round bevel scoop squircle" | `round bevel scoop superellipse(${number})` | "round bevel notch square" | "round bevel notch round" | "round bevel notch bevel" | "round bevel notch scoop" | "round bevel notch notch" | "round bevel notch squircle" | `round bevel notch superellipse(${number})` | "round bevel squircle square" | "round bevel squircle round" | "round bevel squircle bevel" | "round bevel squircle scoop" | "round bevel squircle notch" | "round bevel squircle squircle" | `round bevel squircle superellipse(${number})` | `round bevel superellipse(${number}) square` | `round bevel superellipse(${number}) round` | `round bevel superellipse(${number}) bevel` | `round bevel superellipse(${number}) scoop` | `round bevel superellipse(${number}) notch` | `round bevel superellipse(${number}) squircle` | `round bevel superellipse(${number}) superellipse(${number})` | "round scoop square square" | "round scoop square round" | "round scoop square bevel" | "round scoop square scoop" | "round scoop square notch" | "round scoop square squircle" | `round scoop square superellipse(${number})` | "round scoop round square" | "round scoop round round" | "round scoop round bevel" | "round scoop round scoop" | "round scoop round notch" | "round scoop round squircle" | `round scoop round superellipse(${number})` | "round scoop bevel square" | "round scoop bevel round" | "round scoop bevel bevel" | "round scoop bevel scoop" | "round scoop bevel notch" | "round scoop bevel squircle" | `round scoop bevel superellipse(${number})` | "round scoop scoop square" | "round scoop scoop round" | "round scoop scoop bevel" | "round scoop scoop scoop" | "round scoop scoop notch" | "round scoop scoop squircle" | `round scoop scoop superellipse(${number})` | "round scoop notch square" | "round scoop notch round" | "round scoop notch bevel" | "round scoop notch scoop" | "round scoop notch notch" | "round scoop notch squircle" | `round scoop notch superellipse(${number})` | "round scoop squircle square" | "round scoop squircle round" | "round scoop squircle bevel" | "round scoop squircle scoop" | "round scoop squircle notch" | "round scoop squircle squircle" | `round scoop squircle superellipse(${number})` | `round scoop superellipse(${number}) square` | `round scoop superellipse(${number}) round` | `round scoop superellipse(${number}) bevel` | `round scoop superellipse(${number}) scoop` | `round scoop superellipse(${number}) notch` | `round scoop superellipse(${number}) squircle` | `round scoop superellipse(${number}) superellipse(${number})` | "round notch square square" | "round notch square round" | "round notch square bevel" | "round notch square scoop" | "round notch square notch" | "round notch square squircle" | `round notch square superellipse(${number})` | "round notch round square" | "round notch round round" | "round notch round bevel" | "round notch round scoop" | "round notch round notch" | "round notch round squircle" | `round notch round superellipse(${number})` | "round notch bevel square" | "round notch bevel round" | "round notch bevel bevel" | "round notch bevel scoop" | "round notch bevel notch" | "round notch bevel squircle" | `round notch bevel superellipse(${number})` | "round notch scoop square" | "round notch scoop round" | "round notch scoop bevel" | "round notch scoop scoop" | "round notch scoop notch" | "round notch scoop squircle" | `round notch scoop superellipse(${number})` | "round notch notch square" | "round notch notch round" | "round notch notch bevel" | "round notch notch scoop" | "round notch notch notch" | "round notch notch squircle" | `round notch notch superellipse(${number})` | "round notch squircle square" | "round notch squircle round" | "round notch squircle bevel" | "round notch squircle scoop" | "round notch squircle notch" | "round notch squircle squircle" | `round notch squircle superellipse(${number})` | `round notch superellipse(${number}) square` | `round notch superellipse(${number}) round` | `round notch superellipse(${number}) bevel` | `round notch superellipse(${number}) scoop` | `round notch superellipse(${number}) notch` | `round notch superellipse(${number}) squircle` | `round notch superellipse(${number}) superellipse(${number})` | "round squircle square square" | "round squircle square round" | "round squircle square bevel" | "round squircle square scoop" | "round squircle square notch" | "round squircle square squircle" | `round squircle square superellipse(${number})` | "round squircle round square" | "round squircle round round" | "round squircle round bevel" | "round squircle round scoop" | "round squircle round notch" | "round squircle round squircle" | `round squircle round superellipse(${number})` | "round squircle bevel square" | "round squircle bevel round" | "round squircle bevel bevel" | "round squircle bevel scoop" | "round squircle bevel notch" | "round squircle bevel squircle" | `round squircle bevel superellipse(${number})` | "round squircle scoop square" | "round squircle scoop round" | "round squircle scoop bevel" | "round squircle scoop scoop" | "round squircle scoop notch" | "round squircle scoop squircle" | `round squircle scoop superellipse(${number})` | "round squircle notch square" | "round squircle notch round" | "round squircle notch bevel" | "round squircle notch scoop" | "round squircle notch notch" | "round squircle notch squircle" | `round squircle notch superellipse(${number})` | "round squircle squircle square" | "round squircle squircle round" | "round squircle squircle bevel" | "round squircle squircle scoop" | "round squircle squircle notch" | "round squircle squircle squircle" | `round squircle squircle superellipse(${number})` | `round squircle superellipse(${number}) square` | `round squircle superellipse(${number}) round` | `round squircle superellipse(${number}) bevel` | `round squircle superellipse(${number}) scoop` | `round squircle superellipse(${number}) notch` | `round squircle superellipse(${number}) squircle` | `round squircle superellipse(${number}) superellipse(${number})` | `round superellipse(${number}) square square` | `round superellipse(${number}) square round` | `round superellipse(${number}) square bevel` | `round superellipse(${number}) square scoop` | `round superellipse(${number}) square notch` | `round superellipse(${number}) square squircle` | `round superellipse(${number}) square superellipse(${number})` | `round superellipse(${number}) round square` | `round superellipse(${number}) round round` | `round superellipse(${number}) round bevel` | `round superellipse(${number}) round scoop` | `round superellipse(${number}) round notch` | `round superellipse(${number}) round squircle` | `round superellipse(${number}) round superellipse(${number})` | `round superellipse(${number}) bevel square` | `round superellipse(${number}) bevel round` | `round superellipse(${number}) bevel bevel` | `round superellipse(${number}) bevel scoop` | `round superellipse(${number}) bevel notch` | `round superellipse(${number}) bevel squircle` | `round superellipse(${number}) bevel superellipse(${number})` | `round superellipse(${number}) scoop square` | `round superellipse(${number}) scoop round` | `round superellipse(${number}) scoop bevel` | `round superellipse(${number}) scoop scoop` | `round superellipse(${number}) scoop notch` | `round superellipse(${number}) scoop squircle` | `round superellipse(${number}) scoop superellipse(${number})` | `round superellipse(${number}) notch square` | `round superellipse(${number}) notch round` | `round superellipse(${number}) notch bevel` | `round superellipse(${number}) notch scoop` | `round superellipse(${number}) notch notch` | `round superellipse(${number}) notch squircle` | `round superellipse(${number}) notch superellipse(${number})` | `round superellipse(${number}) squircle square` | `round superellipse(${number}) squircle round` | `round superellipse(${number}) squircle bevel` | `round superellipse(${number}) squircle scoop` | `round superellipse(${number}) squircle notch` | `round superellipse(${number}) squircle squircle` | `round superellipse(${number}) squircle superellipse(${number})` | `round superellipse(${number}) superellipse(${number}) square` | `round superellipse(${number}) superellipse(${number}) round` | `round superellipse(${number}) superellipse(${number}) bevel` | `round superellipse(${number}) superellipse(${number}) scoop` | `round superellipse(${number}) superellipse(${number}) notch` | `round superellipse(${number}) superellipse(${number}) squircle` | `round superellipse(${number}) superellipse(${number}) superellipse(${number})` | "bevel square square square" | "bevel square square round" | "bevel square square bevel" | "bevel square square scoop" | "bevel square square notch" | "bevel square square squircle" | `bevel square square superellipse(${number})` | "bevel square round square" | "bevel square round round" | "bevel square round bevel" | "bevel square round scoop" | "bevel square round notch" | "bevel square round squircle" | `bevel square round superellipse(${number})` | "bevel square bevel square" | "bevel square bevel round" | "bevel square bevel bevel" | "bevel square bevel scoop" | "bevel square bevel notch" | "bevel square bevel squircle" | `bevel square bevel superellipse(${number})` | "bevel square scoop square" | "bevel square scoop round" | "bevel square scoop bevel" | "bevel square scoop scoop" | "bevel square scoop notch" | "bevel square scoop squircle" | `bevel square scoop superellipse(${number})` | "bevel square notch square" | "bevel square notch round" | "bevel square notch bevel" | "bevel square notch scoop" | "bevel square notch notch" | "bevel square notch squircle" | `bevel square notch superellipse(${number})` | "bevel square squircle square" | "bevel square squircle round" | "bevel square squircle bevel" | "bevel square squircle scoop" | "bevel square squircle notch" | "bevel square squircle squircle" | `bevel square squircle superellipse(${number})` | `bevel square superellipse(${number}) square` | `bevel square superellipse(${number}) round` | `bevel square superellipse(${number}) bevel` | `bevel square superellipse(${number}) scoop` | `bevel square superellipse(${number}) notch` | `bevel square superellipse(${number}) squircle` | `bevel square superellipse(${number}) superellipse(${number})` | "bevel round square square" | "bevel round square round" | "bevel round square bevel" | "bevel round square scoop" | "bevel round square notch" | "bevel round square squircle" | `bevel round square superellipse(${number})` | "bevel round round square" | "bevel round round round" | "bevel round round bevel" | "bevel round round scoop" | "bevel round round notch" | "bevel round round squircle" | `bevel round round superellipse(${number})` | "bevel round bevel square" | "bevel round bevel round" | "bevel round bevel bevel" | "bevel round bevel scoop" | "bevel round bevel notch" | "bevel round bevel squircle" | `bevel round bevel superellipse(${number})` | "bevel round scoop square" | "bevel round scoop round" | "bevel round scoop bevel" | "bevel round scoop scoop" | "bevel round scoop notch" | "bevel round scoop squircle" | `bevel round scoop superellipse(${number})` | "bevel round notch square" | "bevel round notch round" | "bevel round notch bevel" | "bevel round notch scoop" | "bevel round notch notch" | "bevel round notch squircle" | `bevel round notch superellipse(${number})` | "bevel round squircle square" | "bevel round squircle round" | "bevel round squircle bevel" | "bevel round squircle scoop" | "bevel round squircle notch" | "bevel round squircle squircle" | `bevel round squircle superellipse(${number})` | `bevel round superellipse(${number}) square` | `bevel round superellipse(${number}) round` | `bevel round superellipse(${number}) bevel` | `bevel round superellipse(${number}) scoop` | `bevel round superellipse(${number}) notch` | `bevel round superellipse(${number}) squircle` | `bevel round superellipse(${number}) superellipse(${number})` | "bevel bevel square square" | "bevel bevel square round" | "bevel bevel square bevel" | "bevel bevel square scoop" | "bevel bevel square notch" | "bevel bevel square squircle" | `bevel bevel square superellipse(${number})` | "bevel bevel round square" | "bevel bevel round round" | "bevel bevel round bevel" | "bevel bevel round scoop" | "bevel bevel round notch" | "bevel bevel round squircle" | `bevel bevel round superellipse(${number})` | "bevel bevel bevel square" | "bevel bevel bevel round" | "bevel bevel bevel bevel" | "bevel bevel bevel scoop" | "bevel bevel bevel notch" | "bevel bevel bevel squircle" | `bevel bevel bevel superellipse(${number})` | "bevel bevel scoop square" | "bevel bevel scoop round" | "bevel bevel scoop bevel" | "bevel bevel scoop scoop" | "bevel bevel scoop notch" | "bevel bevel scoop squircle" | `bevel bevel scoop superellipse(${number})` | "bevel bevel notch square" | "bevel bevel notch round" | "bevel bevel notch bevel" | "bevel bevel notch scoop" | "bevel bevel notch notch" | "bevel bevel notch squircle" | `bevel bevel notch superellipse(${number})` | "bevel bevel squircle square" | "bevel bevel squircle round" | "bevel bevel squircle bevel" | "bevel bevel squircle scoop" | "bevel bevel squircle notch" | "bevel bevel squircle squircle" | `bevel bevel squircle superellipse(${number})` | `bevel bevel superellipse(${number}) square` | `bevel bevel superellipse(${number}) round` | `bevel bevel superellipse(${number}) bevel` | `bevel bevel superellipse(${number}) scoop` | `bevel bevel superellipse(${number}) notch` | `bevel bevel superellipse(${number}) squircle` | `bevel bevel superellipse(${number}) superellipse(${number})` | "bevel scoop square square" | "bevel scoop square round" | "bevel scoop square bevel" | "bevel scoop square scoop" | "bevel scoop square notch" | "bevel scoop square squircle" | `bevel scoop square superellipse(${number})` | "bevel scoop round square" | "bevel scoop round round" | "bevel scoop round bevel" | "bevel scoop round scoop" | "bevel scoop round notch" | "bevel scoop round squircle" | `bevel scoop round superellipse(${number})` | "bevel scoop bevel square" | "bevel scoop bevel round" | "bevel scoop bevel bevel" | "bevel scoop bevel scoop" | "bevel scoop bevel notch" | "bevel scoop bevel squircle" | `bevel scoop bevel superellipse(${number})` | "bevel scoop scoop square" | "bevel scoop scoop round" | "bevel scoop scoop bevel" | "bevel scoop scoop scoop" | "bevel scoop scoop notch" | "bevel scoop scoop squircle" | `bevel scoop scoop superellipse(${number})` | "bevel scoop notch square" | "bevel scoop notch round" | "bevel scoop notch bevel" | "bevel scoop notch scoop" | "bevel scoop notch notch" | "bevel scoop notch squircle" | `bevel scoop notch superellipse(${number})` | "bevel scoop squircle square" | "bevel scoop squircle round" | "bevel scoop squircle bevel" | "bevel scoop squircle scoop" | "bevel scoop squircle notch" | "bevel scoop squircle squircle" | `bevel scoop squircle superellipse(${number})` | `bevel scoop superellipse(${number}) square` | `bevel scoop superellipse(${number}) round` | `bevel scoop superellipse(${number}) bevel` | `bevel scoop superellipse(${number}) scoop` | `bevel scoop superellipse(${number}) notch` | `bevel scoop superellipse(${number}) squircle` | `bevel scoop superellipse(${number}) superellipse(${number})` | "bevel notch square square" | "bevel notch square round" | "bevel notch square bevel" | "bevel notch square scoop" | "bevel notch square notch" | "bevel notch square squircle" | `bevel notch square superellipse(${number})` | "bevel notch round square" | "bevel notch round round" | "bevel notch round bevel" | "bevel notch round scoop" | "bevel notch round notch" | "bevel notch round squircle" | `bevel notch round superellipse(${number})` | "bevel notch bevel square" | "bevel notch bevel round" | "bevel notch bevel bevel" | "bevel notch bevel scoop" | "bevel notch bevel notch" | "bevel notch bevel squircle" | `bevel notch bevel superellipse(${number})` | "bevel notch scoop square" | "bevel notch scoop round" | "bevel notch scoop bevel" | "bevel notch scoop scoop" | "bevel notch scoop notch" | "bevel notch scoop squircle" | `bevel notch scoop superellipse(${number})` | "bevel notch notch square" | "bevel notch notch round" | "bevel notch notch bevel" | "bevel notch notch scoop" | "bevel notch notch notch" | "bevel notch notch squircle" | `bevel notch notch superellipse(${number})` | "bevel notch squircle square" | "bevel notch squircle round" | "bevel notch squircle bevel" | "bevel notch squircle scoop" | "bevel notch squircle notch" | "bevel notch squircle squircle" | `bevel notch squircle superellipse(${number})` | `bevel notch superellipse(${number}) square` | `bevel notch superellipse(${number}) round` | `bevel notch superellipse(${number}) bevel` | `bevel notch superellipse(${number}) scoop` | `bevel notch superellipse(${number}) notch` | `bevel notch superellipse(${number}) squircle` | `bevel notch superellipse(${number}) superellipse(${number})` | "bevel squircle square square" | "bevel squircle square round" | "bevel squircle square bevel" | "bevel squircle square scoop" | "bevel squircle square notch" | "bevel squircle square squircle" | `bevel squircle square superellipse(${number})` | "bevel squircle round square" | "bevel squircle round round" | "bevel squircle round bevel" | "bevel squircle round scoop" | "bevel squircle round notch" | "bevel squircle round squircle" | `bevel squircle round superellipse(${number})` | "bevel squircle bevel square" | "bevel squircle bevel round" | "bevel squircle bevel bevel" | "bevel squircle bevel scoop" | "bevel squircle bevel notch" | "bevel squircle bevel squircle" | `bevel squircle bevel superellipse(${number})` | "bevel squircle scoop square" | "bevel squircle scoop round" | "bevel squircle scoop bevel" | "bevel squircle scoop scoop" | "bevel squircle scoop notch" | "bevel squircle scoop squircle" | `bevel squircle scoop superellipse(${number})` | "bevel squircle notch square" | "bevel squircle notch round" | "bevel squircle notch bevel" | "bevel squircle notch scoop" | "bevel squircle notch notch" | "bevel squircle notch squircle" | `bevel squircle notch superellipse(${number})` | "bevel squircle squircle square" | "bevel squircle squircle round" | "bevel squircle squircle bevel" | "bevel squircle squircle scoop" | "bevel squircle squircle notch" | "bevel squircle squircle squircle" | `bevel squircle squircle superellipse(${number})` | `bevel squircle superellipse(${number}) square` | `bevel squircle superellipse(${number}) round` | `bevel squircle superellipse(${number}) bevel` | `bevel squircle superellipse(${number}) scoop` | `bevel squircle superellipse(${number}) notch` | `bevel squircle superellipse(${number}) squircle` | `bevel squircle superellipse(${number}) superellipse(${number})` | `bevel superellipse(${number}) square square` | `bevel superellipse(${number}) square round` | `bevel superellipse(${number}) square bevel` | `bevel superellipse(${number}) square scoop` | `bevel superellipse(${number}) square notch` | `bevel superellipse(${number}) square squircle` | `bevel superellipse(${number}) square superellipse(${number})` | `bevel superellipse(${number}) round square` | `bevel superellipse(${number}) round round` | `bevel superellipse(${number}) round bevel` | `bevel superellipse(${number}) round scoop` | `bevel superellipse(${number}) round notch` | `bevel superellipse(${number}) round squircle` | `bevel superellipse(${number}) round superellipse(${number})` | `bevel superellipse(${number}) bevel square` | `bevel superellipse(${number}) bevel round` | `bevel superellipse(${number}) bevel bevel` | `bevel superellipse(${number}) bevel scoop` | `bevel superellipse(${number}) bevel notch` | `bevel superellipse(${number}) bevel squircle` | `bevel superellipse(${number}) bevel superellipse(${number})` | `bevel superellipse(${number}) scoop square` | `bevel superellipse(${number}) scoop round` | `bevel superellipse(${number}) scoop bevel` | `bevel superellipse(${number}) scoop scoop` | `bevel superellipse(${number}) scoop notch` | `bevel superellipse(${number}) scoop squircle` | `bevel superellipse(${number}) scoop superellipse(${number})` | `bevel superellipse(${number}) notch square` | `bevel superellipse(${number}) notch round` | `bevel superellipse(${number}) notch bevel` | `bevel superellipse(${number}) notch scoop` | `bevel superellipse(${number}) notch notch` | `bevel superellipse(${number}) notch squircle` | `bevel superellipse(${number}) notch superellipse(${number})` | `bevel superellipse(${number}) squircle square` | `bevel superellipse(${number}) squircle round` | `bevel superellipse(${number}) squircle bevel` | `bevel superellipse(${number}) squircle scoop` | `bevel superellipse(${number}) squircle notch` | `bevel superellipse(${number}) squircle squircle` | `bevel superellipse(${number}) squircle superellipse(${number})` | `bevel superellipse(${number}) superellipse(${number}) square` | `bevel superellipse(${number}) superellipse(${number}) round` | `bevel superellipse(${number}) superellipse(${number}) bevel` | `bevel superellipse(${number}) superellipse(${number}) scoop` | `bevel superellipse(${number}) superellipse(${number}) notch` | `bevel superellipse(${number}) superellipse(${number}) squircle` | `bevel superellipse(${number}) superellipse(${number}) superellipse(${number})` | "scoop square square square" | "scoop square square round" | "scoop square square bevel" | "scoop square square scoop" | "scoop square square notch" | "scoop square square squircle" | `scoop square square superellipse(${number})` | "scoop square round square" | "scoop square round round" | "scoop square round bevel" | "scoop square round scoop" | "scoop square round notch" | "scoop square round squircle" | `scoop square round superellipse(${number})` | "scoop square bevel square" | "scoop square bevel round" | "scoop square bevel bevel" | "scoop square bevel scoop" | "scoop square bevel notch" | "scoop square bevel squircle" | `scoop square bevel superellipse(${number})` | "scoop square scoop square" | "scoop square scoop round" | "scoop square scoop bevel" | "scoop square scoop scoop" | "scoop square scoop notch" | "scoop square scoop squircle" | `scoop square scoop superellipse(${number})` | "scoop square notch square" | "scoop square notch round" | "scoop square notch bevel" | "scoop square notch scoop" | "scoop square notch notch" | "scoop square notch squircle" | `scoop square notch superellipse(${number})` | "scoop square squircle square" | "scoop square squircle round" | "scoop square squircle bevel" | "scoop square squircle scoop" | "scoop square squircle notch" | "scoop square squircle squircle" | `scoop square squircle superellipse(${number})` | `scoop square superellipse(${number}) square` | `scoop square superellipse(${number}) round` | `scoop square superellipse(${number}) bevel` | `scoop square superellipse(${number}) scoop` | `scoop square superellipse(${number}) notch` | `scoop square superellipse(${number}) squircle` | `scoop square superellipse(${number}) superellipse(${number})` | "scoop round square square" | "scoop round square round" | "scoop round square bevel" | "scoop round square scoop" | "scoop round square notch" | "scoop round square squircle" | `scoop round square superellipse(${number})` | "scoop round round square" | "scoop round round round" | "scoop round round bevel" | "scoop round round scoop" | "scoop round round notch" | "scoop round round squircle" | `scoop round round superellipse(${number})` | "scoop round bevel square" | "scoop round bevel round" | "scoop round bevel bevel" | "scoop round bevel scoop" | "scoop round bevel notch" | "scoop round bevel squircle" | `scoop round bevel superellipse(${number})` | "scoop round scoop square" | "scoop round scoop round" | "scoop round scoop bevel" | "scoop round scoop scoop" | "scoop round scoop notch" | "scoop round scoop squircle" | `scoop round scoop superellipse(${number})` | "scoop round notch square" | "scoop round notch round" | "scoop round notch bevel" | "scoop round notch scoop" | "scoop round notch notch" | "scoop round notch squircle" | `scoop round notch superellipse(${number})` | "scoop round squircle square" | "scoop round squircle round" | "scoop round squircle bevel" | "scoop round squircle scoop" | "scoop round squircle notch" | "scoop round squircle squircle" | `scoop round squircle superellipse(${number})` | `scoop round superellipse(${number}) square` | `scoop round superellipse(${number}) round` | `scoop round superellipse(${number}) bevel` | `scoop round superellipse(${number}) scoop` | `scoop round superellipse(${number}) notch` | `scoop round superellipse(${number}) squircle` | `scoop round superellipse(${number}) superellipse(${number})` | "scoop bevel square square" | "scoop bevel square round" | "scoop bevel square bevel" | "scoop bevel square scoop" | "scoop bevel square notch" | "scoop bevel square squircle" | `scoop bevel square superellipse(${number})` | "scoop bevel round square" | "scoop bevel round round" | "scoop bevel round bevel" | "scoop bevel round scoop" | "scoop bevel round notch" | "scoop bevel round squircle" | `scoop bevel round superellipse(${number})` | "scoop bevel bevel square" | "scoop bevel bevel round" | "scoop bevel bevel bevel" | "scoop bevel bevel scoop" | "scoop bevel bevel notch" | "scoop bevel bevel squircle" | `scoop bevel bevel superellipse(${number})` | "scoop bevel scoop square" | "scoop bevel scoop round" | "scoop bevel scoop bevel" | "scoop bevel scoop scoop" | "scoop bevel scoop notch" | "scoop bevel scoop squircle" | `scoop bevel scoop superellipse(${number})` | "scoop bevel notch square" | "scoop bevel notch round" | "scoop bevel notch bevel" | "scoop bevel notch scoop" | "scoop bevel notch notch" | "scoop bevel notch squircle" | `scoop bevel notch superellipse(${number})` | "scoop bevel squircle square" | "scoop bevel squircle round" | "scoop bevel squircle bevel" | "scoop bevel squircle scoop" | "scoop bevel squircle notch" | "scoop bevel squircle squircle" | `scoop bevel squircle superellipse(${number})` | `scoop bevel superellipse(${number}) square` | `scoop bevel superellipse(${number}) round` | `scoop bevel superellipse(${number}) bevel` | `scoop bevel superellipse(${number}) scoop` | `scoop bevel superellipse(${number}) notch` | `scoop bevel superellipse(${number}) squircle` | `scoop bevel superellipse(${number}) superellipse(${number})` | "scoop scoop square square" | "scoop scoop square round" | "scoop scoop square bevel" | "scoop scoop square scoop" | "scoop scoop square notch" | "scoop scoop square squircle" | `scoop scoop square superellipse(${number})` | "scoop scoop round square" | "scoop scoop round round" | "scoop scoop round bevel" | "scoop scoop round scoop" | "scoop scoop round notch" | "scoop scoop round squircle" | `scoop scoop round superellipse(${number})` | "scoop scoop bevel square" | "scoop scoop bevel round" | "scoop scoop bevel bevel" | "scoop scoop bevel scoop" | "scoop scoop bevel notch" | "scoop scoop bevel squircle" | `scoop scoop bevel superellipse(${number})` | "scoop scoop scoop square" | "scoop scoop scoop round" | "scoop scoop scoop bevel" | "scoop scoop scoop scoop" | "scoop scoop scoop notch" | "scoop scoop scoop squircle" | `scoop scoop scoop superellipse(${number})` | "scoop scoop notch square" | "scoop scoop notch round" | "scoop scoop notch bevel" | "scoop scoop notch scoop" | "scoop scoop notch notch" | "scoop scoop notch squircle" | `scoop scoop notch superellipse(${number})` | "scoop scoop squircle square" | "scoop scoop squircle round" | "scoop scoop squircle bevel" | "scoop scoop squircle scoop" | "scoop scoop squircle notch" | "scoop scoop squircle squircle" | `scoop scoop squircle superellipse(${number})` | `scoop scoop superellipse(${number}) square` | `scoop scoop superellipse(${number}) round` | `scoop scoop superellipse(${number}) bevel` | `scoop scoop superellipse(${number}) scoop` | `scoop scoop superellipse(${number}) notch` | `scoop scoop superellipse(${number}) squircle` | `scoop scoop superellipse(${number}) superellipse(${number})` | "scoop notch square square" | "scoop notch square round" | "scoop notch square bevel" | "scoop notch square scoop" | "scoop notch square notch" | "scoop notch square squircle" | `scoop notch square superellipse(${number})` | "scoop notch round square" | "scoop notch round round" | "scoop notch round bevel" | "scoop notch round scoop" | "scoop notch round notch" | "scoop notch round squircle" | `scoop notch round superellipse(${number})` | "scoop notch bevel square" | "scoop notch bevel round" | "scoop notch bevel bevel" | "scoop notch bevel scoop" | "scoop notch bevel notch" | "scoop notch bevel squircle" | `scoop notch bevel superellipse(${number})` | "scoop notch scoop square" | "scoop notch scoop round" | "scoop notch scoop bevel" | "scoop notch scoop scoop" | "scoop notch scoop notch" | "scoop notch scoop squircle" | `scoop notch scoop superellipse(${number})` | "scoop notch notch square" | "scoop notch notch round" | "scoop notch notch bevel" | "scoop notch notch scoop" | "scoop notch notch notch" | "scoop notch notch squircle" | `scoop notch notch superellipse(${number})` | "scoop notch squircle square" | "scoop notch squircle round" | "scoop notch squircle bevel" | "scoop notch squircle scoop" | "scoop notch squircle notch" | "scoop notch squircle squircle" | `scoop notch squircle superellipse(${number})` | `scoop notch superellipse(${number}) square` | `scoop notch superellipse(${number}) round` | `scoop notch superellipse(${number}) bevel` | `scoop notch superellipse(${number}) scoop` | `scoop notch superellipse(${number}) notch` | `scoop notch superellipse(${number}) squircle` | `scoop notch superellipse(${number}) superellipse(${number})` | "scoop squircle square square" | "scoop squircle square round" | "scoop squircle square bevel" | "scoop squircle square scoop" | "scoop squircle square notch" | "scoop squircle square squircle" | `scoop squircle square superellipse(${number})` | "scoop squircle round square" | "scoop squircle round round" | "scoop squircle round bevel" | "scoop squircle round scoop" | "scoop squircle round notch" | "scoop squircle round squircle" | `scoop squircle round superellipse(${number})` | "scoop squircle bevel square" | "scoop squircle bevel round" | "scoop squircle bevel bevel" | "scoop squircle bevel scoop" | "scoop squircle bevel notch" | "scoop squircle bevel squircle" | `scoop squircle bevel superellipse(${number})` | "scoop squircle scoop square" | "scoop squircle scoop round" | "scoop squircle scoop bevel" | "scoop squircle scoop scoop" | "scoop squircle scoop notch" | "scoop squircle scoop squircle" | `scoop squircle scoop superellipse(${number})` | "scoop squircle notch square" | "scoop squircle notch round" | "scoop squircle notch bevel" | "scoop squircle notch scoop" | "scoop squircle notch notch" | "scoop squircle notch squircle" | `scoop squircle notch superellipse(${number})` | "scoop squircle squircle square" | "scoop squircle squircle round" | "scoop squircle squircle bevel" | "scoop squircle squircle scoop" | "scoop squircle squircle notch" | "scoop squircle squircle squircle" | `scoop squircle squircle superellipse(${number})` | `scoop squircle superellipse(${number}) square` | `scoop squircle superellipse(${number}) round` | `scoop squircle superellipse(${number}) bevel` | `scoop squircle superellipse(${number}) scoop` | `scoop squircle superellipse(${number}) notch` | `scoop squircle superellipse(${number}) squircle` | `scoop squircle superellipse(${number}) superellipse(${number})` | `scoop superellipse(${number}) square square` | `scoop superellipse(${number}) square round` | `scoop superellipse(${number}) square bevel` | `scoop superellipse(${number}) square scoop` | `scoop superellipse(${number}) square notch` | `scoop superellipse(${number}) square squircle` | `scoop superellipse(${number}) square superellipse(${number})` | `scoop superellipse(${number}) round square` | `scoop superellipse(${number}) round round` | `scoop superellipse(${number}) round bevel` | `scoop superellipse(${number}) round scoop` | `scoop superellipse(${number}) round notch` | `scoop superellipse(${number}) round squircle` | `scoop superellipse(${number}) round superellipse(${number})` | `scoop superellipse(${number}) bevel square` | `scoop superellipse(${number}) bevel round` | `scoop superellipse(${number}) bevel bevel` | `scoop superellipse(${number}) bevel scoop` | `scoop superellipse(${number}) bevel notch` | `scoop superellipse(${number}) bevel squircle` | `scoop superellipse(${number}) bevel superellipse(${number})` | `scoop superellipse(${number}) scoop square` | `scoop superellipse(${number}) scoop round` | `scoop superellipse(${number}) scoop bevel` | `scoop superellipse(${number}) scoop scoop` | `scoop superellipse(${number}) scoop notch` | `scoop superellipse(${number}) scoop squircle` | `scoop superellipse(${number}) scoop superellipse(${number})` | `scoop superellipse(${number}) notch square` | `scoop superellipse(${number}) notch round` | `scoop superellipse(${number}) notch bevel` | `scoop superellipse(${number}) notch scoop` | `scoop superellipse(${number}) notch notch` | `scoop superellipse(${number}) notch squircle` | `scoop superellipse(${number}) notch superellipse(${number})` | `scoop superellipse(${number}) squircle square` | `scoop superellipse(${number}) squircle round` | `scoop superellipse(${number}) squircle bevel` | `scoop superellipse(${number}) squircle scoop` | `scoop superellipse(${number}) squircle notch` | `scoop superellipse(${number}) squircle squircle` | `scoop superellipse(${number}) squircle superellipse(${number})` | `scoop superellipse(${number}) superellipse(${number}) square` | `scoop superellipse(${number}) superellipse(${number}) round` | `scoop superellipse(${number}) superellipse(${number}) bevel` | `scoop superellipse(${number}) superellipse(${number}) scoop` | `scoop superellipse(${number}) superellipse(${number}) notch` | `scoop superellipse(${number}) superellipse(${number}) squircle` | `scoop superellipse(${number}) superellipse(${number}) superellipse(${number})` | "notch square square square" | "notch square square round" | "notch square square bevel" | "notch square square scoop" | "notch square square notch" | "notch square square squircle" | `notch square square superellipse(${number})` | "notch square round square" | "notch square round round" | "notch square round bevel" | "notch square round scoop" | "notch square round notch" | "notch square round squircle" | `notch square round superellipse(${number})` | "notch square bevel square" | "notch square bevel round" | "notch square bevel bevel" | "notch square bevel scoop" | "notch square bevel notch" | "notch square bevel squircle" | `notch square bevel superellipse(${number})` | "notch square scoop square" | "notch square scoop round" | "notch square scoop bevel" | "notch square scoop scoop" | "notch square scoop notch" | "notch square scoop squircle" | `notch square scoop superellipse(${number})` | "notch square notch square" | "notch square notch round" | "notch square notch bevel" | "notch square notch scoop" | "notch square notch notch" | "notch square notch squircle" | `notch square notch superellipse(${number})` | "notch square squircle square" | "notch square squircle round" | "notch square squircle bevel" | "notch square squircle scoop" | "notch square squircle notch" | "notch square squircle squircle" | `notch square squircle superellipse(${number})` | `notch square superellipse(${number}) square` | `notch square superellipse(${number}) round` | `notch square superellipse(${number}) bevel` | `notch square superellipse(${number}) scoop` | `notch square superellipse(${number}) notch` | `notch square superellipse(${number}) squircle` | `notch square superellipse(${number}) superellipse(${number})` | "notch round square square" | "notch round square round" | "notch round square bevel" | "notch round square scoop" | "notch round square notch" | "notch round square squircle" | `notch round square superellipse(${number})` | "notch round round square" | "notch round round round" | "notch round round bevel" | "notch round round scoop" | "notch round round notch" | "notch round round squircle" | `notch round round superellipse(${number})` | "notch round bevel square" | "notch round bevel round" | "notch round bevel bevel" | "notch round bevel scoop" | "notch round bevel notch" | "notch round bevel squircle" | `notch round bevel superellipse(${number})` | "notch round scoop square" | "notch round scoop round" | "notch round scoop bevel" | "notch round scoop scoop" | "notch round scoop notch" | "notch round scoop squircle" | `notch round scoop superellipse(${number})` | "notch round notch square" | "notch round notch round" | "notch round notch bevel" | "notch round notch scoop" | "notch round notch notch" | "notch round notch squircle" | `notch round notch superellipse(${number})` | "notch round squircle square" | "notch round squircle round" | "notch round squircle bevel" | "notch round squircle scoop" | "notch round squircle notch" | "notch round squircle squircle" | `notch round squircle superellipse(${number})` | `notch round superellipse(${number}) square` | `notch round superellipse(${number}) round` | `notch round superellipse(${number}) bevel` | `notch round superellipse(${number}) scoop` | `notch round superellipse(${number}) notch` | `notch round superellipse(${number}) squircle` | `notch round superellipse(${number}) superellipse(${number})` | "notch bevel square square" | "notch bevel square round" | "notch bevel square bevel" | "notch bevel square scoop" | "notch bevel square notch" | "notch bevel square squircle" | `notch bevel square superellipse(${number})` | "notch bevel round square" | "notch bevel round round" | "notch bevel round bevel" | "notch bevel round scoop" | "notch bevel round notch" | "notch bevel round squircle" | `notch bevel round superellipse(${number})` | "notch bevel bevel square" | "notch bevel bevel round" | "notch bevel bevel bevel" | "notch bevel bevel scoop" | "notch bevel bevel notch" | "notch bevel bevel squircle" | `notch bevel bevel superellipse(${number})` | "notch bevel scoop square" | "notch bevel scoop round" | "notch bevel scoop bevel" | "notch bevel scoop scoop" | "notch bevel scoop notch" | "notch bevel scoop squircle" | `notch bevel scoop superellipse(${number})` | "notch bevel notch square" | "notch bevel notch round" | "notch bevel notch bevel" | "notch bevel notch scoop" | "notch bevel notch notch" | "notch bevel notch squircle" | `notch bevel notch superellipse(${number})` | "notch bevel squircle square" | "notch bevel squircle round" | "notch bevel squircle bevel" | "notch bevel squircle scoop" | "notch bevel squircle notch" | "notch bevel squircle squircle" | `notch bevel squircle superellipse(${number})` | `notch bevel superellipse(${number}) square` | `notch bevel superellipse(${number}) round` | `notch bevel superellipse(${number}) bevel` | `notch bevel superellipse(${number}) scoop` | `notch bevel superellipse(${number}) notch` | `notch bevel superellipse(${number}) squircle` | `notch bevel superellipse(${number}) superellipse(${number})` | "notch scoop square square" | "notch scoop square round" | "notch scoop square bevel" | "notch scoop square scoop" | "notch scoop square notch" | "notch scoop square squircle" | `notch scoop square superellipse(${number})` | "notch scoop round square" | "notch scoop round round" | "notch scoop round bevel" | "notch scoop round scoop" | "notch scoop round notch" | "notch scoop round squircle" | `notch scoop round superellipse(${number})` | "notch scoop bevel square" | "notch scoop bevel round" | "notch scoop bevel bevel" | "notch scoop bevel scoop" | "notch scoop bevel notch" | "notch scoop bevel squircle" | `notch scoop bevel superellipse(${number})` | "notch scoop scoop square" | "notch scoop scoop round" | "notch scoop scoop bevel" | "notch scoop scoop scoop" | "notch scoop scoop notch" | "notch scoop scoop squircle" | `notch scoop scoop superellipse(${number})` | "notch scoop notch square" | "notch scoop notch round" | "notch scoop notch bevel" | "notch scoop notch scoop" | "notch scoop notch notch" | "notch scoop notch squircle" | `notch scoop notch superellipse(${number})` | "notch scoop squircle square" | "notch scoop squircle round" | "notch scoop squircle bevel" | "notch scoop squircle scoop" | "notch scoop squircle notch" | "notch scoop squircle squircle" | `notch scoop squircle superellipse(${number})` | `notch scoop superellipse(${number}) square` | `notch scoop superellipse(${number}) round` | `notch scoop superellipse(${number}) bevel` | `notch scoop superellipse(${number}) scoop` | `notch scoop superellipse(${number}) notch` | `notch scoop superellipse(${number}) squircle` | `notch scoop superellipse(${number}) superellipse(${number})` | "notch notch square square" | "notch notch square round" | "notch notch square bevel" | "notch notch square scoop" | "notch notch square notch" | "notch notch square squircle" | `notch notch square superellipse(${number})` | "notch notch round square" | "notch notch round round" | "notch notch round bevel" | "notch notch round scoop" | "notch notch round notch" | "notch notch round squircle" | `notch notch round superellipse(${number})` | "notch notch bevel square" | "notch notch bevel round" | "notch notch bevel bevel" | "notch notch bevel scoop" | "notch notch bevel notch" | "notch notch bevel squircle" | `notch notch bevel superellipse(${number})` | "notch notch scoop square" | "notch notch scoop round" | "notch notch scoop bevel" | "notch notch scoop scoop" | "notch notch scoop notch" | "notch notch scoop squircle" | `notch notch scoop superellipse(${number})` | "notch notch notch square" | "notch notch notch round" | "notch notch notch bevel" | "notch notch notch scoop" | "notch notch notch notch" | "notch notch notch squircle" | `notch notch notch superellipse(${number})` | "notch notch squircle square" | "notch notch squircle round" | "notch notch squircle bevel" | "notch notch squircle scoop" | "notch notch squircle notch" | "notch notch squircle squircle" | `notch notch squircle superellipse(${number})` | `notch notch superellipse(${number}) square` | `notch notch superellipse(${number}) round` | `notch notch superellipse(${number}) bevel` | `notch notch superellipse(${number}) scoop` | `notch notch superellipse(${number}) notch` | `notch notch superellipse(${number}) squircle` | `notch notch superellipse(${number}) superellipse(${number})` | "notch squircle square square" | "notch squircle square round" | "notch squircle square bevel" | "notch squircle square scoop" | "notch squircle square notch" | "notch squircle square squircle" | `notch squircle square superellipse(${number})` | "notch squircle round square" | "notch squircle round round" | "notch squircle round bevel" | "notch squircle round scoop" | "notch squircle round notch" | "notch squircle round squircle" | `notch squircle round superellipse(${number})` | "notch squircle bevel square" | "notch squircle bevel round" | "notch squircle bevel bevel" | "notch squircle bevel scoop" | "notch squircle bevel notch" | "notch squircle bevel squircle" | `notch squircle bevel superellipse(${number})` | "notch squircle scoop square" | "notch squircle scoop round" | "notch squircle scoop bevel" | "notch squircle scoop scoop" | "notch squircle scoop notch" | "notch squircle scoop squircle" | `notch squircle scoop superellipse(${number})` | "notch squircle notch square" | "notch squircle notch round" | "notch squircle notch bevel" | "notch squircle notch scoop" | "notch squircle notch notch" | "notch squircle notch squircle" | `notch squircle notch superellipse(${number})` | "notch squircle squircle square" | "notch squircle squircle round" | "notch squircle squircle bevel" | "notch squircle squircle scoop" | "notch squircle squircle notch" | "notch squircle squircle squircle" | `notch squircle squircle superellipse(${number})` | `notch squircle superellipse(${number}) square` | `notch squircle superellipse(${number}) round` | `notch squircle superellipse(${number}) bevel` | `notch squircle superellipse(${number}) scoop` | `notch squircle superellipse(${number}) notch` | `notch squircle superellipse(${number}) squircle` | `notch squircle superellipse(${number}) superellipse(${number})` | `notch superellipse(${number}) square square` | `notch superellipse(${number}) square round` | `notch superellipse(${number}) square bevel` | `notch superellipse(${number}) square scoop` | `notch superellipse(${number}) square notch` | `notch superellipse(${number}) square squircle` | `notch superellipse(${number}) square superellipse(${number})` | `notch superellipse(${number}) round square` | `notch superellipse(${number}) round round` | `notch superellipse(${number}) round bevel` | `notch superellipse(${number}) round scoop` | `notch superellipse(${number}) round notch` | `notch superellipse(${number}) round squircle` | `notch superellipse(${number}) round superellipse(${number})` | `notch superellipse(${number}) bevel square` | `notch superellipse(${number}) bevel round` | `notch superellipse(${number}) bevel bevel` | `notch superellipse(${number}) bevel scoop` | `notch superellipse(${number}) bevel notch` | `notch superellipse(${number}) bevel squircle` | `notch superellipse(${number}) bevel superellipse(${number})` | `notch superellipse(${number}) scoop square` | `notch superellipse(${number}) scoop round` | `notch superellipse(${number}) scoop bevel` | `notch superellipse(${number}) scoop scoop` | `notch superellipse(${number}) scoop notch` | `notch superellipse(${number}) scoop squircle` | `notch superellipse(${number}) scoop superellipse(${number})` | `notch superellipse(${number}) notch square` | `notch superellipse(${number}) notch round` | `notch superellipse(${number}) notch bevel` | `notch superellipse(${number}) notch scoop` | `notch superellipse(${number}) notch notch` | `notch superellipse(${number}) notch squircle` | `notch superellipse(${number}) notch superellipse(${number})` | `notch superellipse(${number}) squircle square` | `notch superellipse(${number}) squircle round` | `notch superellipse(${number}) squircle bevel` | `notch superellipse(${number}) squircle scoop` | `notch superellipse(${number}) squircle notch` | `notch superellipse(${number}) squircle squircle` | `notch superellipse(${number}) squircle superellipse(${number})` | `notch superellipse(${number}) superellipse(${number}) square` | `notch superellipse(${number}) superellipse(${number}) round` | `notch superellipse(${number}) superellipse(${number}) bevel` | `notch superellipse(${number}) superellipse(${number}) scoop` | `notch superellipse(${number}) superellipse(${number}) notch` | `notch superellipse(${number}) superellipse(${number}) squircle` | `notch superellipse(${number}) superellipse(${number}) superellipse(${number})` | "squircle square square square" | "squircle square square round" | "squircle square square bevel" | "squircle square square scoop" | "squircle square square notch" | "squircle square square squircle" | `squircle square square superellipse(${number})` | "squircle square round square" | "squircle square round round" | "squircle square round bevel" | "squircle square round scoop" | "squircle square round notch" | "squircle square round squircle" | `squircle square round superellipse(${number})` | "squircle square bevel square" | "squircle square bevel round" | "squircle square bevel bevel" | "squircle square bevel scoop" | "squircle square bevel notch" | "squircle square bevel squircle" | `squircle square bevel superellipse(${number})` | "squircle square scoop square" | "squircle square scoop round" | "squircle square scoop bevel" | "squircle square scoop scoop" | "squircle square scoop notch" | "squircle square scoop squircle" | `squircle square scoop superellipse(${number})` | "squircle square notch square" | "squircle square notch round" | "squircle square notch bevel" | "squircle square notch scoop" | "squircle square notch notch" | "squircle square notch squircle" | `squircle square notch superellipse(${number})` | "squircle square squircle square" | "squircle square squircle round" | "squircle square squircle bevel" | "squircle square squircle scoop" | "squircle square squircle notch" | "squircle square squircle squircle" | `squircle square squircle superellipse(${number})` | `squircle square superellipse(${number}) square` | `squircle square superellipse(${number}) round` | `squircle square superellipse(${number}) bevel` | `squircle square superellipse(${number}) scoop` | `squircle square superellipse(${number}) notch` | `squircle square superellipse(${number}) squircle` | `squircle square superellipse(${number}) superellipse(${number})` | "squircle round square square" | "squircle round square round" | "squircle round square bevel" | "squircle round square scoop" | "squircle round square notch" | "squircle round square squircle" | `squircle round square superellipse(${number})` | "squircle round round square" | "squircle round round round" | "squircle round round bevel" | "squircle round round scoop" | "squircle round round notch" | "squircle round round squircle" | `squircle round round superellipse(${number})` | "squircle round bevel square" | "squircle round bevel round" | "squircle round bevel bevel" | "squircle round bevel scoop" | "squircle round bevel notch" | "squircle round bevel squircle" | `squircle round bevel superellipse(${number})` | "squircle round scoop square" | "squircle round scoop round" | "squircle round scoop bevel" | "squircle round scoop scoop" | "squircle round scoop notch" | "squircle round scoop squircle" | `squircle round scoop superellipse(${number})` | "squircle round notch square" | "squircle round notch round" | "squircle round notch bevel" | "squircle round notch scoop" | "squircle round notch notch" | "squircle round notch squircle" | `squircle round notch superellipse(${number})` | "squircle round squircle square" | "squircle round squircle round" | "squircle round squircle bevel" | "squircle round squircle scoop" | "squircle round squircle notch" | "squircle round squircle squircle" | `squircle round squircle superellipse(${number})` | `squircle round superellipse(${number}) square` | `squircle round superellipse(${number}) round` | `squircle round superellipse(${number}) bevel` | `squircle round superellipse(${number}) scoop` | `squircle round superellipse(${number}) notch` | `squircle round superellipse(${number}) squircle` | `squircle round superellipse(${number}) superellipse(${number})` | "squircle bevel square square" | "squircle bevel square round" | "squircle bevel square bevel" | "squircle bevel square scoop" | "squircle bevel square notch" | "squircle bevel square squircle" | `squircle bevel square superellipse(${number})` | "squircle bevel round square" | "squircle bevel round round" | "squircle bevel round bevel" | "squircle bevel round scoop" | "squircle bevel round notch" | "squircle bevel round squircle" | `squircle bevel round superellipse(${number})` | "squircle bevel bevel square" | "squircle bevel bevel round" | "squircle bevel bevel bevel" | "squircle bevel bevel scoop" | "squircle bevel bevel notch" | "squircle bevel bevel squircle" | `squircle bevel bevel superellipse(${number})` | "squircle bevel scoop square" | "squircle bevel scoop round" | "squircle bevel scoop bevel" | "squircle bevel scoop scoop" | "squircle bevel scoop notch" | "squircle bevel scoop squircle" | `squircle bevel scoop superellipse(${number})` | "squircle bevel notch square" | "squircle bevel notch round" | "squircle bevel notch bevel" | "squircle bevel notch scoop" | "squircle bevel notch notch" | "squircle bevel notch squircle" | `squircle bevel notch superellipse(${number})` | "squircle bevel squircle square" | "squircle bevel squircle round" | "squircle bevel squircle bevel" | "squircle bevel squircle scoop" | "squircle bevel squircle notch" | "squircle bevel squircle squircle" | `squircle bevel squircle superellipse(${number})` | `squircle bevel superellipse(${number}) square` | `squircle bevel superellipse(${number}) round` | `squircle bevel superellipse(${number}) bevel` | `squircle bevel superellipse(${number}) scoop` | `squircle bevel superellipse(${number}) notch` | `squircle bevel superellipse(${number}) squircle` | `squircle bevel superellipse(${number}) superellipse(${number})` | "squircle scoop square square" | "squircle scoop square round" | "squircle scoop square bevel" | "squircle scoop square scoop" | "squircle scoop square notch" | "squircle scoop square squircle" | `squircle scoop square superellipse(${number})` | "squircle scoop round square" | "squircle scoop round round" | "squircle scoop round bevel" | "squircle scoop round scoop" | "squircle scoop round notch" | "squircle scoop round squircle" | `squircle scoop round superellipse(${number})` | "squircle scoop bevel square" | "squircle scoop bevel round" | "squircle scoop bevel bevel" | "squircle scoop bevel scoop" | "squircle scoop bevel notch" | "squircle scoop bevel squircle" | `squircle scoop bevel superellipse(${number})` | "squircle scoop scoop square" | "squircle scoop scoop round" | "squircle scoop scoop bevel" | "squircle scoop scoop scoop" | "squircle scoop scoop notch" | "squircle scoop scoop squircle" | `squircle scoop scoop superellipse(${number})` | "squircle scoop notch square" | "squircle scoop notch round" | "squircle scoop notch bevel" | "squircle scoop notch scoop" | "squircle scoop notch notch" | "squircle scoop notch squircle" | `squircle scoop notch superellipse(${number})` | "squircle scoop squircle square" | "squircle scoop squircle round" | "squircle scoop squircle bevel" | "squircle scoop squircle scoop" | "squircle scoop squircle notch" | "squircle scoop squircle squircle" | `squircle scoop squircle superellipse(${number})` | `squircle scoop superellipse(${number}) square` | `squircle scoop superellipse(${number}) round` | `squircle scoop superellipse(${number}) bevel` | `squircle scoop superellipse(${number}) scoop` | `squircle scoop superellipse(${number}) notch` | `squircle scoop superellipse(${number}) squircle` | `squircle scoop superellipse(${number}) superellipse(${number})` | "squircle notch square square" | "squircle notch square round" | "squircle notch square bevel" | "squircle notch square scoop" | "squircle notch square notch" | "squircle notch square squircle" | `squircle notch square superellipse(${number})` | "squircle notch round square" | "squircle notch round round" | "squircle notch round bevel" | "squircle notch round scoop" | "squircle notch round notch" | "squircle notch round squircle" | `squircle notch round superellipse(${number})` | "squircle notch bevel square" | "squircle notch bevel round" | "squircle notch bevel bevel" | "squircle notch bevel scoop" | "squircle notch bevel notch" | "squircle notch bevel squircle" | `squircle notch bevel superellipse(${number})` | "squircle notch scoop square" | "squircle notch scoop round" | "squircle notch scoop bevel" | "squircle notch scoop scoop" | "squircle notch scoop notch" | "squircle notch scoop squircle" | `squircle notch scoop superellipse(${number})` | "squircle notch notch square" | "squircle notch notch round" | "squircle notch notch bevel" | "squircle notch notch scoop" | "squircle notch notch notch" | "squircle notch notch squircle" | `squircle notch notch superellipse(${number})` | "squircle notch squircle square" | "squircle notch squircle round" | "squircle notch squircle bevel" | "squircle notch squircle scoop" | "squircle notch squircle notch" | "squircle notch squircle squircle" | `squircle notch squircle superellipse(${number})` | `squircle notch superellipse(${number}) square` | `squircle notch superellipse(${number}) round` | `squircle notch superellipse(${number}) bevel` | `squircle notch superellipse(${number}) scoop` | `squircle notch superellipse(${number}) notch` | `squircle notch superellipse(${number}) squircle` | `squircle notch superellipse(${number}) superellipse(${number})` | "squircle squircle square square" | "squircle squircle square round" | "squircle squircle square bevel" | "squircle squircle square scoop" | "squircle squircle square notch" | "squircle squircle square squircle" | `squircle squircle square superellipse(${number})` | "squircle squircle round square" | "squircle squircle round round" | "squircle squircle round bevel" | "squircle squircle round scoop" | "squircle squircle round notch" | "squircle squircle round squircle" | `squircle squircle round superellipse(${number})` | "squircle squircle bevel square" | "squircle squircle bevel round" | "squircle squircle bevel bevel" | "squircle squircle bevel scoop" | "squircle squircle bevel notch" | "squircle squircle bevel squircle" | `squircle squircle bevel superellipse(${number})` | "squircle squircle scoop square" | "squircle squircle scoop round" | "squircle squircle scoop bevel" | "squircle squircle scoop scoop" | "squircle squircle scoop notch" | "squircle squircle scoop squircle" | `squircle squircle scoop superellipse(${number})` | "squircle squircle notch square" | "squircle squircle notch round" | "squircle squircle notch bevel" | "squircle squircle notch scoop" | "squircle squircle notch notch" | "squircle squircle notch squircle" | `squircle squircle notch superellipse(${number})` | "squircle squircle squircle square" | "squircle squircle squircle round" | "squircle squircle squircle bevel" | "squircle squircle squircle scoop" | "squircle squircle squircle notch" | "squircle squircle squircle squircle" | `squircle squircle squircle superellipse(${number})` | `squircle squircle superellipse(${number}) square` | `squircle squircle superellipse(${number}) round` | `squircle squircle superellipse(${number}) bevel` | `squircle squircle superellipse(${number}) scoop` | `squircle squircle superellipse(${number}) notch` | `squircle squircle superellipse(${number}) squircle` | `squircle squircle superellipse(${number}) superellipse(${number})` | `squircle superellipse(${number}) square square` | `squircle superellipse(${number}) square round` | `squircle superellipse(${number}) square bevel` | `squircle superellipse(${number}) square scoop` | `squircle superellipse(${number}) square notch` | `squircle superellipse(${number}) square squircle` | `squircle superellipse(${number}) square superellipse(${number})` | `squircle superellipse(${number}) round square` | `squircle superellipse(${number}) round round` | `squircle superellipse(${number}) round bevel` | `squircle superellipse(${number}) round scoop` | `squircle superellipse(${number}) round notch` | `squircle superellipse(${number}) round squircle` | `squircle superellipse(${number}) round superellipse(${number})` | `squircle superellipse(${number}) bevel square` | `squircle superellipse(${number}) bevel round` | `squircle superellipse(${number}) bevel bevel` | `squircle superellipse(${number}) bevel scoop` | `squircle superellipse(${number}) bevel notch` | `squircle superellipse(${number}) bevel squircle` | `squircle superellipse(${number}) bevel superellipse(${number})` | `squircle superellipse(${number}) scoop square` | `squircle superellipse(${number}) scoop round` | `squircle superellipse(${number}) scoop bevel` | `squircle superellipse(${number}) scoop scoop` | `squircle superellipse(${number}) scoop notch` | `squircle superellipse(${number}) scoop squircle` | `squircle superellipse(${number}) scoop superellipse(${number})` | `squircle superellipse(${number}) notch square` | `squircle superellipse(${number}) notch round` | `squircle superellipse(${number}) notch bevel` | `squircle superellipse(${number}) notch scoop` | `squircle superellipse(${number}) notch notch` | `squircle superellipse(${number}) notch squircle` | `squircle superellipse(${number}) notch superellipse(${number})` | `squircle superellipse(${number}) squircle square` | `squircle superellipse(${number}) squircle round` | `squircle superellipse(${number}) squircle bevel` | `squircle superellipse(${number}) squircle scoop` | `squircle superellipse(${number}) squircle notch` | `squircle superellipse(${number}) squircle squircle` | `squircle superellipse(${number}) squircle superellipse(${number})` | `squircle superellipse(${number}) superellipse(${number}) square` | `squircle superellipse(${number}) superellipse(${number}) round` | `squircle superellipse(${number}) superellipse(${number}) bevel` | `squircle superellipse(${number}) superellipse(${number}) scoop` | `squircle superellipse(${number}) superellipse(${number}) notch` | `squircle superellipse(${number}) superellipse(${number}) squircle` | `squircle superellipse(${number}) superellipse(${number}) superellipse(${number})` | `superellipse(${number}) square square square` | `superellipse(${number}) square square round` | `superellipse(${number}) square square bevel` | `superellipse(${number}) square square scoop` | `superellipse(${number}) square square notch` | `superellipse(${number}) square square squircle` | `superellipse(${number}) square square superellipse(${number})` | `superellipse(${number}) square round square` | `superellipse(${number}) square round round` | `superellipse(${number}) square round bevel` | `superellipse(${number}) square round scoop` | `superellipse(${number}) square round notch` | `superellipse(${number}) square round squircle` | `superellipse(${number}) square round superellipse(${number})` | `superellipse(${number}) square bevel square` | `superellipse(${number}) square bevel round` | `superellipse(${number}) square bevel bevel` | `superellipse(${number}) square bevel scoop` | `superellipse(${number}) square bevel notch` | `superellipse(${number}) square bevel squircle` | `superellipse(${number}) square bevel superellipse(${number})` | `superellipse(${number}) square scoop square` | `superellipse(${number}) square scoop round` | `superellipse(${number}) square scoop bevel` | `superellipse(${number}) square scoop scoop` | `superellipse(${number}) square scoop notch` | `superellipse(${number}) square scoop squircle` | `superellipse(${number}) square scoop superellipse(${number})` | `superellipse(${number}) square notch square` | `superellipse(${number}) square notch round` | `superellipse(${number}) square notch bevel` | `superellipse(${number}) square notch scoop` | `superellipse(${number}) square notch notch` | `superellipse(${number}) square notch squircle` | `superellipse(${number}) square notch superellipse(${number})` | `superellipse(${number}) square squircle square` | `superellipse(${number}) square squircle round` | `superellipse(${number}) square squircle bevel` | `superellipse(${number}) square squircle scoop` | `superellipse(${number}) square squircle notch` | `superellipse(${number}) square squircle squircle` | `superellipse(${number}) square squircle superellipse(${number})` | `superellipse(${number}) square superellipse(${number}) square` | `superellipse(${number}) square superellipse(${number}) round` | `superellipse(${number}) square superellipse(${number}) bevel` | `superellipse(${number}) square superellipse(${number}) scoop` | `superellipse(${number}) square superellipse(${number}) notch` | `superellipse(${number}) square superellipse(${number}) squircle` | `superellipse(${number}) square superellipse(${number}) superellipse(${number})` | `superellipse(${number}) round square square` | `superellipse(${number}) round square round` | `superellipse(${number}) round square bevel` | `superellipse(${number}) round square scoop` | `superellipse(${number}) round square notch` | `superellipse(${number}) round square squircle` | `superellipse(${number}) round square superellipse(${number})` | `superellipse(${number}) round round square` | `superellipse(${number}) round round round` | `superellipse(${number}) round round bevel` | `superellipse(${number}) round round scoop` | `superellipse(${number}) round round notch` | `superellipse(${number}) round round squircle` | `superellipse(${number}) round round superellipse(${number})` | `superellipse(${number}) round bevel square` | `superellipse(${number}) round bevel round` | `superellipse(${number}) round bevel bevel` | `superellipse(${number}) round bevel scoop` | `superellipse(${number}) round bevel notch` | `superellipse(${number}) round bevel squircle` | `superellipse(${number}) round bevel superellipse(${number})` | `superellipse(${number}) round scoop square` | `superellipse(${number}) round scoop round` | `superellipse(${number}) round scoop bevel` | `superellipse(${number}) round scoop scoop` | `superellipse(${number}) round scoop notch` | `superellipse(${number}) round scoop squircle` | `superellipse(${number}) round scoop superellipse(${number})` | `superellipse(${number}) round notch square` | `superellipse(${number}) round notch round` | `superellipse(${number}) round notch bevel` | `superellipse(${number}) round notch scoop` | `superellipse(${number}) round notch notch` | `superellipse(${number}) round notch squircle` | `superellipse(${number}) round notch superellipse(${number})` | `superellipse(${number}) round squircle square` | `superellipse(${number}) round squircle round` | `superellipse(${number}) round squircle bevel` | `superellipse(${number}) round squircle scoop` | `superellipse(${number}) round squircle notch` | `superellipse(${number}) round squircle squircle` | `superellipse(${number}) round squircle superellipse(${number})` | `superellipse(${number}) round superellipse(${number}) square` | `superellipse(${number}) round superellipse(${number}) round` | `superellipse(${number}) round superellipse(${number}) bevel` | `superellipse(${number}) round superellipse(${number}) scoop` | `superellipse(${number}) round superellipse(${number}) notch` | `superellipse(${number}) round superellipse(${number}) squircle` | `superellipse(${number}) round superellipse(${number}) superellipse(${number})` | `superellipse(${number}) bevel square square` | `superellipse(${number}) bevel square round` | `superellipse(${number}) bevel square bevel` | `superellipse(${number}) bevel square scoop` | `superellipse(${number}) bevel square notch` | `superellipse(${number}) bevel square squircle` | `superellipse(${number}) bevel square superellipse(${number})` | `superellipse(${number}) bevel round square` | `superellipse(${number}) bevel round round` | `superellipse(${number}) bevel round bevel` | `superellipse(${number}) bevel round scoop` | `superellipse(${number}) bevel round notch` | `superellipse(${number}) bevel round squircle` | `superellipse(${number}) bevel round superellipse(${number})` | `superellipse(${number}) bevel bevel square` | `superellipse(${number}) bevel bevel round` | `superellipse(${number}) bevel bevel bevel` | `superellipse(${number}) bevel bevel scoop` | `superellipse(${number}) bevel bevel notch` | `superellipse(${number}) bevel bevel squircle` | `superellipse(${number}) bevel bevel superellipse(${number})` | `superellipse(${number}) bevel scoop square` | `superellipse(${number}) bevel scoop round` | `superellipse(${number}) bevel scoop bevel` | `superellipse(${number}) bevel scoop scoop` | `superellipse(${number}) bevel scoop notch` | `superellipse(${number}) bevel scoop squircle` | `superellipse(${number}) bevel scoop superellipse(${number})` | `superellipse(${number}) bevel notch square` | `superellipse(${number}) bevel notch round` | `superellipse(${number}) bevel notch bevel` | `superellipse(${number}) bevel notch scoop` | `superellipse(${number}) bevel notch notch` | `superellipse(${number}) bevel notch squircle` | `superellipse(${number}) bevel notch superellipse(${number})` | `superellipse(${number}) bevel squircle square` | `superellipse(${number}) bevel squircle round` | `superellipse(${number}) bevel squircle bevel` | `superellipse(${number}) bevel squircle scoop` | `superellipse(${number}) bevel squircle notch` | `superellipse(${number}) bevel squircle squircle` | `superellipse(${number}) bevel squircle superellipse(${number})` | `superellipse(${number}) bevel superellipse(${number}) square` | `superellipse(${number}) bevel superellipse(${number}) round` | `superellipse(${number}) bevel superellipse(${number}) bevel` | `superellipse(${number}) bevel superellipse(${number}) scoop` | `superellipse(${number}) bevel superellipse(${number}) notch` | `superellipse(${number}) bevel superellipse(${number}) squircle` | `superellipse(${number}) bevel superellipse(${number}) superellipse(${number})` | `superellipse(${number}) scoop square square` | `superellipse(${number}) scoop square round` | `superellipse(${number}) scoop square bevel` | `superellipse(${number}) scoop square scoop` | `superellipse(${number}) scoop square notch` | `superellipse(${number}) scoop square squircle` | `superellipse(${number}) scoop square superellipse(${number})` | `superellipse(${number}) scoop round square` | `superellipse(${number}) scoop round round` | `superellipse(${number}) scoop round bevel` | `superellipse(${number}) scoop round scoop` | `superellipse(${number}) scoop round notch` | `superellipse(${number}) scoop round squircle` | `superellipse(${number}) scoop round superellipse(${number})` | `superellipse(${number}) scoop bevel square` | `superellipse(${number}) scoop bevel round` | `superellipse(${number}) scoop bevel bevel` | `superellipse(${number}) scoop bevel scoop` | `superellipse(${number}) scoop bevel notch` | `superellipse(${number}) scoop bevel squircle` | `superellipse(${number}) scoop bevel superellipse(${number})` | `superellipse(${number}) scoop scoop square` | `superellipse(${number}) scoop scoop round` | `superellipse(${number}) scoop scoop bevel` | `superellipse(${number}) scoop scoop scoop` | `superellipse(${number}) scoop scoop notch` | `superellipse(${number}) scoop scoop squircle` | `superellipse(${number}) scoop scoop superellipse(${number})` | `superellipse(${number}) scoop notch square` | `superellipse(${number}) scoop notch round` | `superellipse(${number}) scoop notch bevel` | `superellipse(${number}) scoop notch scoop` | `superellipse(${number}) scoop notch notch` | `superellipse(${number}) scoop notch squircle` | `superellipse(${number}) scoop notch superellipse(${number})` | `superellipse(${number}) scoop squircle square` | `superellipse(${number}) scoop squircle round` | `superellipse(${number}) scoop squircle bevel` | `superellipse(${number}) scoop squircle scoop` | `superellipse(${number}) scoop squircle notch` | `superellipse(${number}) scoop squircle squircle` | `superellipse(${number}) scoop squircle superellipse(${number})` | `superellipse(${number}) scoop superellipse(${number}) square` | `superellipse(${number}) scoop superellipse(${number}) round` | `superellipse(${number}) scoop superellipse(${number}) bevel` | `superellipse(${number}) scoop superellipse(${number}) scoop` | `superellipse(${number}) scoop superellipse(${number}) notch` | `superellipse(${number}) scoop superellipse(${number}) squircle` | `superellipse(${number}) scoop superellipse(${number}) superellipse(${number})` | `superellipse(${number}) notch square square` | `superellipse(${number}) notch square round` | `superellipse(${number}) notch square bevel` | `superellipse(${number}) notch square scoop` | `superellipse(${number}) notch square notch` | `superellipse(${number}) notch square squircle` | `superellipse(${number}) notch square superellipse(${number})` | `superellipse(${number}) notch round square` | `superellipse(${number}) notch round round` | `superellipse(${number}) notch round bevel` | `superellipse(${number}) notch round scoop` | `superellipse(${number}) notch round notch` | `superellipse(${number}) notch round squircle` | `superellipse(${number}) notch round superellipse(${number})` | `superellipse(${number}) notch bevel square` | `superellipse(${number}) notch bevel round` | `superellipse(${number}) notch bevel bevel` | `superellipse(${number}) notch bevel scoop` | `superellipse(${number}) notch bevel notch` | `superellipse(${number}) notch bevel squircle` | `superellipse(${number}) notch bevel superellipse(${number})` | `superellipse(${number}) notch scoop square` | `superellipse(${number}) notch scoop round` | `superellipse(${number}) notch scoop bevel` | `superellipse(${number}) notch scoop scoop` | `superellipse(${number}) notch scoop notch` | `superellipse(${number}) notch scoop squircle` | `superellipse(${number}) notch scoop superellipse(${number})` | `superellipse(${number}) notch notch square` | `superellipse(${number}) notch notch round` | `superellipse(${number}) notch notch bevel` | `superellipse(${number}) notch notch scoop` | `superellipse(${number}) notch notch notch` | `superellipse(${number}) notch notch squircle` | `superellipse(${number}) notch notch superellipse(${number})` | `superellipse(${number}) notch squircle square` | `superellipse(${number}) notch squircle round` | `superellipse(${number}) notch squircle bevel` | `superellipse(${number}) notch squircle scoop` | `superellipse(${number}) notch squircle notch` | `superellipse(${number}) notch squircle squircle` | `superellipse(${number}) notch squircle superellipse(${number})` | `superellipse(${number}) notch superellipse(${number}) square` | `superellipse(${number}) notch superellipse(${number}) round` | `superellipse(${number}) notch superellipse(${number}) bevel` | `superellipse(${number}) notch superellipse(${number}) scoop` | `superellipse(${number}) notch superellipse(${number}) notch` | `superellipse(${number}) notch superellipse(${number}) squircle` | `superellipse(${number}) notch superellipse(${number}) superellipse(${number})` | `superellipse(${number}) squircle square square` | `superellipse(${number}) squircle square round` | `superellipse(${number}) squircle square bevel` | `superellipse(${number}) squircle square scoop` | `superellipse(${number}) squircle square notch` | `superellipse(${number}) squircle square squircle` | `superellipse(${number}) squircle square superellipse(${number})` | `superellipse(${number}) squircle round square` | `superellipse(${number}) squircle round round` | `superellipse(${number}) squircle round bevel` | `superellipse(${number}) squircle round scoop` | `superellipse(${number}) squircle round notch` | `superellipse(${number}) squircle round squircle` | `superellipse(${number}) squircle round superellipse(${number})` | `superellipse(${number}) squircle bevel square` | `superellipse(${number}) squircle bevel round` | `superellipse(${number}) squircle bevel bevel` | `superellipse(${number}) squircle bevel scoop` | `superellipse(${number}) squircle bevel notch` | `superellipse(${number}) squircle bevel squircle` | `superellipse(${number}) squircle bevel superellipse(${number})` | `superellipse(${number}) squircle scoop square` | `superellipse(${number}) squircle scoop round` | `superellipse(${number}) squircle scoop bevel` | `superellipse(${number}) squircle scoop scoop` | `superellipse(${number}) squircle scoop notch` | `superellipse(${number}) squircle scoop squircle` | `superellipse(${number}) squircle scoop superellipse(${number})` | `superellipse(${number}) squircle notch square` | `superellipse(${number}) squircle notch round` | `superellipse(${number}) squircle notch bevel` | `superellipse(${number}) squircle notch scoop` | `superellipse(${number}) squircle notch notch` | `superellipse(${number}) squircle notch squircle` | `superellipse(${number}) squircle notch superellipse(${number})` | `superellipse(${number}) squircle squircle square` | `superellipse(${number}) squircle squircle round` | `superellipse(${number}) squircle squircle bevel` | `superellipse(${number}) squircle squircle scoop` | `superellipse(${number}) squircle squircle notch` | `superellipse(${number}) squircle squircle squircle` | `superellipse(${number}) squircle squircle superellipse(${number})` | `superellipse(${number}) squircle superellipse(${number}) square` | `superellipse(${number}) squircle superellipse(${number}) round` | `superellipse(${number}) squircle superellipse(${number}) bevel` | `superellipse(${number}) squircle superellipse(${number}) scoop` | `superellipse(${number}) squircle superellipse(${number}) notch` | `superellipse(${number}) squircle superellipse(${number}) squircle` | `superellipse(${number}) squircle superellipse(${number}) superellipse(${number})` | `superellipse(${number}) superellipse(${number}) square square` | `superellipse(${number}) superellipse(${number}) square round` | `superellipse(${number}) superellipse(${number}) square bevel` | `superellipse(${number}) superellipse(${number}) square scoop` | `superellipse(${number}) superellipse(${number}) square notch` | `superellipse(${number}) superellipse(${number}) square squircle` | `superellipse(${number}) superellipse(${number}) square superellipse(${number})` | `superellipse(${number}) superellipse(${number}) round square` | `superellipse(${number}) superellipse(${number}) round round` | `superellipse(${number}) superellipse(${number}) round bevel` | `superellipse(${number}) superellipse(${number}) round scoop` | `superellipse(${number}) superellipse(${number}) round notch` | `superellipse(${number}) superellipse(${number}) round squircle` | `superellipse(${number}) superellipse(${number}) round superellipse(${number})` | `superellipse(${number}) superellipse(${number}) bevel square` | `superellipse(${number}) superellipse(${number}) bevel round` | `superellipse(${number}) superellipse(${number}) bevel bevel` | `superellipse(${number}) superellipse(${number}) bevel scoop` | `superellipse(${number}) superellipse(${number}) bevel notch` | `superellipse(${number}) superellipse(${number}) bevel squircle` | `superellipse(${number}) superellipse(${number}) bevel superellipse(${number})` | `superellipse(${number}) superellipse(${number}) scoop square` | `superellipse(${number}) superellipse(${number}) scoop round` | `superellipse(${number}) superellipse(${number}) scoop bevel` | `superellipse(${number}) superellipse(${number}) scoop scoop` | `superellipse(${number}) superellipse(${number}) scoop notch` | `superellipse(${number}) superellipse(${number}) scoop squircle` | `superellipse(${number}) superellipse(${number}) scoop superellipse(${number})` | `superellipse(${number}) superellipse(${number}) notch square` | `superellipse(${number}) superellipse(${number}) notch round` | `superellipse(${number}) superellipse(${number}) notch bevel` | `superellipse(${number}) superellipse(${number}) notch scoop` | `superellipse(${number}) superellipse(${number}) notch notch` | `superellipse(${number}) superellipse(${number}) notch squircle` | `superellipse(${number}) superellipse(${number}) notch superellipse(${number})` | `superellipse(${number}) superellipse(${number}) squircle square` | `superellipse(${number}) superellipse(${number}) squircle round` | `superellipse(${number}) superellipse(${number}) squircle bevel` | `superellipse(${number}) superellipse(${number}) squircle scoop` | `superellipse(${number}) superellipse(${number}) squircle notch` | `superellipse(${number}) superellipse(${number}) squircle squircle` | `superellipse(${number}) superellipse(${number}) squircle superellipse(${number})` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) square` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) round` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) bevel` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) scoop` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) notch` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) squircle` | `superellipse(${number}) superellipse(${number}) superellipse(${number}) superellipse(${number})` | undefined>;
|
|
463
|
-
counterIncrement?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.CounterIncrement | undefined>;
|
|
464
|
-
counterReset?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.CounterReset | undefined>;
|
|
465
|
-
counterSet?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.CounterSet | undefined>;
|
|
466
|
-
cursor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Cursor | undefined>;
|
|
467
|
-
cx?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Cx< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Cx< String | Number> | undefined>[] | undefined>;
|
|
468
|
-
cy?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Cy< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Cy< String | Number> | undefined>[] | undefined>;
|
|
469
|
-
d?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.D | undefined>;
|
|
470
|
-
direction?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Direction | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Direction | undefined>[] | undefined>;
|
|
471
|
-
dominantBaseline?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.DominantBaseline | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.DominantBaseline | undefined>[] | undefined>;
|
|
472
|
-
emptyCells?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.EmptyCells | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.EmptyCells | undefined>[] | undefined>;
|
|
473
|
-
fieldSizing?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FieldSizing | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FieldSizing | undefined>[] | undefined>;
|
|
474
|
-
fill?: ConditionalValue<"none" | "black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "context-fill" | "context-stroke" | undefined>;
|
|
475
|
-
fillOpacity?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FillOpacity | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FillOpacity | undefined>[] | undefined>;
|
|
476
|
-
fillRule?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FillRule | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FillRule | undefined>[] | undefined>;
|
|
477
|
-
flex?: ConditionalValue<"1" | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Flex< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Flex< String | Number> | undefined>[] | undefined>;
|
|
478
|
-
flexBasis?: ConditionalValue< SizeToken | CssVars | AnyString | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.FlexBasis< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexBasis< String | Number> | undefined>[] | undefined>;
|
|
479
|
-
flexDirection?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.FlexDirection | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexDirection | undefined>[] | undefined>;
|
|
480
|
-
flexFlow?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FlexFlow | undefined>;
|
|
481
|
-
flexGrow?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FlexGrow | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexGrow | undefined>[] | undefined>;
|
|
482
|
-
flexShrink?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FlexShrink | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexShrink | undefined>[] | undefined>;
|
|
483
|
-
flexWrap?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.FlexWrap | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexWrap | undefined>[] | undefined>;
|
|
484
|
-
float?: ConditionalValue< CssVars | AnyString | "end" | "start" | import("node_modules/styled-system/types/csstype").Property.Float | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Float | undefined>[] | undefined>;
|
|
485
|
-
floodColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FloodColor | undefined>;
|
|
486
|
-
floodOpacity?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FloodOpacity | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FloodOpacity | undefined>[] | undefined>;
|
|
487
|
-
font?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Font | undefined>;
|
|
488
|
-
fontFamily?: ConditionalValue<"serif" | "display" | "sans" | "mono" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "-apple-system" | "cursive" | "fantasy" | "math" | "monospace" | "sans-serif" | "system-ui" | "ui-monospace" | "ui-rounded" | "ui-sans-serif" | "ui-serif" | "emoji" | "fangsong" | undefined>;
|
|
489
|
-
fontFeatureSettings?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontFeatureSettings | undefined>;
|
|
490
|
-
fontKerning?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.FontKerning | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontKerning | undefined>[] | undefined>;
|
|
491
|
-
fontLanguageOverride?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontLanguageOverride | undefined>;
|
|
492
|
-
fontOpticalSizing?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontOpticalSizing | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontOpticalSizing | undefined>[] | undefined>;
|
|
493
|
-
fontPalette?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontPalette | undefined>;
|
|
494
|
-
fontSize?: ConditionalValue< FontSizeToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.FontSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSize< String | Number> | undefined>[] | undefined>;
|
|
495
|
-
fontSizeAdjust?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSizeAdjust | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSizeAdjust | undefined>[] | undefined>;
|
|
496
|
-
fontSmooth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSmooth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSmooth< String | Number> | undefined>[] | undefined>;
|
|
497
|
-
fontStretch?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontStretch | undefined>;
|
|
498
|
-
fontStyle?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontStyle | undefined>;
|
|
499
|
-
fontSynthesis?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontSynthesis | undefined>;
|
|
500
|
-
fontSynthesisPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSynthesisPosition | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSynthesisPosition | undefined>[] | undefined>;
|
|
501
|
-
fontSynthesisSmallCaps?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSynthesisSmallCaps | undefined>[] | undefined>;
|
|
502
|
-
fontSynthesisStyle?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSynthesisStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSynthesisStyle | undefined>[] | undefined>;
|
|
503
|
-
fontSynthesisWeight?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontSynthesisWeight | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontSynthesisWeight | undefined>[] | undefined>;
|
|
504
|
-
fontVariant?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariant | undefined>;
|
|
505
|
-
fontVariantAlternates?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariantAlternates | undefined>;
|
|
506
|
-
fontVariantCaps?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontVariantCaps | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontVariantCaps | undefined>[] | undefined>;
|
|
507
|
-
fontVariantEastAsian?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariantEastAsian | undefined>;
|
|
508
|
-
fontVariantEmoji?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontVariantEmoji | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontVariantEmoji | undefined>[] | undefined>;
|
|
509
|
-
fontVariantLigatures?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariantLigatures | undefined>;
|
|
510
|
-
fontVariantNumeric?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariantNumeric | undefined>;
|
|
511
|
-
fontVariantPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FontVariantPosition | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontVariantPosition | undefined>[] | undefined>;
|
|
512
|
-
fontVariationSettings?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.FontVariationSettings | undefined>;
|
|
513
|
-
fontWeight?: ConditionalValue<"normal" | "thin" | "extralight" | "light" | "medium" | "semibold" | "bold" | "extrabold" | "black" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (number & {}) | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "bolder" | "lighter" | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FontWeight | undefined>[] | undefined>;
|
|
514
|
-
forcedColorAdjust?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ForcedColorAdjust | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ForcedColorAdjust | undefined>[] | undefined>;
|
|
515
|
-
gap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Gap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Gap< String | Number> | undefined>[] | undefined>;
|
|
516
|
-
grid?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Grid | undefined>;
|
|
517
|
-
gridArea?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridArea | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridArea | undefined>[] | undefined>;
|
|
518
|
-
gridAutoColumns?: ConditionalValue<"min" | "max" | CssVars | AnyString | "fr" | import("node_modules/styled-system/types/csstype").Property.GridAutoColumns< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridAutoColumns< String | Number> | undefined>[] | undefined>;
|
|
519
|
-
gridAutoFlow?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.GridAutoFlow | undefined>;
|
|
520
|
-
gridAutoRows?: ConditionalValue<"min" | "max" | CssVars | AnyString | "fr" | import("node_modules/styled-system/types/csstype").Property.GridAutoRows< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridAutoRows< String | Number> | undefined>[] | undefined>;
|
|
521
|
-
gridColumn?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridColumn | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridColumn | undefined>[] | undefined>;
|
|
522
|
-
gridColumnEnd?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridColumnEnd | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridColumnEnd | undefined>[] | undefined>;
|
|
523
|
-
gridColumnGap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.GridColumnGap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridColumnGap< String | Number> | undefined>[] | undefined>;
|
|
524
|
-
gridColumnStart?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridColumnStart | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridColumnStart | undefined>[] | undefined>;
|
|
525
|
-
gridGap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.GridGap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridGap< String | Number> | undefined>[] | undefined>;
|
|
526
|
-
gridRow?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridRow | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridRow | undefined>[] | undefined>;
|
|
527
|
-
gridRowEnd?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridRowEnd | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridRowEnd | undefined>[] | undefined>;
|
|
528
|
-
gridRowGap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.GridRowGap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridRowGap< String | Number> | undefined>[] | undefined>;
|
|
529
|
-
gridRowStart?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridRowStart | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridRowStart | undefined>[] | undefined>;
|
|
530
|
-
gridTemplate?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.GridTemplate | undefined>;
|
|
531
|
-
gridTemplateAreas?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.GridTemplateAreas | undefined>;
|
|
532
|
-
gridTemplateColumns?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridTemplateColumns< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridTemplateColumns< String | Number> | undefined>[] | undefined>;
|
|
533
|
-
gridTemplateRows?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GridTemplateRows< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GridTemplateRows< String | Number> | undefined>[] | undefined>;
|
|
534
|
-
hangingPunctuation?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.HangingPunctuation | undefined>;
|
|
535
|
-
height?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.Height< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Height< String | Number> | undefined>[] | undefined>;
|
|
536
|
-
hyphenateCharacter?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.HyphenateCharacter | undefined>;
|
|
537
|
-
hyphenateLimitChars?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.HyphenateLimitChars | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.HyphenateLimitChars | undefined>[] | undefined>;
|
|
538
|
-
hyphens?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Hyphens | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Hyphens | undefined>[] | undefined>;
|
|
539
|
-
imageOrientation?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ImageOrientation | undefined>;
|
|
540
|
-
imageRendering?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ImageRendering | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ImageRendering | undefined>[] | undefined>;
|
|
541
|
-
imageResolution?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ImageResolution | undefined>;
|
|
542
|
-
imeMode?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ImeMode | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ImeMode | undefined>[] | undefined>;
|
|
543
|
-
initialLetter?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.InitialLetter | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InitialLetter | undefined>[] | undefined>;
|
|
544
|
-
initialLetterAlign?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.InitialLetterAlign | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InitialLetterAlign | undefined>[] | undefined>;
|
|
545
|
-
inlineSize?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.InlineSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InlineSize< String | Number> | undefined>[] | undefined>;
|
|
546
|
-
inset?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Inset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Inset< String | Number> | undefined>[] | undefined>;
|
|
547
|
-
insetBlock?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetBlock< String | Number> | undefined>[] | undefined>;
|
|
548
|
-
insetBlockEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
549
|
-
insetBlockStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetBlockStart< String | Number> | undefined>[] | undefined>;
|
|
550
|
-
insetInline?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInline< String | Number> | undefined>[] | undefined>;
|
|
551
|
-
insetInlineEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
552
|
-
insetInlineStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | undefined>[] | undefined>;
|
|
553
|
-
interpolateSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.InterpolateSize | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InterpolateSize | undefined>[] | undefined>;
|
|
554
|
-
isolation?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Isolation | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Isolation | undefined>[] | undefined>;
|
|
555
|
-
justifyContent?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.JustifyContent | undefined>;
|
|
556
|
-
justifyItems?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.JustifyItems | undefined>;
|
|
557
|
-
justifySelf?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.JustifySelf | undefined>;
|
|
558
|
-
justifyTracks?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.JustifyTracks | undefined>;
|
|
559
|
-
letterSpacing?: ConditionalValue<"wide" | "normal" | "tight" | "tighter" | "wider" | "widest" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | String | Number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.LetterSpacing< String | Number> | undefined>[] | undefined>;
|
|
560
|
-
lightingColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.LightingColor | undefined>;
|
|
561
|
-
lineBreak?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.LineBreak | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.LineBreak | undefined>[] | undefined>;
|
|
562
|
-
lineClamp?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.LineClamp | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.LineClamp | undefined>[] | undefined>;
|
|
563
|
-
lineHeight?: ConditionalValue<"none" | "normal" | "tight" | "snug" | "relaxed" | "loose" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (number & {}) | String | Number | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.LineHeight< String | Number> | undefined>[] | undefined>;
|
|
564
|
-
lineHeightStep?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.LineHeightStep< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.LineHeightStep< String | Number> | undefined>[] | undefined>;
|
|
565
|
-
listStyle?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ListStyle | undefined>;
|
|
566
|
-
listStyleImage?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ListStyleImage | undefined>;
|
|
567
|
-
listStylePosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ListStylePosition | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ListStylePosition | undefined>[] | undefined>;
|
|
568
|
-
listStyleType?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ListStyleType | undefined>;
|
|
569
|
-
margin?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Margin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Margin< String | Number> | undefined>[] | undefined>;
|
|
570
|
-
marginBlock?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | undefined>[] | undefined>;
|
|
571
|
-
marginBlockEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
572
|
-
marginBlockStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlockStart< String | Number> | undefined>[] | undefined>;
|
|
573
|
-
marginBottom?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBottom< String | Number> | undefined>[] | undefined>;
|
|
574
|
-
marginInline?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | undefined>[] | undefined>;
|
|
575
|
-
marginInlineEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
576
|
-
marginInlineStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | undefined>[] | undefined>;
|
|
577
|
-
marginLeft?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginLeft< String | Number> | undefined>[] | undefined>;
|
|
578
|
-
marginRight?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginRight< String | Number> | undefined>[] | undefined>;
|
|
579
|
-
marginTop?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginTop< String | Number> | undefined>[] | undefined>;
|
|
580
|
-
marginTrim?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MarginTrim | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginTrim | undefined>[] | undefined>;
|
|
581
|
-
markerEnd?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MarkerEnd | undefined>;
|
|
582
|
-
markerMid?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MarkerMid | undefined>;
|
|
583
|
-
markerStart?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MarkerStart | undefined>;
|
|
584
|
-
maskBorder?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskBorder | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskBorder | undefined>[] | undefined>;
|
|
585
|
-
maskBorderMode?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskBorderMode | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskBorderMode | undefined>[] | undefined>;
|
|
586
|
-
maskBorderOutset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskBorderOutset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskBorderOutset< String | Number> | undefined>[] | undefined>;
|
|
587
|
-
maskBorderRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskBorderRepeat | undefined>;
|
|
588
|
-
maskBorderSlice?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskBorderSlice | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskBorderSlice | undefined>[] | undefined>;
|
|
589
|
-
maskBorderSource?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskBorderSource | undefined>;
|
|
590
|
-
maskBorderWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskBorderWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskBorderWidth< String | Number> | undefined>[] | undefined>;
|
|
591
|
-
maskClip?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskClip | undefined>;
|
|
592
|
-
maskComposite?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskComposite | undefined>;
|
|
593
|
-
maskImage?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskImage | undefined>;
|
|
594
|
-
maskMode?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskMode | undefined>;
|
|
595
|
-
maskOrigin?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskOrigin | undefined>;
|
|
596
|
-
maskPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskPosition< String | Number> | undefined>[] | undefined>;
|
|
597
|
-
maskRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MaskRepeat | undefined>;
|
|
598
|
-
maskSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskSize< String | Number> | undefined>[] | undefined>;
|
|
599
|
-
maskType?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaskType | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaskType | undefined>[] | undefined>;
|
|
600
|
-
masonryAutoFlow?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.MasonryAutoFlow | undefined>;
|
|
601
|
-
mathDepth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MathDepth | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MathDepth | undefined>[] | undefined>;
|
|
602
|
-
mathShift?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MathShift | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MathShift | undefined>[] | undefined>;
|
|
603
|
-
mathStyle?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MathStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MathStyle | undefined>[] | undefined>;
|
|
604
|
-
maxBlockSize?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MaxBlockSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxBlockSize< String | Number> | undefined>[] | undefined>;
|
|
605
|
-
maxHeight?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MaxHeight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxHeight< String | Number> | undefined>[] | undefined>;
|
|
606
|
-
maxInlineSize?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MaxInlineSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxInlineSize< String | Number> | undefined>[] | undefined>;
|
|
607
|
-
maxLines?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.MaxLines | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxLines | undefined>[] | undefined>;
|
|
608
|
-
maxWidth?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MaxWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxWidth< String | Number> | undefined>[] | undefined>;
|
|
609
|
-
minBlockSize?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MinBlockSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinBlockSize< String | Number> | undefined>[] | undefined>;
|
|
610
|
-
minHeight?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MinHeight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinHeight< String | Number> | undefined>[] | undefined>;
|
|
611
|
-
minInlineSize?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MinInlineSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinInlineSize< String | Number> | undefined>[] | undefined>;
|
|
612
|
-
minWidth?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MinWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinWidth< String | Number> | undefined>[] | undefined>;
|
|
613
|
-
mixBlendMode?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MixBlendMode | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MixBlendMode | undefined>[] | undefined>;
|
|
614
|
-
objectFit?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ObjectFit | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ObjectFit | undefined>[] | undefined>;
|
|
615
|
-
objectPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ObjectPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ObjectPosition< String | Number> | undefined>[] | undefined>;
|
|
616
|
-
offset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Offset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Offset< String | Number> | undefined>[] | undefined>;
|
|
617
|
-
offsetAnchor?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OffsetAnchor< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OffsetAnchor< String | Number> | undefined>[] | undefined>;
|
|
618
|
-
offsetDistance?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OffsetDistance< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OffsetDistance< String | Number> | undefined>[] | undefined>;
|
|
619
|
-
offsetPath?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.OffsetPath | undefined>;
|
|
620
|
-
offsetPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OffsetPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OffsetPosition< String | Number> | undefined>[] | undefined>;
|
|
621
|
-
offsetRotate?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.OffsetRotate | undefined>;
|
|
622
|
-
opacity?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Opacity | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Opacity | undefined>[] | undefined>;
|
|
623
|
-
order?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Order | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Order | undefined>[] | undefined>;
|
|
624
|
-
orphans?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Orphans | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Orphans | undefined>[] | undefined>;
|
|
625
|
-
outline?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Outline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Outline< String | Number> | undefined>[] | undefined>;
|
|
626
|
-
outlineColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "auto" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
627
|
-
outlineOffset?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineOffset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineOffset< String | Number> | undefined>[] | undefined>;
|
|
628
|
-
outlineStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineStyle | undefined>[] | undefined>;
|
|
629
|
-
outlineWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | undefined>[] | undefined>;
|
|
630
|
-
overflow?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Overflow | undefined>;
|
|
631
|
-
overflowAnchor?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowAnchor | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowAnchor | undefined>[] | undefined>;
|
|
632
|
-
overflowBlock?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowBlock | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowBlock | undefined>[] | undefined>;
|
|
633
|
-
overflowClipBox?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowClipBox | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowClipBox | undefined>[] | undefined>;
|
|
634
|
-
overflowClipMargin?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowClipMargin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowClipMargin< String | Number> | undefined>[] | undefined>;
|
|
635
|
-
overflowInline?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowInline | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowInline | undefined>[] | undefined>;
|
|
636
|
-
overflowWrap?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowWrap | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowWrap | undefined>[] | undefined>;
|
|
637
|
-
overflowX?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowX | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowX | undefined>[] | undefined>;
|
|
638
|
-
overflowY?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OverflowY | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverflowY | undefined>[] | undefined>;
|
|
639
|
-
overscrollBehavior?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.OverscrollBehavior | undefined>;
|
|
640
|
-
overscrollBehaviorBlock?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorBlock | undefined>[] | undefined>;
|
|
641
|
-
overscrollBehaviorInline?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorInline | undefined>[] | undefined>;
|
|
642
|
-
overscrollBehaviorX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorX | undefined>[] | undefined>;
|
|
643
|
-
overscrollBehaviorY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OverscrollBehaviorY | undefined>[] | undefined>;
|
|
644
|
-
padding?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Padding< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Padding< String | Number> | undefined>[] | undefined>;
|
|
645
|
-
paddingBlock?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | undefined>[] | undefined>;
|
|
646
|
-
paddingBlockEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
647
|
-
paddingBlockStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBlockStart< String | Number> | undefined>[] | undefined>;
|
|
648
|
-
paddingBottom?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBottom< String | Number> | undefined>[] | undefined>;
|
|
649
|
-
paddingInline?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | undefined>[] | undefined>;
|
|
650
|
-
paddingInlineEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
651
|
-
paddingInlineStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | undefined>[] | undefined>;
|
|
652
|
-
paddingLeft?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingLeft< String | Number> | undefined>[] | undefined>;
|
|
653
|
-
paddingRight?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingRight< String | Number> | undefined>[] | undefined>;
|
|
654
|
-
paddingTop?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingTop< String | Number> | undefined>[] | undefined>;
|
|
655
|
-
pageBreakAfter?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PageBreakAfter | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PageBreakAfter | undefined>[] | undefined>;
|
|
656
|
-
pageBreakBefore?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PageBreakBefore | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PageBreakBefore | undefined>[] | undefined>;
|
|
657
|
-
pageBreakInside?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PageBreakInside | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PageBreakInside | undefined>[] | undefined>;
|
|
658
|
-
paintOrder?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PaintOrder | undefined>;
|
|
659
|
-
perspective?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Perspective< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Perspective< String | Number> | undefined>[] | undefined>;
|
|
660
|
-
perspectiveOrigin?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PerspectiveOrigin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PerspectiveOrigin< String | Number> | undefined>[] | undefined>;
|
|
661
|
-
placeContent?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PlaceContent | undefined>;
|
|
662
|
-
placeItems?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PlaceItems | undefined>;
|
|
663
|
-
placeSelf?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PlaceSelf | undefined>;
|
|
664
|
-
pointerEvents?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PointerEvents | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PointerEvents | undefined>[] | undefined>;
|
|
665
|
-
position?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Position | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Position | undefined>[] | undefined>;
|
|
666
|
-
positionAnchor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PositionAnchor | undefined>;
|
|
667
|
-
positionArea?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PositionArea | undefined>;
|
|
668
|
-
positionTry?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PositionTry | undefined>;
|
|
669
|
-
positionTryFallbacks?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PositionTryFallbacks | undefined>;
|
|
670
|
-
positionTryOrder?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PositionTryOrder | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PositionTryOrder | undefined>[] | undefined>;
|
|
671
|
-
positionVisibility?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.PositionVisibility | undefined>;
|
|
672
|
-
printColorAdjust?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.PrintColorAdjust | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PrintColorAdjust | undefined>[] | undefined>;
|
|
673
|
-
quotes?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Quotes | undefined>;
|
|
674
|
-
r?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.R< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.R< String | Number> | undefined>[] | undefined>;
|
|
675
|
-
resize?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Resize | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Resize | undefined>[] | undefined>;
|
|
676
|
-
rotate?: ConditionalValue< CssVars | AnyString | "auto" | readonly string[] | "auto-3d" | import("node_modules/styled-system/types/csstype").Property.Rotate | undefined>;
|
|
677
|
-
rowGap?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.RowGap< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.RowGap< String | Number> | undefined>[] | undefined>;
|
|
678
|
-
rubyAlign?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.RubyAlign | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.RubyAlign | undefined>[] | undefined>;
|
|
679
|
-
rubyMerge?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.RubyMerge | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.RubyMerge | undefined>[] | undefined>;
|
|
680
|
-
rubyPosition?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.RubyPosition | undefined>;
|
|
681
|
-
rx?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Rx< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Rx< String | Number> | undefined>[] | undefined>;
|
|
682
|
-
ry?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Ry< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Ry< String | Number> | undefined>[] | undefined>;
|
|
683
|
-
scale?: ConditionalValue< CssVars | AnyString | "auto" | import("node_modules/styled-system/types/csstype").Property.Scale | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Scale | undefined>[] | undefined>;
|
|
684
|
-
scrollBehavior?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollBehavior | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollBehavior | undefined>[] | undefined>;
|
|
685
|
-
scrollMargin?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMargin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMargin< String | Number> | undefined>[] | undefined>;
|
|
686
|
-
scrollMarginBlock?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlock< String | Number> | undefined>[] | undefined>;
|
|
687
|
-
scrollMarginBlockEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
688
|
-
scrollMarginBlockStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlockStart< String | Number> | undefined>[] | undefined>;
|
|
689
|
-
scrollMarginBottom?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginBottom< String | Number> | undefined>[] | undefined>;
|
|
690
|
-
scrollMarginInline?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginInline< String | Number> | undefined>[] | undefined>;
|
|
691
|
-
scrollMarginInlineEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
692
|
-
scrollMarginInlineStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginInlineStart< String | Number> | undefined>[] | undefined>;
|
|
693
|
-
scrollMarginLeft?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginLeft< String | Number> | undefined>[] | undefined>;
|
|
694
|
-
scrollMarginRight?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginRight< String | Number> | undefined>[] | undefined>;
|
|
695
|
-
scrollMarginTop?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginTop< String | Number> | undefined>[] | undefined>;
|
|
696
|
-
scrollPadding?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPadding< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPadding< String | Number> | undefined>[] | undefined>;
|
|
697
|
-
scrollPaddingBlock?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlock< String | Number> | undefined>[] | undefined>;
|
|
698
|
-
scrollPaddingBlockEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlockEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlockEnd< String | Number> | undefined>[] | undefined>;
|
|
699
|
-
scrollPaddingBlockStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlockStart< String | Number> | undefined>[] | undefined>;
|
|
700
|
-
scrollPaddingBottom?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBottom< String | Number> | undefined>[] | undefined>;
|
|
701
|
-
scrollPaddingInline?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInline< String | Number> | undefined>[] | undefined>;
|
|
702
|
-
scrollPaddingInlineEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
703
|
-
scrollPaddingInlineStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInlineStart< String | Number> | undefined>[] | undefined>;
|
|
704
|
-
scrollPaddingLeft?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingLeft< String | Number> | undefined>[] | undefined>;
|
|
705
|
-
scrollPaddingRight?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingRight< String | Number> | undefined>[] | undefined>;
|
|
706
|
-
scrollPaddingTop?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingTop< String | Number> | undefined>[] | undefined>;
|
|
707
|
-
scrollSnapAlign?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollSnapAlign | undefined>;
|
|
708
|
-
scrollSnapCoordinate?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollSnapCoordinate< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollSnapCoordinate< String | Number> | undefined>[] | undefined>;
|
|
709
|
-
scrollSnapDestination?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollSnapDestination< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollSnapDestination< String | Number> | undefined>[] | undefined>;
|
|
710
|
-
scrollSnapPointsX?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollSnapPointsX | undefined>;
|
|
711
|
-
scrollSnapPointsY?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollSnapPointsY | undefined>;
|
|
712
|
-
scrollSnapStop?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollSnapStop | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollSnapStop | undefined>[] | undefined>;
|
|
713
|
-
scrollSnapType?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollSnapType | undefined>;
|
|
714
|
-
scrollSnapTypeX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollSnapTypeX | undefined>[] | undefined>;
|
|
715
|
-
scrollSnapTypeY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollSnapTypeY | undefined>[] | undefined>;
|
|
716
|
-
scrollTimeline?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollTimeline | undefined>;
|
|
717
|
-
scrollTimelineAxis?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollTimelineAxis | undefined>;
|
|
718
|
-
scrollTimelineName?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollTimelineName | undefined>;
|
|
719
|
-
scrollbarColor?: ConditionalValue< ColorToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollbarColor | undefined>;
|
|
720
|
-
scrollbarGutter?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ScrollbarGutter | undefined>;
|
|
721
|
-
scrollbarWidth?: ConditionalValue< SizeToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollbarWidth | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollbarWidth | undefined>[] | undefined>;
|
|
722
|
-
shapeImageThreshold?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ShapeImageThreshold | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ShapeImageThreshold | undefined>[] | undefined>;
|
|
723
|
-
shapeMargin?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ShapeMargin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ShapeMargin< String | Number> | undefined>[] | undefined>;
|
|
724
|
-
shapeOutside?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ShapeOutside | undefined>;
|
|
725
|
-
shapeRendering?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ShapeRendering | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ShapeRendering | undefined>[] | undefined>;
|
|
726
|
-
stopColor?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.StopColor | undefined>;
|
|
727
|
-
stopOpacity?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StopOpacity | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StopOpacity | undefined>[] | undefined>;
|
|
728
|
-
stroke?: ConditionalValue<"none" | "black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "context-fill" | "context-stroke" | undefined>;
|
|
729
|
-
strokeDasharray?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeDasharray< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeDasharray< String | Number> | undefined>[] | undefined>;
|
|
730
|
-
strokeDashoffset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeDashoffset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeDashoffset< String | Number> | undefined>[] | undefined>;
|
|
731
|
-
strokeLinecap?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeLinecap | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeLinecap | undefined>[] | undefined>;
|
|
732
|
-
strokeLinejoin?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeLinejoin | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeLinejoin | undefined>[] | undefined>;
|
|
733
|
-
strokeMiterlimit?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeMiterlimit | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeMiterlimit | undefined>[] | undefined>;
|
|
734
|
-
strokeOpacity?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeOpacity | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeOpacity | undefined>[] | undefined>;
|
|
735
|
-
strokeWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.StrokeWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.StrokeWidth< String | Number> | undefined>[] | undefined>;
|
|
736
|
-
tabSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TabSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TabSize< String | Number> | undefined>[] | undefined>;
|
|
737
|
-
tableLayout?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TableLayout | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TableLayout | undefined>[] | undefined>;
|
|
738
|
-
textAlign?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextAlign | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextAlign | undefined>[] | undefined>;
|
|
739
|
-
textAlignLast?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextAlignLast | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextAlignLast | undefined>[] | undefined>;
|
|
740
|
-
textAnchor?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextAnchor | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextAnchor | undefined>[] | undefined>;
|
|
741
|
-
textBox?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextBox | undefined>;
|
|
742
|
-
textBoxEdge?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextBoxEdge | undefined>;
|
|
743
|
-
textBoxTrim?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextBoxTrim | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextBoxTrim | undefined>[] | undefined>;
|
|
744
|
-
textCombineUpright?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextCombineUpright | undefined>;
|
|
745
|
-
textDecoration?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextDecoration< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextDecoration< String | Number> | undefined>[] | undefined>;
|
|
746
|
-
textDecorationColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
747
|
-
textDecorationLine?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextDecorationLine | undefined>;
|
|
748
|
-
textDecorationSkip?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextDecorationSkip | undefined>;
|
|
749
|
-
textDecorationSkipInk?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextDecorationSkipInk | undefined>[] | undefined>;
|
|
750
|
-
textDecorationStyle?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextDecorationStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextDecorationStyle | undefined>[] | undefined>;
|
|
751
|
-
textDecorationThickness?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextDecorationThickness< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextDecorationThickness< String | Number> | undefined>[] | undefined>;
|
|
752
|
-
textEmphasis?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextEmphasis | undefined>;
|
|
753
|
-
textEmphasisColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
754
|
-
textEmphasisPosition?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextEmphasisPosition | undefined>;
|
|
755
|
-
textEmphasisStyle?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextEmphasisStyle | undefined>;
|
|
756
|
-
textIndent?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.TextIndent< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextIndent< String | Number> | undefined>[] | undefined>;
|
|
757
|
-
textJustify?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextJustify | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextJustify | undefined>[] | undefined>;
|
|
758
|
-
textOrientation?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextOrientation | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextOrientation | undefined>[] | undefined>;
|
|
759
|
-
textOverflow?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextOverflow | undefined>;
|
|
760
|
-
textRendering?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextRendering | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextRendering | undefined>[] | undefined>;
|
|
761
|
-
textShadow?: ConditionalValue< ShadowToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextShadow | undefined>;
|
|
762
|
-
textSizeAdjust?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextSizeAdjust | undefined>;
|
|
763
|
-
textSpacingTrim?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextSpacingTrim | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextSpacingTrim | undefined>[] | undefined>;
|
|
764
|
-
textTransform?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextTransform | undefined>;
|
|
765
|
-
textUnderlineOffset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextUnderlineOffset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextUnderlineOffset< String | Number> | undefined>[] | undefined>;
|
|
766
|
-
textUnderlinePosition?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextUnderlinePosition | undefined>;
|
|
767
|
-
textWrap?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TextWrap | undefined>;
|
|
768
|
-
textWrapMode?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextWrapMode | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextWrapMode | undefined>[] | undefined>;
|
|
769
|
-
textWrapStyle?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TextWrapStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TextWrapStyle | undefined>[] | undefined>;
|
|
770
|
-
timelineScope?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TimelineScope | undefined>;
|
|
771
|
-
touchAction?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TouchAction | undefined>;
|
|
772
|
-
transform?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Transform | undefined>;
|
|
773
|
-
transformBox?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.TransformBox | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TransformBox | undefined>[] | undefined>;
|
|
774
|
-
transformOrigin?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.TransformOrigin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TransformOrigin< String | Number> | undefined>[] | undefined>;
|
|
775
|
-
transformStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.TransformStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.TransformStyle | undefined>[] | undefined>;
|
|
776
|
-
transition?: ConditionalValue< CssVars | AnyString | "background" | "opacity" | "position" | "transform" | "shadow" | "size" | readonly string[] | "colors" | "common" | import("node_modules/styled-system/types/csstype").Property.Transition<string & {}> | undefined>;
|
|
777
|
-
transitionBehavior?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TransitionBehavior | undefined>;
|
|
778
|
-
transitionDelay?: ConditionalValue< DurationToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TransitionDelay<string & {}> | undefined>;
|
|
779
|
-
transitionDuration?: ConditionalValue< DurationToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.TransitionDuration<string & {}> | undefined>;
|
|
780
|
-
transitionProperty?: ConditionalValue< CssVars | AnyString | "background" | "position" | "size" | readonly string[] | "colors" | "common" | import("node_modules/styled-system/types/csstype").Property.TransitionProperty | undefined>;
|
|
781
|
-
transitionTimingFunction?: ConditionalValue<"default" | "linear" | "in" | "out" | "in-out" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | undefined>;
|
|
782
|
-
translate?: ConditionalValue< CssVars | AnyString | "auto" | "auto-3d" | import("node_modules/styled-system/types/csstype").Property.Translate< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Translate< String | Number> | undefined>[] | undefined>;
|
|
783
|
-
unicodeBidi?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.UnicodeBidi | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.UnicodeBidi | undefined>[] | undefined>;
|
|
784
|
-
userSelect?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.UserSelect | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.UserSelect | undefined>[] | undefined>;
|
|
785
|
-
vectorEffect?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.VectorEffect | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.VectorEffect | undefined>[] | undefined>;
|
|
786
|
-
verticalAlign?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.VerticalAlign< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.VerticalAlign< String | Number> | undefined>[] | undefined>;
|
|
787
|
-
viewTimeline?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ViewTimeline | undefined>;
|
|
788
|
-
viewTimelineAxis?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ViewTimelineAxis | undefined>;
|
|
789
|
-
viewTimelineInset?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ViewTimelineInset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ViewTimelineInset< String | Number> | undefined>[] | undefined>;
|
|
790
|
-
viewTimelineName?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ViewTimelineName | undefined>;
|
|
791
|
-
viewTransitionName?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.ViewTransitionName | undefined>;
|
|
792
|
-
visibility?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Visibility | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Visibility | undefined>[] | undefined>;
|
|
793
|
-
whiteSpace?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WhiteSpace | undefined>;
|
|
794
|
-
whiteSpaceCollapse?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WhiteSpaceCollapse | undefined>[] | undefined>;
|
|
795
|
-
widows?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Widows | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Widows | undefined>[] | undefined>;
|
|
796
|
-
width?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.Width< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Width< String | Number> | undefined>[] | undefined>;
|
|
797
|
-
willChange?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.WillChange | undefined>;
|
|
798
|
-
wordBreak?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.WordBreak | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WordBreak | undefined>[] | undefined>;
|
|
799
|
-
wordSpacing?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WordSpacing< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WordSpacing< String | Number> | undefined>[] | undefined>;
|
|
800
|
-
wordWrap?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.WordWrap | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WordWrap | undefined>[] | undefined>;
|
|
801
|
-
writingMode?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.WritingMode | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.WritingMode | undefined>[] | undefined>;
|
|
802
|
-
x?: ConditionalValue< UtilityValues["translateX"] | CssVars | AnyString> | undefined;
|
|
803
|
-
y?: ConditionalValue< UtilityValues["translateY"] | CssVars | AnyString> | undefined;
|
|
804
|
-
zIndex?: ConditionalValue< ZIndexToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ZIndex | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ZIndex | undefined>[] | undefined>;
|
|
805
|
-
zoom?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Zoom | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Zoom | undefined>[] | undefined>;
|
|
806
|
-
alignmentBaseline?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.AlignmentBaseline | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.AlignmentBaseline | undefined>[] | undefined>;
|
|
807
|
-
baselineShift?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BaselineShift< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BaselineShift< String | Number> | undefined>[] | undefined>;
|
|
808
|
-
colorInterpolation?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColorInterpolation | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColorInterpolation | undefined>[] | undefined>;
|
|
809
|
-
colorRendering?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.ColorRendering | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ColorRendering | undefined>[] | undefined>;
|
|
810
|
-
glyphOrientationVertical?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.GlyphOrientationVertical | undefined>[] | undefined>;
|
|
811
|
-
pos?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.Position | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Position | undefined>[] | undefined>;
|
|
812
|
-
insetX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInline< String | Number> | undefined>[] | undefined>;
|
|
813
|
-
insetY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetBlock< String | Number> | undefined>[] | undefined>;
|
|
814
|
-
insetEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
815
|
-
end?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
816
|
-
insetStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | undefined>[] | undefined>;
|
|
817
|
-
start?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.InsetInlineStart< String | Number> | undefined>[] | undefined>;
|
|
818
|
-
flexDir?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.FlexDirection | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.FlexDirection | undefined>[] | undefined>;
|
|
819
|
-
pl?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingLeft< String | Number> | undefined>[] | undefined>;
|
|
820
|
-
pr?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingRight< String | Number> | undefined>[] | undefined>;
|
|
821
|
-
pt?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingTop< String | Number> | undefined>[] | undefined>;
|
|
822
|
-
pb?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBottom< String | Number> | undefined>[] | undefined>;
|
|
823
|
-
py?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | undefined>[] | undefined>;
|
|
824
|
-
paddingY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingBlock< String | Number> | undefined>[] | undefined>;
|
|
825
|
-
paddingX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | undefined>[] | undefined>;
|
|
826
|
-
px?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInline< String | Number> | undefined>[] | undefined>;
|
|
827
|
-
pe?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
828
|
-
paddingEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
829
|
-
ps?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | undefined>[] | undefined>;
|
|
830
|
-
paddingStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.PaddingInlineStart< String | Number> | undefined>[] | undefined>;
|
|
831
|
-
ml?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginLeft< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginLeft< String | Number> | undefined>[] | undefined>;
|
|
832
|
-
mr?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginRight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginRight< String | Number> | undefined>[] | undefined>;
|
|
833
|
-
mt?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginTop< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginTop< String | Number> | undefined>[] | undefined>;
|
|
834
|
-
mb?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBottom< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBottom< String | Number> | undefined>[] | undefined>;
|
|
835
|
-
m?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Margin< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Margin< String | Number> | undefined>[] | undefined>;
|
|
836
|
-
my?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | undefined>[] | undefined>;
|
|
837
|
-
marginY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlock< String | Number> | undefined>[] | undefined>;
|
|
838
|
-
mx?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | undefined>[] | undefined>;
|
|
839
|
-
marginX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInline< String | Number> | undefined>[] | undefined>;
|
|
840
|
-
me?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
841
|
-
marginEnd?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
842
|
-
ms?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | undefined>[] | undefined>;
|
|
843
|
-
marginStart?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | undefined>[] | undefined>;
|
|
844
|
-
ringWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | undefined>[] | undefined>;
|
|
845
|
-
ringColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "auto" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
846
|
-
ring?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.Outline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Outline< String | Number> | undefined>[] | undefined>;
|
|
847
|
-
ringOffset?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineOffset< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineOffset< String | Number> | undefined>[] | undefined>;
|
|
848
|
-
w?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.Width< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Width< String | Number> | undefined>[] | undefined>;
|
|
849
|
-
minW?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MinWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinWidth< String | Number> | undefined>[] | undefined>;
|
|
850
|
-
maxW?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | import("node_modules/styled-system/types/csstype").Property.MaxWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxWidth< String | Number> | undefined>[] | undefined>;
|
|
851
|
-
h?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.Height< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Height< String | Number> | undefined>[] | undefined>;
|
|
852
|
-
minH?: ConditionalValue< SizeToken | CssVars | AnyString | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MinHeight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MinHeight< String | Number> | undefined>[] | undefined>;
|
|
853
|
-
maxH?: ConditionalValue< SizeToken | CssVars | AnyString | "auto" | "screen" | "svh" | "lvh" | "dvh" | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | import("node_modules/styled-system/types/csstype").Property.MaxHeight< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MaxHeight< String | Number> | undefined>[] | undefined>;
|
|
854
|
-
textShadowColor?: ConditionalValue< UtilityValues["textShadowColor"] | CssVars | AnyString> | undefined;
|
|
855
|
-
bgPosition?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPosition< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPosition< String | Number> | undefined>[] | undefined>;
|
|
856
|
-
bgPositionX?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPositionX< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPositionX< String | Number> | undefined>[] | undefined>;
|
|
857
|
-
bgPositionY?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundPositionY< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundPositionY< String | Number> | undefined>[] | undefined>;
|
|
858
|
-
bgAttachment?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundAttachment | undefined>;
|
|
859
|
-
bgClip?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundClip | undefined>;
|
|
860
|
-
bg?: ConditionalValue<"top" | "right" | "bottom" | "left" | "center" | "none" | "black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | String | Number | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "border-box" | "content-box" | "padding-box" | "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "fixed" | "local" | "scroll" | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.Background< String | Number> | undefined>[] | undefined>;
|
|
861
|
-
bgColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
862
|
-
bgOrigin?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundOrigin | undefined>;
|
|
863
|
-
bgImage?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundImage | undefined>;
|
|
864
|
-
bgRepeat?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundRepeat | undefined>;
|
|
865
|
-
bgBlendMode?: ConditionalValue< AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BackgroundBlendMode | undefined>;
|
|
866
|
-
bgSize?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BackgroundSize< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BackgroundSize< String | Number> | undefined>[] | undefined>;
|
|
867
|
-
bgGradient?: ConditionalValue< UtilityValues["backgroundGradient"] | CssVars | AnyString> | undefined;
|
|
868
|
-
bgLinear?: ConditionalValue< UtilityValues["backgroundLinear"] | CssVars | AnyString> | undefined;
|
|
869
|
-
bgRadial?: ConditionalValue<string | number | AnyString> | undefined;
|
|
870
|
-
bgConic?: ConditionalValue<string | number | AnyString> | undefined;
|
|
871
|
-
rounded?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
872
|
-
roundedTopLeft?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopLeftRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopLeftRadius< String | Number> | undefined>[] | undefined>;
|
|
873
|
-
roundedTopRight?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderTopRightRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderTopRightRadius< String | Number> | undefined>[] | undefined>;
|
|
874
|
-
roundedBottomRight?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomRightRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomRightRadius< String | Number> | undefined>[] | undefined>;
|
|
875
|
-
roundedBottomLeft?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBottomLeftRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBottomLeftRadius< String | Number> | undefined>[] | undefined>;
|
|
876
|
-
roundedTop?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
877
|
-
roundedRight?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
878
|
-
roundedBottom?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
879
|
-
roundedLeft?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
880
|
-
roundedStartStart?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderStartStartRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderStartStartRadius< String | Number> | undefined>[] | undefined>;
|
|
881
|
-
roundedStartEnd?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderStartEndRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderStartEndRadius< String | Number> | undefined>[] | undefined>;
|
|
882
|
-
roundedStart?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
883
|
-
roundedEndStart?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderEndStartRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderEndStartRadius< String | Number> | undefined>[] | undefined>;
|
|
884
|
-
roundedEndEnd?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderEndEndRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderEndEndRadius< String | Number> | undefined>[] | undefined>;
|
|
885
|
-
roundedEnd?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
886
|
-
borderX?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInline< String | Number> | undefined>[] | undefined>;
|
|
887
|
-
borderXWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineWidth< String | Number> | undefined>[] | undefined>;
|
|
888
|
-
borderXColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
889
|
-
borderY?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlock< String | Number> | undefined>[] | undefined>;
|
|
890
|
-
borderYWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderBlockWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderBlockWidth< String | Number> | undefined>[] | undefined>;
|
|
891
|
-
borderYColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
892
|
-
borderStart?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineStart< String | Number> | undefined>[] | undefined>;
|
|
893
|
-
borderStartWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineStartWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineStartWidth< String | Number> | undefined>[] | undefined>;
|
|
894
|
-
borderStartColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
895
|
-
borderEnd?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineEnd< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineEnd< String | Number> | undefined>[] | undefined>;
|
|
896
|
-
borderEndWidth?: ConditionalValue< AnyString | import("node_modules/styled-system/types/csstype").Property.BorderInlineEndWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderInlineEndWidth< String | Number> | undefined>[] | undefined>;
|
|
897
|
-
borderEndColor?: ConditionalValue<"black" | "current" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "acheron.neutral.0" | "acheron.neutral.5" | "acheron.neutral.10" | "acheron.neutral.20" | "acheron.neutral.30" | "acheron.neutral.40" | "acheron.neutral.50" | "acheron.neutral.60" | "acheron.neutral.70" | "acheron.neutral.80" | "acheron.neutral.90" | "acheron.neutral.100" | "acheron.neutral.white" | "acheron.brand.5" | "acheron.brand.10" | "acheron.brand.20" | "acheron.brand.30" | "acheron.brand.40" | "acheron.brand.50" | "acheron.brand.60" | "acheron.brand.70" | "acheron.brand.80" | "acheron.brand.90" | "acheron.brand.100" | "acheron.accent.10" | "acheron.accent.20" | "acheron.accent.30" | "acheron.accent.40" | "acheron.accent.50" | "acheron.accent.60" | "acheron.accent.70" | "acheron.accent.80" | "acheron.accent.90" | "acheron.accent.100" | "acheron.success.10" | "acheron.success.20" | "acheron.success.30" | "acheron.success.40" | "acheron.success.50" | "acheron.success.60" | "acheron.success.70" | "acheron.success.80" | "acheron.success.90" | "acheron.success.100" | "acheron.drop-shadow.100" | "acheron.drop-shadow.200" | "acheron.drop-shadow.300" | "acheron.drop-shadow.400" | "acheron.drop-shadow.500" | "acheron.drop-shadow.600" | "acheron.drop-shadow.700" | "acheron.drop-shadow.800" | "acheron.drop-shadow.900" | "acheron.drop-shadow.1000" | "danger.acheron.10" | "danger.acheron.20" | "danger.acheron.30" | "danger.acheron.40" | "danger.acheron.50" | "danger.acheron.60" | "danger.acheron.70" | "danger.acheron.80" | "danger.acheron.90" | "danger.acheron.100" | "danger.cerberus.10" | "danger.cerberus.20" | "danger.cerberus.30" | "danger.cerberus.40" | "danger.cerberus.50" | "danger.cerberus.60" | "danger.cerberus.70" | "danger.cerberus.80" | "danger.cerberus.90" | "danger.cerberus.100" | "danger.elysium.10" | "danger.elysium.20" | "danger.elysium.30" | "danger.elysium.40" | "danger.elysium.50" | "danger.elysium.60" | "danger.elysium.70" | "danger.elysium.80" | "danger.elysium.90" | "danger.elysium.100" | "warning.acheron.10" | "warning.acheron.20" | "warning.acheron.30" | "warning.acheron.40" | "warning.acheron.50" | "warning.acheron.60" | "warning.acheron.70" | "warning.acheron.80" | "warning.acheron.90" | "warning.acheron.100" | "warning.cerberus.10" | "warning.cerberus.20" | "warning.cerberus.30" | "warning.cerberus.40" | "warning.cerberus.50" | "warning.cerberus.60" | "warning.cerberus.70" | "warning.cerberus.80" | "warning.cerberus.90" | "warning.cerberus.100" | "warning.elysium.10" | "warning.elysium.20" | "warning.elysium.30" | "warning.elysium.40" | "warning.elysium.50" | "warning.elysium.60" | "warning.elysium.70" | "warning.elysium.80" | "warning.elysium.90" | "warning.elysium.100" | "info.acheron.10" | "info.acheron.20" | "info.acheron.30" | "info.acheron.40" | "info.acheron.50" | "info.acheron.60" | "info.acheron.70" | "info.acheron.80" | "info.acheron.90" | "info.acheron.100" | "info.cerberus.10" | "info.cerberus.20" | "info.cerberus.30" | "info.cerberus.40" | "info.cerberus.50" | "info.cerberus.60" | "info.cerberus.70" | "info.cerberus.80" | "info.cerberus.90" | "info.cerberus.100" | "info.elysium.10" | "info.elysium.20" | "info.elysium.30" | "info.elysium.40" | "info.elysium.50" | "info.elysium.60" | "info.elysium.70" | "info.elysium.80" | "info.elysium.90" | "info.elysium.100" | "info.elysium.05" | "cerberus.neutral.5" | "cerberus.neutral.10" | "cerberus.neutral.15" | "cerberus.neutral.20" | "cerberus.neutral.30" | "cerberus.neutral.40" | "cerberus.neutral.50" | "cerberus.neutral.60" | "cerberus.neutral.70" | "cerberus.neutral.80" | "cerberus.neutral.90" | "cerberus.neutral.100" | "cerberus.neutral.white" | "cerberus.brand.5" | "cerberus.brand.10" | "cerberus.brand.20" | "cerberus.brand.30" | "cerberus.brand.40" | "cerberus.brand.50" | "cerberus.brand.60" | "cerberus.brand.70" | "cerberus.brand.80" | "cerberus.brand.90" | "cerberus.brand.100" | "cerberus.teal.10" | "cerberus.teal.20" | "cerberus.teal.30" | "cerberus.teal.40" | "cerberus.teal.50" | "cerberus.teal.60" | "cerberus.teal.70" | "cerberus.teal.80" | "cerberus.teal.90" | "cerberus.teal.100" | "cerberus.success.10" | "cerberus.success.20" | "cerberus.success.30" | "cerberus.success.40" | "cerberus.success.50" | "cerberus.success.60" | "cerberus.success.70" | "cerberus.success.80" | "cerberus.success.90" | "cerberus.success.100" | "cerberus.drop-shadow.100" | "cerberus.drop-shadow.200" | "cerberus.drop-shadow.300" | "cerberus.drop-shadow.400" | "cerberus.drop-shadow.500" | "cerberus.drop-shadow.600" | "cerberus.drop-shadow.700" | "cerberus.drop-shadow.800" | "cerberus.drop-shadow.900" | "cerberus.drop-shadow.1000" | "elysium.neutral.5" | "elysium.neutral.10" | "elysium.neutral.20" | "elysium.neutral.30" | "elysium.neutral.40" | "elysium.neutral.50" | "elysium.neutral.60" | "elysium.neutral.70" | "elysium.neutral.80" | "elysium.neutral.90" | "elysium.neutral.100" | "elysium.neutral.white" | "elysium.brand.5" | "elysium.brand.10" | "elysium.brand.20" | "elysium.brand.30" | "elysium.brand.40" | "elysium.brand.50" | "elysium.brand.60" | "elysium.brand.70" | "elysium.brand.80" | "elysium.brand.90" | "elysium.brand.100" | "elysium.accent.10" | "elysium.accent.20" | "elysium.accent.30" | "elysium.accent.40" | "elysium.accent.50" | "elysium.accent.60" | "elysium.accent.70" | "elysium.accent.80" | "elysium.accent.90" | "elysium.accent.100" | "elysium.success.10" | "elysium.success.20" | "elysium.success.30" | "elysium.success.40" | "elysium.success.50" | "elysium.success.60" | "elysium.success.70" | "elysium.success.80" | "elysium.success.90" | "elysium.success.100" | "elysium.drop-shadow.100" | "elysium.drop-shadow.200" | "elysium.drop-shadow.300" | "elysium.drop-shadow.400" | "elysium.drop-shadow.500" | "elysium.drop-shadow.600" | "elysium.drop-shadow.700" | "elysium.drop-shadow.800" | "elysium.drop-shadow.900" | "elysium.drop-shadow.1000" | "page.backdrop.initial" | "page.bg.100" | "page.bg.200" | "page.bg.300" | "page.bg.initial" | "page.border.100" | "page.border.200" | "page.border.initial" | "page.surface.100" | "page.surface.200" | "page.surface.300" | "page.surface.400" | "page.surface.initial" | "page.surface.inverse" | "page.text.100" | "page.text.200" | "page.text.300" | "page.text.initial" | "page.text.inverse" | "action.bg.initial" | "action.bg.hover" | "action.bg.active" | "action.border.100" | "action.border.initial" | "action.border.focus" | "action.ghost.initial" | "action.ghost.hover" | "action.ghost.active" | "action.navigation.initial" | "action.navigation.hover" | "action.navigation.visited" | "action.text.100" | "action.text.200" | "action.text.initial" | "action.text.inverse" | "action.text.static" | "secondaryAction.bg.initial" | "secondaryAction.bg.hover" | "secondaryAction.bg.active" | "secondaryAction.border.100" | "secondaryAction.border.initial" | "secondaryAction.ghost.initial" | "secondaryAction.ghost.hover" | "secondaryAction.ghost.active" | "secondaryAction.navigation.initial" | "secondaryAction.navigation.hover" | "secondaryAction.navigation.visited" | "secondaryAction.text.100" | "secondaryAction.text.200" | "secondaryAction.text.initial" | "secondaryAction.text.static" | "info.border.100" | "info.border.initial" | "info.bg.initial" | "info.bg.hover" | "info.bg.active" | "info.ghost.initial" | "info.ghost.hover" | "info.ghost.active" | "info.surface.100" | "info.surface.200" | "info.surface.initial" | "info.text.100" | "info.text.200" | "info.text.initial" | "info.text.static" | "success.border.initial" | "success.bg.initial" | "success.bg.hover" | "success.bg.active" | "success.ghost.initial" | "success.ghost.hover" | "success.ghost.active" | "success.surface.100" | "success.surface.200" | "success.surface.initial" | "success.text.100" | "success.text.200" | "success.text.initial" | "success.text.inverse" | "success.text.static" | "warning.border.initial" | "warning.bg.initial" | "warning.bg.hover" | "warning.bg.active" | "warning.ghost.initial" | "warning.ghost.hover" | "warning.ghost.active" | "warning.surface.100" | "warning.surface.200" | "warning.surface.initial" | "warning.text.100" | "warning.text.200" | "warning.text.initial" | "warning.text.inverse" | "warning.text.static" | "danger.bg.initial" | "danger.bg.hover" | "danger.bg.active" | "danger.border.initial" | "danger.ghost.initial" | "danger.ghost.hover" | "danger.ghost.active" | "danger.surface.100" | "danger.surface.200" | "danger.surface.initial" | "danger.text.100" | "danger.text.200" | "danger.text.initial" | "danger.text.inverse" | "danger.text.static" | "dataViz.diverging.50" | "dataViz.diverging.100" | "dataViz.diverging.200" | "dataViz.diverging.300" | "dataViz.diverging.400" | "dataViz.diverging.500" | "dataViz.diverging.600" | "dataViz.diverging.700" | "dataViz.diverging.800" | "dataViz.diverging.900" | "dataViz.sequential.100" | "dataViz.sequential.200" | "dataViz.sequential.300" | "dataViz.sequential.400" | "dataViz.sequential.500" | "dataViz.sequential.600" | "dataViz.qualitative.100" | "dataViz.qualitative.200" | "dataViz.qualitative.300" | "dataViz.qualitative.400" | "dataViz.qualitative.500" | "dataViz.qualitative.600" | "dataViz.qualitative.700" | "dataViz.progress.start" | "dataViz.progress.end" | "dataViz.progress.complete" | "gradient.charon-light.start" | "gradient.charon-light.end" | "gradient.charon-light.text" | "gradient.charon-dark.start" | "gradient.charon-dark.end" | "gradient.charon-dark.text" | "gradient.nyx-light.start" | "gradient.nyx-light.end" | "gradient.nyx-light.text" | "gradient.nyx-dark.start" | "gradient.nyx-dark.end" | "gradient.nyx-dark.text" | "gradient.amphiaraus-light.start" | "gradient.amphiaraus-light.end" | "gradient.amphiaraus-light.text" | "gradient.amphiaraus-dark.start" | "gradient.amphiaraus-dark.end" | "gradient.amphiaraus-dark.text" | "gradient.styx-light.start" | "gradient.styx-light.end" | "gradient.styx-light.text" | "gradient.styx-dark.start" | "gradient.styx-dark.end" | "gradient.styx-dark.text" | "gradient.thanatos-light.start" | "gradient.thanatos-light.end" | "gradient.thanatos-light.text" | "gradient.thanatos-dark.start" | "gradient.thanatos-dark.end" | "gradient.thanatos-dark.text" | "gradient.hades-light.start" | "gradient.hades-light.end" | "gradient.hades-light.text" | "gradient.hades-dark.start" | "gradient.hades-dark.end" | "gradient.hades-dark.text" | "gradient.asphodel-light.start" | "gradient.asphodel-light.end" | "gradient.asphodel-light.text" | "gradient.asphodel-dark.start" | "gradient.asphodel-dark.end" | "gradient.asphodel-dark.text" | "colorPalette.acheron.10" | "colorPalette.10" | "colorPalette.acheron.20" | "colorPalette.20" | "colorPalette.acheron.30" | "colorPalette.30" | "colorPalette.acheron.40" | "colorPalette.40" | "colorPalette.acheron.50" | "colorPalette.50" | "colorPalette.acheron.60" | "colorPalette.60" | "colorPalette.acheron.70" | "colorPalette.70" | "colorPalette.acheron.80" | "colorPalette.80" | "colorPalette.acheron.90" | "colorPalette.90" | "colorPalette.acheron.100" | "colorPalette.100" | "colorPalette.cerberus.10" | "colorPalette.cerberus.20" | "colorPalette.cerberus.30" | "colorPalette.cerberus.40" | "colorPalette.cerberus.50" | "colorPalette.cerberus.60" | "colorPalette.cerberus.70" | "colorPalette.cerberus.80" | "colorPalette.cerberus.90" | "colorPalette.cerberus.100" | "colorPalette.elysium.10" | "colorPalette.elysium.20" | "colorPalette.elysium.30" | "colorPalette.elysium.40" | "colorPalette.elysium.50" | "colorPalette.elysium.60" | "colorPalette.elysium.70" | "colorPalette.elysium.80" | "colorPalette.elysium.90" | "colorPalette.elysium.100" | "colorPalette.elysium.05" | "colorPalette.05" | "colorPalette.backdrop.initial" | "colorPalette.initial" | "colorPalette.bg.100" | "colorPalette.bg.200" | "colorPalette.200" | "colorPalette.bg.300" | "colorPalette.300" | "colorPalette.bg.initial" | "colorPalette.border.100" | "colorPalette.border.200" | "colorPalette.border.initial" | "colorPalette.surface.100" | "colorPalette.surface.200" | "colorPalette.surface.300" | "colorPalette.surface.400" | "colorPalette.400" | "colorPalette.surface.initial" | "colorPalette.surface.inverse" | "colorPalette.inverse" | "colorPalette.text.100" | "colorPalette.text.200" | "colorPalette.text.300" | "colorPalette.text.initial" | "colorPalette.text.inverse" | "colorPalette.bg.hover" | "colorPalette.hover" | "colorPalette.bg.active" | "colorPalette.active" | "colorPalette.border.focus" | "colorPalette.focus" | "colorPalette.ghost.initial" | "colorPalette.ghost.hover" | "colorPalette.ghost.active" | "colorPalette.navigation.initial" | "colorPalette.navigation.hover" | "colorPalette.navigation.visited" | "colorPalette.visited" | "colorPalette.text.static" | "colorPalette.static" | "var(--font-display)" | "var(--font-sans)" | "var(--font-mono)" | AnyString | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | readonly string[] | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | undefined>;
|
|
898
|
-
shadow?: ConditionalValue< ShadowToken | CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BoxShadow | undefined>;
|
|
899
|
-
shadowColor?: ConditionalValue< UtilityValues["boxShadowColor"] | CssVars | AnyString> | undefined;
|
|
900
|
-
z?: ConditionalValue< UtilityValues["translateZ"] | CssVars | AnyString> | undefined;
|
|
901
|
-
scrollMarginY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginBlock< String | Number> | undefined>[] | undefined>;
|
|
902
|
-
scrollMarginX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollMarginInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollMarginInline< String | Number> | undefined>[] | undefined>;
|
|
903
|
-
scrollPaddingY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlock< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingBlock< String | Number> | undefined>[] | undefined>;
|
|
904
|
-
scrollPaddingX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInline< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.ScrollPaddingInline< String | Number> | undefined>[] | undefined>;
|
|
905
|
-
grad?: ConditionalValue< UtilityValues["gradient"] | CssVars | AnyString> | undefined;
|
|
906
|
-
borderGrad?: ConditionalValue< UtilityValues["borderGradient"] | CssVars | AnyString> | undefined;
|
|
907
|
-
hideFrom?: ConditionalValue< UtilityValues["hideFrom"] | CssVars | AnyString> | undefined;
|
|
908
|
-
hideBelow?: ConditionalValue< UtilityValues["hideBelow"] | CssVars | AnyString> | undefined;
|
|
909
|
-
spaceX?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginInlineStart< String | Number> | undefined>[] | undefined>;
|
|
910
|
-
spaceY?: ConditionalValue< SpacingToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.MarginBlockStart< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.MarginBlockStart< String | Number> | undefined>[] | undefined>;
|
|
911
|
-
focusRing?: ConditionalValue< UtilityValues["focusRing"] | CssVars | AnyString> | undefined;
|
|
912
|
-
focusVisibleRing?: ConditionalValue< UtilityValues["focusVisibleRing"] | CssVars | AnyString> | undefined;
|
|
913
|
-
focusRingColor?: ConditionalValue< UtilityValues["focusRingColor"] | CssVars | AnyString> | undefined;
|
|
914
|
-
focusRingOffset?: ConditionalValue< UtilityValues["focusRingOffset"] | CssVars | AnyString> | undefined;
|
|
915
|
-
focusRingWidth?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineWidth< String | Number> | undefined>[] | undefined>;
|
|
916
|
-
focusRingStyle?: ConditionalValue< CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.OutlineStyle | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.OutlineStyle | undefined>[] | undefined>;
|
|
917
|
-
divideX?: ConditionalValue<string | number | AnyString> | undefined;
|
|
918
|
-
divideY?: ConditionalValue<string | number | AnyString> | undefined;
|
|
919
|
-
divideColor?: ConditionalValue< UtilityValues["divideColor"] | CssVars | AnyString> | undefined;
|
|
920
|
-
divideStyle?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.BorderStyle | undefined>;
|
|
921
|
-
boxSize?: ConditionalValue< UtilityValues["boxSize"] | CssVars | AnyString> | undefined;
|
|
922
|
-
fontSmoothing?: ConditionalValue< UtilityValues["fontSmoothing"] | CssVars | AnyString> | undefined;
|
|
923
|
-
truncate?: ConditionalValue< UtilityValues["truncate"] | CssVars | AnyString> | undefined;
|
|
924
|
-
backgroundGradient?: ConditionalValue< UtilityValues["backgroundGradient"] | CssVars | AnyString> | undefined;
|
|
925
|
-
backgroundLinear?: ConditionalValue< UtilityValues["backgroundLinear"] | CssVars | AnyString> | undefined;
|
|
926
|
-
backgroundRadial?: ConditionalValue<string | number | AnyString> | undefined;
|
|
927
|
-
backgroundConic?: ConditionalValue<string | number | AnyString> | undefined;
|
|
928
|
-
textGradient?: ConditionalValue< UtilityValues["textGradient"] | CssVars | AnyString> | undefined;
|
|
929
|
-
gradientFromPosition?: ConditionalValue<string | number | AnyString> | undefined;
|
|
930
|
-
gradientToPosition?: ConditionalValue<string | number | AnyString> | undefined;
|
|
931
|
-
gradientFrom?: ConditionalValue< UtilityValues["gradientFrom"] | CssVars | AnyString> | undefined;
|
|
932
|
-
gradientTo?: ConditionalValue< UtilityValues["gradientTo"] | CssVars | AnyString> | undefined;
|
|
933
|
-
gradientVia?: ConditionalValue< UtilityValues["gradientVia"] | CssVars | AnyString> | undefined;
|
|
934
|
-
gradientViaPosition?: ConditionalValue<string | number | AnyString> | undefined;
|
|
935
|
-
borderTopRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
936
|
-
borderRightRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
937
|
-
borderBottomRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
938
|
-
borderLeftRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
939
|
-
borderStartRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
940
|
-
borderEndRadius?: ConditionalValue< RadiusToken | CssVars | AnyString | import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | readonly NonNullable<import("node_modules/styled-system/types/csstype").Property.BorderRadius< String | Number> | undefined>[] | undefined>;
|
|
941
|
-
boxShadowColor?: ConditionalValue< UtilityValues["boxShadowColor"] | CssVars | AnyString> | undefined;
|
|
942
|
-
brightness?: ConditionalValue<string | number | AnyString> | undefined;
|
|
943
|
-
contrast?: ConditionalValue<string | number | AnyString> | undefined;
|
|
944
|
-
grayscale?: ConditionalValue<string | number | AnyString> | undefined;
|
|
945
|
-
hueRotate?: ConditionalValue<string | number | AnyString> | undefined;
|
|
946
|
-
invert?: ConditionalValue<string | number | AnyString> | undefined;
|
|
947
|
-
saturate?: ConditionalValue<string | number | AnyString> | undefined;
|
|
948
|
-
sepia?: ConditionalValue<string | number | AnyString> | undefined;
|
|
949
|
-
dropShadow?: ConditionalValue<string | number | AnyString> | undefined;
|
|
950
|
-
blur?: ConditionalValue< UtilityValues["blur"] | CssVars | AnyString> | undefined;
|
|
951
|
-
backdropBlur?: ConditionalValue< UtilityValues["backdropBlur"] | CssVars | AnyString> | undefined;
|
|
952
|
-
backdropBrightness?: ConditionalValue<string | number | AnyString> | undefined;
|
|
953
|
-
backdropContrast?: ConditionalValue<string | number | AnyString> | undefined;
|
|
954
|
-
backdropGrayscale?: ConditionalValue<string | number | AnyString> | undefined;
|
|
955
|
-
backdropHueRotate?: ConditionalValue<string | number | AnyString> | undefined;
|
|
956
|
-
backdropInvert?: ConditionalValue<string | number | AnyString> | undefined;
|
|
957
|
-
backdropOpacity?: ConditionalValue<string | number | AnyString> | undefined;
|
|
958
|
-
backdropSaturate?: ConditionalValue<string | number | AnyString> | undefined;
|
|
959
|
-
backdropSepia?: ConditionalValue<string | number | AnyString> | undefined;
|
|
960
|
-
borderSpacingX?: ConditionalValue< UtilityValues["borderSpacingX"] | CssVars | AnyString> | undefined;
|
|
961
|
-
borderSpacingY?: ConditionalValue< UtilityValues["borderSpacingY"] | CssVars | AnyString> | undefined;
|
|
962
|
-
animationState?: ConditionalValue<string | number | AnyString> | undefined;
|
|
963
|
-
rotateX?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Rotate | undefined>;
|
|
964
|
-
rotateY?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Rotate | undefined>;
|
|
965
|
-
rotateZ?: ConditionalValue< CssVars | AnyString | readonly string[] | import("node_modules/styled-system/types/csstype").Property.Rotate | undefined>;
|
|
966
|
-
scaleX?: ConditionalValue<string | number | AnyString> | undefined;
|
|
967
|
-
scaleY?: ConditionalValue<string | number | AnyString> | undefined;
|
|
968
|
-
translateX?: ConditionalValue< UtilityValues["translateX"] | CssVars | AnyString> | undefined;
|
|
969
|
-
translateY?: ConditionalValue< UtilityValues["translateY"] | CssVars | AnyString> | undefined;
|
|
970
|
-
translateZ?: ConditionalValue< UtilityValues["translateZ"] | CssVars | AnyString> | undefined;
|
|
971
|
-
scrollbar?: ConditionalValue< UtilityValues["scrollbar"] | CssVars | AnyString> | undefined;
|
|
972
|
-
scrollSnapStrictness?: ConditionalValue< UtilityValues["scrollSnapStrictness"] | CssVars | AnyString> | undefined;
|
|
973
|
-
scrollSnapMargin?: ConditionalValue< UtilityValues["scrollSnapMargin"] | CssVars | AnyString> | undefined;
|
|
974
|
-
scrollSnapMarginTop?: ConditionalValue< UtilityValues["scrollSnapMarginTop"] | CssVars | AnyString> | undefined;
|
|
975
|
-
scrollSnapMarginBottom?: ConditionalValue< UtilityValues["scrollSnapMarginBottom"] | CssVars | AnyString> | undefined;
|
|
976
|
-
scrollSnapMarginLeft?: ConditionalValue< UtilityValues["scrollSnapMarginLeft"] | CssVars | AnyString> | undefined;
|
|
977
|
-
scrollSnapMarginRight?: ConditionalValue< UtilityValues["scrollSnapMarginRight"] | CssVars | AnyString> | undefined;
|
|
978
|
-
srOnly?: ConditionalValue< UtilityValues["srOnly"] | CssVars | AnyString> | undefined;
|
|
979
|
-
debug?: ConditionalValue< UtilityValues["debug"] | CssVars | AnyString> | undefined;
|
|
980
|
-
mxi?: ConditionalValue< UtilityValues["mxi"] | CssVars | AnyString> | undefined;
|
|
981
|
-
pxi?: ConditionalValue< UtilityValues["pxi"] | CssVars | AnyString> | undefined;
|
|
982
|
-
size?: ConditionalValue<string | number | AnyString> | undefined;
|
|
983
|
-
gradient?: ConditionalValue< UtilityValues["gradient"] | CssVars | AnyString> | undefined;
|
|
984
|
-
borderGradient?: ConditionalValue< UtilityValues["borderGradient"] | CssVars | AnyString> | undefined;
|
|
985
|
-
colorPalette?: ConditionalValue< UtilityValues["colorPalette"] | CssVars | AnyString> | undefined;
|
|
986
|
-
textStyle?: ConditionalValue< UtilityValues["textStyle"] | CssVars | AnyString> | undefined;
|
|
987
|
-
animationStyle?: ConditionalValue< UtilityValues["animationStyle"] | CssVars | AnyString> | undefined;
|
|
988
|
-
css?: ( SystemStyleObject | SystemStyleObject[]) | undefined;
|
|
989
|
-
})>): import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
(internalProps: CerberusPrimitiveProps< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>>): import("react/jsx-runtime").JSX.Element;
|
|
990
39
|
displayName: string;
|
|
991
40
|
};
|