@transcodes/design-tokens 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,187 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root, [data-theme="light"] {
6
+ --duration-instant: 150ms; /** Instant feedback for micro-interactions */
7
+ --duration-fast: 300ms; /** Fast transitions for hover/focus states */
8
+ --duration-smooth: 400ms; /** Smooth transitions for modals/overlays */
9
+ --duration-slow: 600ms; /** Slow transitions for page animations */
10
+ --duration-slower: 800ms; /** Slower transitions for complex animations */
11
+ --easing-ease: ease; /** Default easing function */
12
+ --easing-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); /** Smooth ease-in-out for transitions */
13
+ --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /** Bounce effect for playful interactions */
14
+ --ink-effect-ripple-duration: 600ms;
15
+ --ink-effect-ripple-easing: cubic-bezier(0.4, 0, 0.2, 1);
16
+ --ink-effect-spread-scale: 2.5;
17
+ --ink-effect-fade-duration: 300ms;
18
+ --transition-fast: 150ms ease;
19
+ --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
20
+ --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
21
+ --opacity-disabled: 0.6; /** Disabled state opacity - WCAG 1.4.3 minimum */
22
+ --opacity-hover: 0.7; /** Hover state for interactive elements */
23
+ --opacity-loading: 0.6; /** Loading pulse animation minimum opacity */
24
+ --opacity-hidden: 0; /** Fully transparent/hidden state */
25
+ --opacity-visible: 1; /** Fully visible state */
26
+ --brand-primary: #7c5cff; /** Transcodes primary brand color */
27
+ --brand-primary-hover: #6a4ae8;
28
+ --brand-logo-text: #1a1a1a;
29
+ --accent-primary: #6b4fd9; /** Primary accent. WCAG AA: 4.5:1 on paper-white */
30
+ --accent-primary-hover: #5a3fc8; /** Primary accent hover. WCAG AA: 5.2:1 on paper-white */
31
+ --accent-primary-pressed: #4a32b0; /** Primary accent pressed. WCAG AA: 6.5:1 on paper-white */
32
+ --accent-success: #357a46; /** Success accent. WCAG AA: 4.8:1 on paper-white */
33
+ --accent-success-hover: #2d6a3c; /** Success accent hover. WCAG AA: 5.6:1 on paper-white */
34
+ --accent-success-pressed: #255a32; /** Success accent pressed. WCAG AA: 6.8:1 on paper-white */
35
+ --alpha-primary04: rgba(124, 92, 255, 0.04);
36
+ --alpha-primary08: rgba(124, 92, 255, 0.08);
37
+ --alpha-primary10: rgba(124, 92, 255, 0.1);
38
+ --alpha-primary12: rgba(124, 92, 255, 0.12);
39
+ --alpha-primary15: rgba(124, 92, 255, 0.15);
40
+ --alpha-primary20: rgba(124, 92, 255, 0.2);
41
+ --alpha-primary30: rgba(124, 92, 255, 0.3);
42
+ --alpha-primary40: rgba(124, 92, 255, 0.4);
43
+ --alpha-primary50: rgba(124, 92, 255, 0.5);
44
+ --alpha-success10: rgba(61, 138, 80, 0.1);
45
+ --alpha-success15: rgba(61, 138, 80, 0.15);
46
+ --alpha-success20: rgba(61, 138, 80, 0.2);
47
+ --alpha-success30: rgba(61, 138, 80, 0.3);
48
+ --alpha-warning08: rgba(180, 83, 9, 0.08);
49
+ --alpha-warning15: rgba(180, 83, 9, 0.15);
50
+ --alpha-warning20: rgba(180, 83, 9, 0.2);
51
+ --alpha-info08: rgba(3, 105, 161, 0.08);
52
+ --alpha-info15: rgba(3, 105, 161, 0.15);
53
+ --alpha-info20: rgba(3, 105, 161, 0.2);
54
+ --alpha-ink04: rgba(26, 26, 26, 0.04);
55
+ --alpha-ink06: rgba(26, 26, 26, 0.06);
56
+ --alpha-ink10: rgba(26, 26, 26, 0.1);
57
+ --alpha-white15: rgba(255, 255, 255, 0.15);
58
+ --alpha-white30: rgba(255, 255, 255, 0.3);
59
+ --alpha-white90: rgba(255, 255, 255, 0.9);
60
+ --error-base: #c0392b; /** Error state. WCAG AA: 4.8:1 on paper-white */
61
+ --error-bg: rgba(231, 76, 60, 0.08); /** Error background. Decorative, not for text */
62
+ --error-border: rgba(231, 76, 60, 0.2); /** Error border. Decorative, not for text */
63
+ --ink-black: #1a1a1a; /** Primary text. WCAG AA: 15.8:1 on paper-white */
64
+ --ink-dark: #2d2d2d; /** Secondary text. WCAG AA: 12.5:1 on paper-white */
65
+ --ink-medium: #5c5c5c; /** Tertiary text. WCAG AA: 6.0:1 on paper-white */
66
+ --ink-light: #8a8a8a; /** Placeholder, disabled text. Contrast: 3.5:1 (meets 3:1 minimum) */
67
+ --ink-faint: #c4c4c4; /** Decorative only. NOT for readable text. Contrast: 1.7:1 */
68
+ --overlay-dim: rgba(0, 0, 0, 0.5); /** Modal/dialog overlay background */
69
+ --overlay-dark: rgba(0, 0, 0, 0.7); /** Darker overlay for critical modals (offline, error states) */
70
+ --overlay-shadow-light: rgba(0, 0, 0, 0.1); /** Light shadow for subtle elevation */
71
+ --overlay-shadow-subtle: rgba(0, 0, 0, 0.15); /** Subtle shadow for toasts and banners */
72
+ --overlay-shadow-medium: rgba(0, 0, 0, 0.2); /** Medium shadow for cards and dropdowns */
73
+ --overlay-shadow-strong: rgba(0, 0, 0, 0.3); /** Strong shadow for modals and floating elements */
74
+ --overlay-shadow-heavy: rgba(0, 0, 0, 0.4); /** Heavy shadow for prominent floating elements */
75
+ --overlay-glow-white: rgba(255, 255, 255, 0.15); /** Button radial glow overlay effect */
76
+ --overlay-spinner-track: rgba(255, 255, 255, 0.3); /** Spinner base track color on dark backgrounds */
77
+ --paper-white: #faf9fc;
78
+ --paper-cream: #f5f4f8;
79
+ --paper-warm: #ebe9f0;
80
+ --semantic-warning: #b45309; /** Warning state. WCAG AA: 4.6:1 on paper-white */
81
+ --semantic-warning-hover: #92400e; /** Warning hover. WCAG AA: 5.8:1 on paper-white */
82
+ --semantic-info: #0369a1; /** Info state. WCAG AA: 4.8:1 on paper-white */
83
+ --semantic-info-hover: #075985; /** Info hover. WCAG AA: 5.8:1 on paper-white */
84
+ --button-height: 3.25rem;
85
+ --button-height-secondary: 3rem;
86
+ --button-radius: 0.625rem;
87
+ --button-font-size: 0.9375rem;
88
+ --button-font-weight: 500;
89
+ --button-letter-spacing: 0.02em;
90
+ --button-text-height: 2.5rem; /** Text button height */
91
+ --button-text-font-size: 0.875rem; /** Text button font size */
92
+ --button-spinner-size: 1rem; /** Loading spinner size */
93
+ --button-spinner-border-width: 2px; /** Spinner border width */
94
+ --container-max-width: 25rem;
95
+ --container-max-width-wide: 26.25rem;
96
+ --feedback-error-icon-size: 1rem; /** Error icon size */
97
+ --feedback-notice-icon-size: 1.25rem; /** Notice icon size */
98
+ --input-padding-y: 0.875rem;
99
+ --input-padding-x: 1rem;
100
+ --input-radius: 0.625rem;
101
+ --input-font-size: 1rem;
102
+ --label-font-size: 0.75rem;
103
+ --label-font-weight: 500;
104
+ --label-letter-spacing: 0.08em;
105
+ --title-font-size: clamp(1.375rem, 1.27rem + 0.54vw, 1.75rem);
106
+ --title-font-weight: 600;
107
+ --title-letter-spacing: -0.02em;
108
+ --form-subtitle-font-size: 0.9375rem; /** Form subtitle font size */
109
+ --page-container-max-width: 25rem; /** Default page container max width (400px) */
110
+ --page-container-max-width-wide: 26.25rem; /** Wide page container max width (420px) */
111
+ --radius-sm: 0.5rem;
112
+ --radius-md: 0.625rem;
113
+ --radius-lg: 0.75rem;
114
+ --radius-full: 9999px;
115
+ --radius-card: clamp(0.75rem, 0.59rem + 0.78vw, 1rem);
116
+ --shadow-card: 0 0.0625rem 0.1875rem rgba(26, 26, 26, 0.04), 0 0.375rem 1rem rgba(26, 26, 26, 0.06), 0 1.5rem 3rem rgba(26, 26, 26, 0.06);
117
+ --shadow-button-hover-primary: 0 0.25rem 0.75rem rgba(124, 92, 255, 0.3), 0 0.125rem 0.25rem rgba(124, 92, 255, 0.2);
118
+ --shadow-button-hover-success: 0 0.25rem 0.75rem rgba(61, 138, 80, 0.3), 0 0.125rem 0.25rem rgba(61, 138, 80, 0.2);
119
+ --shadow-input-focus: 0 0 0 0.1875rem rgba(124, 92, 255, 0.12), inset 0 0.0625rem 0.125rem rgba(26, 26, 26, 0.04);
120
+ --shadow-overlay: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
121
+ --shadow-modal: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
122
+ --shadow-otp-cell-focus: 0 0 0 0.25rem rgba(124, 92, 255, 0.1);
123
+ --breakpoint-sm: 640px;
124
+ --breakpoint-md: 768px;
125
+ --breakpoint-lg: 1024px;
126
+ --breakpoint-xl: 1280px;
127
+ --z-index-dropdown: 1000;
128
+ --z-index-sticky: 1020;
129
+ --z-index-fixed: 1030;
130
+ --z-index-modal-backdrop: 1040;
131
+ --z-index-modal: 1050;
132
+ --z-index-popover: 1060;
133
+ --z-index-tooltip: 1070;
134
+ --size-icon-sm: 1rem; /** Small icon size (16px) */
135
+ --size-icon-md: 1.5rem; /** Medium icon size (24px) */
136
+ --size-icon-lg: 2rem; /** Large icon size (32px) */
137
+ --size-icon-xl: 2.5rem; /** Extra large icon size (40px) */
138
+ --size-spinner-sm: 1rem; /** Small spinner (16px) */
139
+ --size-spinner-md: 2rem; /** Medium spinner (32px) */
140
+ --size-spinner-lg: 4rem; /** Large spinner (64px) */
141
+ --size-spinner-button: 1.125rem; /** Spinner size inside buttons (18px) */
142
+ --size-border-width-thin: 0.0625rem; /** Thin border (1px) */
143
+ --size-border-width-base: 0.09375rem; /** Base border (1.5px) */
144
+ --size-border-width-thick: 0.125rem; /** Thick border (2px) */
145
+ --size-border-width-heavy: 0.1875rem; /** Heavy border (3px) */
146
+ --size-border-width-bold: 0.25rem; /** Bold border (4px) */
147
+ --size-chip-padding-sm: 0.125rem 0.5rem; /** Small chip padding */
148
+ --size-chip-padding-md: 0.25rem 0.75rem; /** Medium chip padding */
149
+ --size-close-button: 2rem; /** Close button size (32px) */
150
+ --space-fixed-2xs: 0.0625rem; /** 1px - border, hairline */
151
+ --space-fixed-xs: 0.125rem; /** 2px - focus ring */
152
+ --space-fixed-sm: 0.25rem; /** 4px - small gap */
153
+ --space-fixed-md: 0.5rem; /** 8px - standard gap */
154
+ --space-xs: clamp(0.25rem, 0.23rem + 0.11vw, 0.3125rem);
155
+ --space-sm: clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem);
156
+ --space-md: clamp(0.875rem, 0.77rem + 0.54vw, 1.25rem);
157
+ --space-lg: clamp(1.25rem, 1.03rem + 1.09vw, 2rem);
158
+ --space-xl: clamp(1.5rem, 1.15rem + 1.74vw, 2.75rem);
159
+ --space-2xl: clamp(2rem, 1.35rem + 3.26vw, 4.5rem);
160
+ --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
161
+ --font-size-sm: clamp(0.8125rem, 0.78rem + 0.16vw, 0.9375rem);
162
+ --font-size-base: clamp(0.875rem, 0.83rem + 0.22vw, 1rem);
163
+ --font-size-lg: clamp(1rem, 0.93rem + 0.33vw, 1.25rem);
164
+ --font-size-xl: clamp(1.25rem, 1.14rem + 0.54vw, 1.5rem);
165
+ --font-size-2xl: clamp(1.5rem, 1.35rem + 0.76vw, 1.875rem);
166
+ --line-height-tight: 1.25;
167
+ --line-height-normal: 1.5;
168
+ --line-height-relaxed: 1.75;
169
+ --button-text-padding-sm: var(--space-xs) var(--space-sm); /** Small text button padding */
170
+ --button-text-padding-md: var(--space-sm) var(--space-md); /** Medium text button padding */
171
+ --button-content-gap: var(--space-sm); /** Gap between button icon and text */
172
+ --card-padding: var(--space-lg);
173
+ --card-radius: var(--radius-card);
174
+ --feedback-error-padding: var(--space-md); /** Error message padding */
175
+ --feedback-error-radius: var(--radius-md); /** Error message border radius */
176
+ --feedback-error-gap: var(--space-sm); /** Gap between error icon and text */
177
+ --feedback-notice-padding: var(--space-md); /** Notice box padding */
178
+ --feedback-notice-radius: var(--radius-md); /** Notice box border radius */
179
+ --feedback-notice-gap: var(--space-sm); /** Gap between notice icon and text */
180
+ --form-header-margin-bottom: var(--space-xl); /** Space below form header */
181
+ --form-fields-gap: var(--space-lg); /** Gap between form fields */
182
+ --form-footer-margin-top: var(--space-lg); /** Space above form footer */
183
+ --field-group-gap: var(--space-sm); /** Gap between label and input in field group */
184
+ --page-container-padding: var(--space-lg); /** Page container horizontal padding */
185
+ --page-card-padding: var(--space-xl); /** Page card internal padding */
186
+ --page-card-radius: var(--radius-lg); /** Page card border radius */
187
+ }
@@ -0,0 +1,271 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ /** Instant feedback for micro-interactions */
6
+ export const durationInstant: string;
7
+ /** Fast transitions for hover/focus states */
8
+ export const durationFast: string;
9
+ /** Smooth transitions for modals/overlays */
10
+ export const durationSmooth: string;
11
+ /** Slow transitions for page animations */
12
+ export const durationSlow: string;
13
+ /** Slower transitions for complex animations */
14
+ export const durationSlower: string;
15
+ /** Default easing function */
16
+ export const easingEase: string;
17
+ /** Smooth ease-in-out for transitions */
18
+ export const easingEaseInOut: string;
19
+ /** Bounce effect for playful interactions */
20
+ export const easingBounce: string;
21
+ export const inkEffectRippleDuration: string;
22
+ export const inkEffectRippleEasing: string;
23
+ export const inkEffectSpreadScale: string;
24
+ export const inkEffectFadeDuration: string;
25
+ export const transitionFast: string;
26
+ export const transitionSmooth: string;
27
+ export const transitionBounce: string;
28
+ /** Disabled state opacity - WCAG 1.4.3 minimum */
29
+ export const opacityDisabled: string;
30
+ /** Hover state for interactive elements */
31
+ export const opacityHover: string;
32
+ /** Loading pulse animation minimum opacity */
33
+ export const opacityLoading: string;
34
+ /** Fully transparent/hidden state */
35
+ export const opacityHidden: string;
36
+ /** Fully visible state */
37
+ export const opacityVisible: string;
38
+ /** Transcodes primary brand color */
39
+ export const brandPrimary: string;
40
+ export const brandPrimaryHover: string;
41
+ export const brandLogoText: string;
42
+ /** Primary accent. WCAG AA: 4.5:1 on paper-white */
43
+ export const accentPrimary: string;
44
+ /** Primary accent hover. WCAG AA: 5.2:1 on paper-white */
45
+ export const accentPrimaryHover: string;
46
+ /** Primary accent pressed. WCAG AA: 6.5:1 on paper-white */
47
+ export const accentPrimaryPressed: string;
48
+ /** Success accent. WCAG AA: 4.8:1 on paper-white */
49
+ export const accentSuccess: string;
50
+ /** Success accent hover. WCAG AA: 5.6:1 on paper-white */
51
+ export const accentSuccessHover: string;
52
+ /** Success accent pressed. WCAG AA: 6.8:1 on paper-white */
53
+ export const accentSuccessPressed: string;
54
+ export const alphaPrimary04: string;
55
+ export const alphaPrimary08: string;
56
+ export const alphaPrimary10: string;
57
+ export const alphaPrimary12: string;
58
+ export const alphaPrimary15: string;
59
+ export const alphaPrimary20: string;
60
+ export const alphaPrimary30: string;
61
+ export const alphaPrimary40: string;
62
+ export const alphaPrimary50: string;
63
+ export const alphaSuccess10: string;
64
+ export const alphaSuccess15: string;
65
+ export const alphaSuccess20: string;
66
+ export const alphaSuccess30: string;
67
+ export const alphaWarning08: string;
68
+ export const alphaWarning15: string;
69
+ export const alphaWarning20: string;
70
+ export const alphaInfo08: string;
71
+ export const alphaInfo15: string;
72
+ export const alphaInfo20: string;
73
+ export const alphaInk04: string;
74
+ export const alphaInk06: string;
75
+ export const alphaInk10: string;
76
+ export const alphaWhite15: string;
77
+ export const alphaWhite30: string;
78
+ export const alphaWhite90: string;
79
+ /** Error state. WCAG AA: 4.8:1 on paper-white */
80
+ export const errorBase: string;
81
+ /** Error background. Decorative, not for text */
82
+ export const errorBg: string;
83
+ /** Error border. Decorative, not for text */
84
+ export const errorBorder: string;
85
+ /** Primary text. WCAG AA: 15.8:1 on paper-white */
86
+ export const inkBlack: string;
87
+ /** Secondary text. WCAG AA: 12.5:1 on paper-white */
88
+ export const inkDark: string;
89
+ /** Tertiary text. WCAG AA: 6.0:1 on paper-white */
90
+ export const inkMedium: string;
91
+ /** Placeholder, disabled text. Contrast: 3.5:1 (meets 3:1 minimum) */
92
+ export const inkLight: string;
93
+ /** Decorative only. NOT for readable text. Contrast: 1.7:1 */
94
+ export const inkFaint: string;
95
+ /** Modal/dialog overlay background */
96
+ export const overlayDim: string;
97
+ /** Darker overlay for critical modals (offline, error states) */
98
+ export const overlayDark: string;
99
+ /** Light shadow for subtle elevation */
100
+ export const overlayShadowLight: string;
101
+ /** Subtle shadow for toasts and banners */
102
+ export const overlayShadowSubtle: string;
103
+ /** Medium shadow for cards and dropdowns */
104
+ export const overlayShadowMedium: string;
105
+ /** Strong shadow for modals and floating elements */
106
+ export const overlayShadowStrong: string;
107
+ /** Heavy shadow for prominent floating elements */
108
+ export const overlayShadowHeavy: string;
109
+ /** Button radial glow overlay effect */
110
+ export const overlayGlowWhite: string;
111
+ /** Spinner base track color on dark backgrounds */
112
+ export const overlaySpinnerTrack: string;
113
+ export const paperWhite: string;
114
+ export const paperCream: string;
115
+ export const paperWarm: string;
116
+ /** Warning state. WCAG AA: 4.6:1 on paper-white */
117
+ export const semanticWarning: string;
118
+ /** Warning hover. WCAG AA: 5.8:1 on paper-white */
119
+ export const semanticWarningHover: string;
120
+ /** Info state. WCAG AA: 4.8:1 on paper-white */
121
+ export const semanticInfo: string;
122
+ /** Info hover. WCAG AA: 5.8:1 on paper-white */
123
+ export const semanticInfoHover: string;
124
+ export const buttonHeight: string;
125
+ export const buttonHeightSecondary: string;
126
+ export const buttonRadius: string;
127
+ export const buttonFontSize: string;
128
+ export const buttonFontWeight: string;
129
+ export const buttonLetterSpacing: string;
130
+ /** Text button height */
131
+ export const buttonTextHeight: string;
132
+ /** Text button font size */
133
+ export const buttonTextFontSize: string;
134
+ /** Small text button padding */
135
+ export const buttonTextPaddingSm: string;
136
+ /** Medium text button padding */
137
+ export const buttonTextPaddingMd: string;
138
+ /** Gap between button icon and text */
139
+ export const buttonContentGap: string;
140
+ /** Loading spinner size */
141
+ export const buttonSpinnerSize: string;
142
+ /** Spinner border width */
143
+ export const buttonSpinnerBorderWidth: string;
144
+ export const cardPadding: string;
145
+ export const cardRadius: string;
146
+ export const containerMaxWidth: string;
147
+ export const containerMaxWidthWide: string;
148
+ /** Error message padding */
149
+ export const feedbackErrorPadding: string;
150
+ /** Error message border radius */
151
+ export const feedbackErrorRadius: string;
152
+ /** Gap between error icon and text */
153
+ export const feedbackErrorGap: string;
154
+ /** Error icon size */
155
+ export const feedbackErrorIconSize: string;
156
+ /** Notice box padding */
157
+ export const feedbackNoticePadding: string;
158
+ /** Notice box border radius */
159
+ export const feedbackNoticeRadius: string;
160
+ /** Gap between notice icon and text */
161
+ export const feedbackNoticeGap: string;
162
+ /** Notice icon size */
163
+ export const feedbackNoticeIconSize: string;
164
+ export const inputPaddingY: string;
165
+ export const inputPaddingX: string;
166
+ export const inputRadius: string;
167
+ export const inputFontSize: string;
168
+ export const labelFontSize: string;
169
+ export const labelFontWeight: string;
170
+ export const labelLetterSpacing: string;
171
+ export const titleFontSize: string;
172
+ export const titleFontWeight: string;
173
+ export const titleLetterSpacing: string;
174
+ /** Space below form header */
175
+ export const formHeaderMarginBottom: string;
176
+ /** Form subtitle font size */
177
+ export const formSubtitleFontSize: string;
178
+ /** Gap between form fields */
179
+ export const formFieldsGap: string;
180
+ /** Space above form footer */
181
+ export const formFooterMarginTop: string;
182
+ /** Gap between label and input in field group */
183
+ export const fieldGroupGap: string;
184
+ /** Default page container max width (400px) */
185
+ export const pageContainerMaxWidth: string;
186
+ /** Wide page container max width (420px) */
187
+ export const pageContainerMaxWidthWide: string;
188
+ /** Page container horizontal padding */
189
+ export const pageContainerPadding: string;
190
+ /** Page card internal padding */
191
+ export const pageCardPadding: string;
192
+ /** Page card border radius */
193
+ export const pageCardRadius: string;
194
+ export const radiusSm: string;
195
+ export const radiusMd: string;
196
+ export const radiusLg: string;
197
+ export const radiusFull: string;
198
+ export const radiusCard: string;
199
+ export const shadowCard: string;
200
+ export const shadowButtonHoverPrimary: string;
201
+ export const shadowButtonHoverSuccess: string;
202
+ export const shadowInputFocus: string;
203
+ export const shadowOverlay: string;
204
+ export const shadowModal: string;
205
+ export const shadowOtpCellFocus: string;
206
+ export const breakpointSm: string;
207
+ export const breakpointMd: string;
208
+ export const breakpointLg: string;
209
+ export const breakpointXl: string;
210
+ export const zIndexDropdown: string;
211
+ export const zIndexSticky: string;
212
+ export const zIndexFixed: string;
213
+ export const zIndexModalBackdrop: string;
214
+ export const zIndexModal: string;
215
+ export const zIndexPopover: string;
216
+ export const zIndexTooltip: string;
217
+ /** Small icon size (16px) */
218
+ export const sizeIconSm: string;
219
+ /** Medium icon size (24px) */
220
+ export const sizeIconMd: string;
221
+ /** Large icon size (32px) */
222
+ export const sizeIconLg: string;
223
+ /** Extra large icon size (40px) */
224
+ export const sizeIconXl: string;
225
+ /** Small spinner (16px) */
226
+ export const sizeSpinnerSm: string;
227
+ /** Medium spinner (32px) */
228
+ export const sizeSpinnerMd: string;
229
+ /** Large spinner (64px) */
230
+ export const sizeSpinnerLg: string;
231
+ /** Spinner size inside buttons (18px) */
232
+ export const sizeSpinnerButton: string;
233
+ /** Thin border (1px) */
234
+ export const sizeBorderWidthThin: string;
235
+ /** Base border (1.5px) */
236
+ export const sizeBorderWidthBase: string;
237
+ /** Thick border (2px) */
238
+ export const sizeBorderWidthThick: string;
239
+ /** Heavy border (3px) */
240
+ export const sizeBorderWidthHeavy: string;
241
+ /** Bold border (4px) */
242
+ export const sizeBorderWidthBold: string;
243
+ /** Small chip padding */
244
+ export const sizeChipPaddingSm: string;
245
+ /** Medium chip padding */
246
+ export const sizeChipPaddingMd: string;
247
+ /** Close button size (32px) */
248
+ export const sizeCloseButton: string;
249
+ /** 1px - border, hairline */
250
+ export const spaceFixed2xs: string;
251
+ /** 2px - focus ring */
252
+ export const spaceFixedXs: string;
253
+ /** 4px - small gap */
254
+ export const spaceFixedSm: string;
255
+ /** 8px - standard gap */
256
+ export const spaceFixedMd: string;
257
+ export const spaceXs: string;
258
+ export const spaceSm: string;
259
+ export const spaceMd: string;
260
+ export const spaceLg: string;
261
+ export const spaceXl: string;
262
+ export const space2xl: string;
263
+ export const fontBody: string;
264
+ export const fontSizeSm: string;
265
+ export const fontSizeBase: string;
266
+ export const fontSizeLg: string;
267
+ export const fontSizeXl: string;
268
+ export const fontSize2xl: string;
269
+ export const lineHeightTight: string;
270
+ export const lineHeightNormal: string;
271
+ export const lineHeightRelaxed: string;
@@ -0,0 +1,183 @@
1
+ {
2
+ "DurationInstant": "150ms",
3
+ "DurationFast": "300ms",
4
+ "DurationSmooth": "400ms",
5
+ "DurationSlow": "600ms",
6
+ "DurationSlower": "800ms",
7
+ "EasingEase": "ease",
8
+ "EasingEaseInOut": "cubic-bezier(0.4, 0, 0.2, 1)",
9
+ "EasingBounce": "cubic-bezier(0.34, 1.56, 0.64, 1)",
10
+ "InkEffectRippleDuration": "600ms",
11
+ "InkEffectRippleEasing": "cubic-bezier(0.4, 0, 0.2, 1)",
12
+ "InkEffectSpreadScale": "2.5",
13
+ "InkEffectFadeDuration": "300ms",
14
+ "TransitionFast": "150ms ease",
15
+ "TransitionSmooth": "300ms cubic-bezier(0.4, 0, 0.2, 1)",
16
+ "TransitionBounce": "400ms cubic-bezier(0.34, 1.56, 0.64, 1)",
17
+ "OpacityDisabled": "0.6",
18
+ "OpacityHover": "0.7",
19
+ "OpacityLoading": "0.6",
20
+ "OpacityHidden": "0",
21
+ "OpacityVisible": "1",
22
+ "BrandPrimary": "#7c5cff",
23
+ "BrandPrimaryHover": "#6a4ae8",
24
+ "BrandLogoText": "#1a1a1a",
25
+ "AccentPrimary": "#6b4fd9",
26
+ "AccentPrimaryHover": "#5a3fc8",
27
+ "AccentPrimaryPressed": "#4a32b0",
28
+ "AccentSuccess": "#357a46",
29
+ "AccentSuccessHover": "#2d6a3c",
30
+ "AccentSuccessPressed": "#255a32",
31
+ "AlphaPrimary04": "#7c5cff0a",
32
+ "AlphaPrimary08": "#7c5cff14",
33
+ "AlphaPrimary10": "#7c5cff1a",
34
+ "AlphaPrimary12": "#7c5cff1f",
35
+ "AlphaPrimary15": "#7c5cff26",
36
+ "AlphaPrimary20": "#7c5cff33",
37
+ "AlphaPrimary30": "#7c5cff4d",
38
+ "AlphaPrimary40": "#7c5cff66",
39
+ "AlphaPrimary50": "#7c5cff80",
40
+ "AlphaSuccess10": "#3d8a501a",
41
+ "AlphaSuccess15": "#3d8a5026",
42
+ "AlphaSuccess20": "#3d8a5033",
43
+ "AlphaSuccess30": "#3d8a504d",
44
+ "AlphaWarning08": "#b4530914",
45
+ "AlphaWarning15": "#b4530926",
46
+ "AlphaWarning20": "#b4530933",
47
+ "AlphaInfo08": "#0369a114",
48
+ "AlphaInfo15": "#0369a126",
49
+ "AlphaInfo20": "#0369a133",
50
+ "AlphaInk04": "#1a1a1a0a",
51
+ "AlphaInk06": "#1a1a1a0f",
52
+ "AlphaInk10": "#1a1a1a1a",
53
+ "AlphaWhite15": "#ffffff26",
54
+ "AlphaWhite30": "#ffffff4d",
55
+ "AlphaWhite90": "#ffffffe6",
56
+ "ErrorBase": "#c0392b",
57
+ "ErrorBg": "#e74c3c14",
58
+ "ErrorBorder": "#e74c3c33",
59
+ "InkBlack": "#1a1a1a",
60
+ "InkDark": "#2d2d2d",
61
+ "InkMedium": "#5c5c5c",
62
+ "InkLight": "#8a8a8a",
63
+ "InkFaint": "#c4c4c4",
64
+ "OverlayDim": "#00000080",
65
+ "OverlayDark": "#000000b3",
66
+ "OverlayShadowLight": "#0000001a",
67
+ "OverlayShadowSubtle": "#00000026",
68
+ "OverlayShadowMedium": "#00000033",
69
+ "OverlayShadowStrong": "#0000004d",
70
+ "OverlayShadowHeavy": "#00000066",
71
+ "OverlayGlowWhite": "#ffffff26",
72
+ "OverlaySpinnerTrack": "#ffffff4d",
73
+ "PaperWhite": "#faf9fc",
74
+ "PaperCream": "#f5f4f8",
75
+ "PaperWarm": "#ebe9f0",
76
+ "SemanticWarning": "#b45309",
77
+ "SemanticWarningHover": "#92400e",
78
+ "SemanticInfo": "#0369a1",
79
+ "SemanticInfoHover": "#075985",
80
+ "ButtonHeight": "3.25rem",
81
+ "ButtonHeightSecondary": "3rem",
82
+ "ButtonRadius": "0.625rem",
83
+ "ButtonFontSize": "0.9375rem",
84
+ "ButtonFontWeight": "500",
85
+ "ButtonLetterSpacing": "0.02em",
86
+ "ButtonTextHeight": "2.5rem",
87
+ "ButtonTextFontSize": "0.875rem",
88
+ "ButtonTextPaddingSm": "clamp(0.25rem, 0.23rem + 0.11vw, 0.3125rem) clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
89
+ "ButtonTextPaddingMd": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem) clamp(0.875rem, 0.77rem + 0.54vw, 1.25rem)",
90
+ "ButtonContentGap": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
91
+ "ButtonSpinnerSize": "1rem",
92
+ "ButtonSpinnerBorderWidth": "2px",
93
+ "CardPadding": "clamp(1.25rem, 1.03rem + 1.09vw, 2rem)",
94
+ "CardRadius": "clamp(0.75rem, 0.59rem + 0.78vw, 1rem)",
95
+ "ContainerMaxWidth": "25rem",
96
+ "ContainerMaxWidthWide": "26.25rem",
97
+ "FeedbackErrorPadding": "clamp(0.875rem, 0.77rem + 0.54vw, 1.25rem)",
98
+ "FeedbackErrorRadius": "0.625rem",
99
+ "FeedbackErrorGap": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
100
+ "FeedbackErrorIconSize": "1rem",
101
+ "FeedbackNoticePadding": "clamp(0.875rem, 0.77rem + 0.54vw, 1.25rem)",
102
+ "FeedbackNoticeRadius": "0.625rem",
103
+ "FeedbackNoticeGap": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
104
+ "FeedbackNoticeIconSize": "1.25rem",
105
+ "InputPaddingY": "0.875rem",
106
+ "InputPaddingX": "1rem",
107
+ "InputRadius": "0.625rem",
108
+ "InputFontSize": "1rem",
109
+ "LabelFontSize": "0.75rem",
110
+ "LabelFontWeight": "500",
111
+ "LabelLetterSpacing": "0.08em",
112
+ "TitleFontSize": "clamp(1.375rem, 1.27rem + 0.54vw, 1.75rem)",
113
+ "TitleFontWeight": "600",
114
+ "TitleLetterSpacing": "-0.02em",
115
+ "FormHeaderMarginBottom": "clamp(1.5rem, 1.15rem + 1.74vw, 2.75rem)",
116
+ "FormSubtitleFontSize": "0.9375rem",
117
+ "FormFieldsGap": "clamp(1.25rem, 1.03rem + 1.09vw, 2rem)",
118
+ "FormFooterMarginTop": "clamp(1.25rem, 1.03rem + 1.09vw, 2rem)",
119
+ "FieldGroupGap": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
120
+ "PageContainerMaxWidth": "25rem",
121
+ "PageContainerMaxWidthWide": "26.25rem",
122
+ "PageContainerPadding": "clamp(1.25rem, 1.03rem + 1.09vw, 2rem)",
123
+ "PageCardPadding": "clamp(1.5rem, 1.15rem + 1.74vw, 2.75rem)",
124
+ "PageCardRadius": "0.75rem",
125
+ "RadiusSm": "0.5rem",
126
+ "RadiusMd": "0.625rem",
127
+ "RadiusLg": "0.75rem",
128
+ "RadiusFull": "9999px",
129
+ "RadiusCard": "clamp(0.75rem, 0.59rem + 0.78vw, 1rem)",
130
+ "ShadowCard": "0 0.0625rem 0.1875rem rgba(26, 26, 26, 0.04), 0 0.375rem 1rem rgba(26, 26, 26, 0.06), 0 1.5rem 3rem rgba(26, 26, 26, 0.06)",
131
+ "ShadowButtonHoverPrimary": "0 0.25rem 0.75rem rgba(124, 92, 255, 0.3), 0 0.125rem 0.25rem rgba(124, 92, 255, 0.2)",
132
+ "ShadowButtonHoverSuccess": "0 0.25rem 0.75rem rgba(61, 138, 80, 0.3), 0 0.125rem 0.25rem rgba(61, 138, 80, 0.2)",
133
+ "ShadowInputFocus": "0 0 0 0.1875rem rgba(124, 92, 255, 0.12), inset 0 0.0625rem 0.125rem rgba(26, 26, 26, 0.04)",
134
+ "ShadowOverlay": "0 0.25rem 0.5rem rgba(0, 0, 0, 0.1)",
135
+ "ShadowModal": "0 1.5rem 3rem rgba(0, 0, 0, 0.15)",
136
+ "ShadowOtpCellFocus": "0 0 0 0.25rem rgba(124, 92, 255, 0.1)",
137
+ "BreakpointSm": "640px",
138
+ "BreakpointMd": "768px",
139
+ "BreakpointLg": "1024px",
140
+ "BreakpointXl": "1280px",
141
+ "ZIndexDropdown": "1000",
142
+ "ZIndexSticky": "1020",
143
+ "ZIndexFixed": "1030",
144
+ "ZIndexModalBackdrop": "1040",
145
+ "ZIndexModal": "1050",
146
+ "ZIndexPopover": "1060",
147
+ "ZIndexTooltip": "1070",
148
+ "SizeIconSm": "1rem",
149
+ "SizeIconMd": "1.5rem",
150
+ "SizeIconLg": "2rem",
151
+ "SizeIconXl": "2.5rem",
152
+ "SizeSpinnerSm": "1rem",
153
+ "SizeSpinnerMd": "2rem",
154
+ "SizeSpinnerLg": "4rem",
155
+ "SizeSpinnerButton": "1.125rem",
156
+ "SizeBorderWidthThin": "0.0625rem",
157
+ "SizeBorderWidthBase": "0.09375rem",
158
+ "SizeBorderWidthThick": "0.125rem",
159
+ "SizeBorderWidthHeavy": "0.1875rem",
160
+ "SizeBorderWidthBold": "0.25rem",
161
+ "SizeChipPaddingSm": "0.125rem 0.5rem",
162
+ "SizeChipPaddingMd": "0.25rem 0.75rem",
163
+ "SizeCloseButton": "2rem",
164
+ "SpaceFixed2xs": "0.0625rem",
165
+ "SpaceFixedXs": "0.125rem",
166
+ "SpaceFixedSm": "0.25rem",
167
+ "SpaceFixedMd": "0.5rem",
168
+ "SpaceXs": "clamp(0.25rem, 0.23rem + 0.11vw, 0.3125rem)",
169
+ "SpaceSm": "clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem)",
170
+ "SpaceMd": "clamp(0.875rem, 0.77rem + 0.54vw, 1.25rem)",
171
+ "SpaceLg": "clamp(1.25rem, 1.03rem + 1.09vw, 2rem)",
172
+ "SpaceXl": "clamp(1.5rem, 1.15rem + 1.74vw, 2.75rem)",
173
+ "Space2xl": "clamp(2rem, 1.35rem + 3.26vw, 4.5rem)",
174
+ "FontBody": "\"DM Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif",
175
+ "FontSizeSm": "clamp(0.8125rem, 0.78rem + 0.16vw, 0.9375rem)",
176
+ "FontSizeBase": "clamp(0.875rem, 0.83rem + 0.22vw, 1rem)",
177
+ "FontSizeLg": "clamp(1rem, 0.93rem + 0.33vw, 1.25rem)",
178
+ "FontSizeXl": "clamp(1.25rem, 1.14rem + 0.54vw, 1.5rem)",
179
+ "FontSize2xl": "clamp(1.5rem, 1.35rem + 0.76vw, 1.875rem)",
180
+ "LineHeightTight": "1.25",
181
+ "LineHeightNormal": "1.5",
182
+ "LineHeightRelaxed": "1.75"
183
+ }