@agentiffai/design 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{StreamStatusIndicator-DM5n4MI1.d.cts → Window-CF5y1_Og.d.cts} +111 -106
  2. package/dist/{StreamStatusIndicator-DM5n4MI1.d.ts → Window-CF5y1_Og.d.ts} +111 -106
  3. package/dist/copilotkit/index.cjs +2486 -2276
  4. package/dist/copilotkit/index.cjs.map +1 -1
  5. package/dist/copilotkit/index.d.cts +63 -38
  6. package/dist/copilotkit/index.d.ts +63 -38
  7. package/dist/copilotkit/index.js +2484 -2275
  8. package/dist/copilotkit/index.js.map +1 -1
  9. package/dist/icons/index.cjs +68 -167
  10. package/dist/icons/index.cjs.map +1 -1
  11. package/dist/icons/index.d.cts +25 -20
  12. package/dist/icons/index.d.ts +25 -20
  13. package/dist/icons/index.js +68 -167
  14. package/dist/icons/index.js.map +1 -1
  15. package/dist/index.cjs +5848 -3645
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +332 -4
  18. package/dist/index.d.ts +332 -4
  19. package/dist/index.js +5796 -3614
  20. package/dist/index.js.map +1 -1
  21. package/dist/layout/index.cjs +1000 -525
  22. package/dist/layout/index.cjs.map +1 -1
  23. package/dist/layout/index.d.cts +70 -8
  24. package/dist/layout/index.d.ts +70 -8
  25. package/dist/layout/index.js +997 -523
  26. package/dist/layout/index.js.map +1 -1
  27. package/dist/theme/index.cjs +345 -24
  28. package/dist/theme/index.cjs.map +1 -1
  29. package/dist/theme/index.d.cts +524 -65
  30. package/dist/theme/index.d.ts +524 -65
  31. package/dist/theme/index.js +345 -24
  32. package/dist/theme/index.js.map +1 -1
  33. package/dist/workflow/index.cjs +870 -575
  34. package/dist/workflow/index.cjs.map +1 -1
  35. package/dist/workflow/index.d.cts +93 -57
  36. package/dist/workflow/index.d.ts +93 -57
  37. package/dist/workflow/index.js +866 -572
  38. package/dist/workflow/index.js.map +1 -1
  39. package/package.json +1 -1
  40. package/public/assets/icon-set/Icon-contacts-fill.svg +3 -0
  41. package/public/assets/icon-set/Icon-mail-open-fill.svg +3 -0
  42. package/public/assets/icon-set/Icon-p2p-fill.svg +3 -0
  43. package/public/assets/icon-set/Icon-robot-2-fill.svg +3 -0
  44. package/public/assets/icon-set/Icon-send-plane-fill.svg +3 -0
  45. package/public/assets/icon-set/Notion.svg +41 -0
  46. package/public/assets/icon-set/Postiz.svg +1 -0
@@ -1,102 +1,561 @@
1
1
  import * as React from 'react';
2
2
  import * as styled_components from 'styled-components';
3
3
 
4
+ /**
5
+ * Dark Theme
6
+ * Applies token values for dark mode styling.
7
+ * Components should use theme values via styled-components ThemeProvider.
8
+ */
4
9
  declare const darkTheme: {
5
10
  name: string;
6
11
  colors: {
7
- primary: string;
8
- surface: string;
9
- text: string;
10
- border: string;
12
+ primary: "#2CB0AB";
13
+ secondary: "#264E68";
14
+ accent: "#459FB9";
15
+ seaGreen: "#4EB999";
16
+ background: {
17
+ readonly darkest: "#0a1b2a";
18
+ readonly darker: "#151a26";
19
+ readonly dark: "#1b2230";
20
+ readonly light: "#252d3d";
21
+ };
22
+ surface: "#1b2230";
23
+ surfaceHover: "#252d3d";
24
+ text: {
25
+ readonly primary: "#FFFFFF";
26
+ readonly secondary: "#B4B8C5";
27
+ readonly tertiary: "#6B7280";
28
+ readonly disabled: "#4B5563";
29
+ };
30
+ textPrimary: "#FFFFFF";
31
+ textSecondary: "#B4B8C5";
32
+ textTertiary: "#6B7280";
33
+ textDisabled: "#4B5563";
34
+ success: "#2CB0AB";
35
+ error: "#EF4444";
36
+ warning: "#F59E0B";
37
+ info: "#459FB9";
38
+ status: {
39
+ readonly pending: "#6B7280";
40
+ readonly idle: "#6B7280";
41
+ readonly running: "#459FB9";
42
+ readonly completed: "#2CB0AB";
43
+ readonly failed: "#EF4444";
44
+ readonly timeout: "#F59E0B";
45
+ readonly online: "#2CB0AB";
46
+ readonly offline: "#EF4444";
47
+ readonly busy: "#459FB9";
48
+ };
49
+ connection: {
50
+ readonly connected: "#2CB0AB";
51
+ readonly streaming: "#459FB9";
52
+ readonly disconnected: "#EF4444";
53
+ readonly reconnecting: "#F59E0B";
54
+ };
55
+ border: {
56
+ readonly default: "rgba(255, 255, 255, 0.1)";
57
+ readonly subtle: "rgba(255, 255, 255, 0.05)";
58
+ readonly hover: "rgba(255, 255, 255, 0.2)";
59
+ readonly focus: "#2CB0AB";
60
+ readonly error: "#EF4444";
61
+ };
62
+ borderDefault: "rgba(255, 255, 255, 0.1)";
63
+ borderFocus: "#2CB0AB";
64
+ message: {
65
+ readonly user: "#264E68";
66
+ readonly ai: "#1b2230";
67
+ readonly system: "#151a26";
68
+ };
69
+ overlay: "rgba(0, 0, 0, 0.5)";
70
+ backdrop: "rgba(27, 34, 48, 0.95)";
71
+ icon: {
72
+ readonly default: "#B4B8C5";
73
+ readonly muted: "#6B7280";
74
+ readonly active: "#2CB0AB";
75
+ };
76
+ platform: {
77
+ readonly facebook: "#1877F2";
78
+ readonly instagram: "#E4405F";
79
+ readonly linkedin: "#0A66C2";
80
+ readonly x: "#000000";
81
+ readonly twitter: "#1DA1F2";
82
+ readonly youtube: "#FF0000";
83
+ readonly reddit: "#FF4500";
84
+ readonly slack: "#4A154B";
85
+ readonly telegram: "#0088CC";
86
+ readonly whatsapp: "#25D366";
87
+ readonly gmail: "#EA4335";
88
+ };
89
+ };
90
+ typography: {
91
+ readonly fontFamily: {
92
+ readonly primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
93
+ readonly heading: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
94
+ readonly monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace";
95
+ };
96
+ readonly fontSize: {
97
+ readonly xs: "0.75rem";
98
+ readonly sm: "0.875rem";
99
+ readonly base: "1rem";
100
+ readonly lg: "1.125rem";
101
+ readonly xl: "1.25rem";
102
+ readonly '2xl': "1.5rem";
103
+ readonly '3xl': "1.875rem";
104
+ readonly '4xl': "2.25rem";
105
+ };
106
+ readonly fontWeight: {
107
+ readonly light: 300;
108
+ readonly regular: 400;
109
+ readonly medium: 500;
110
+ readonly semibold: 600;
111
+ readonly bold: 700;
112
+ };
113
+ readonly lineHeight: {
114
+ readonly tight: 1.25;
115
+ readonly normal: 1.5;
116
+ readonly relaxed: 1.75;
117
+ };
11
118
  };
12
119
  spacing: {
13
- xs: string;
14
- sm: string;
15
- md: string;
16
- lg: string;
17
- xl: string;
120
+ readonly xs: "0.25rem";
121
+ readonly sm: "0.5rem";
122
+ readonly md: "1rem";
123
+ readonly lg: "1.5rem";
124
+ readonly xl: "2rem";
125
+ readonly '2xl': "3rem";
126
+ readonly '3xl': "4rem";
18
127
  };
19
- radii: {
20
- sm: string;
21
- md: string;
22
- lg: string;
128
+ borderRadius: {
129
+ readonly none: "0";
130
+ readonly sm: "0.25rem";
131
+ readonly md: "0.5rem";
132
+ readonly lg: "0.75rem";
133
+ readonly xl: "1rem";
134
+ readonly '2xl': "1.5rem";
135
+ readonly full: "9999px";
23
136
  };
24
- fonts: {
25
- body: string;
26
- mono: string;
137
+ shadows: {
138
+ readonly none: "none";
139
+ readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
140
+ readonly md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)";
141
+ readonly lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)";
142
+ readonly xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)";
143
+ readonly card: "0 4px 20px rgba(0, 0, 0, 0.3)";
144
+ readonly glow: {
145
+ readonly primary: "0 0 20px rgba(44, 176, 171, 0.3)";
146
+ readonly secondary: "0 0 20px rgba(38, 78, 104, 0.3)";
147
+ readonly accent: "0 0 20px rgba(69, 159, 185, 0.3)";
148
+ };
149
+ };
150
+ transitions: {
151
+ readonly fast: "150ms ease-in-out";
152
+ readonly normal: "250ms ease-in-out";
153
+ readonly slow: "350ms ease-in-out";
154
+ };
155
+ animation: {
156
+ readonly duration: {
157
+ readonly micro: "150ms";
158
+ readonly short: "200ms";
159
+ readonly medium: "300ms";
160
+ readonly long: "500ms";
161
+ };
162
+ readonly easing: {
163
+ readonly enter: "cubic-bezier(0.4, 0, 0.2, 1)";
164
+ readonly exit: "cubic-bezier(0.4, 0, 1, 1)";
165
+ readonly smooth: "cubic-bezier(0.4, 0, 0.2, 1)";
166
+ readonly linear: "linear";
167
+ };
168
+ };
169
+ zIndex: {
170
+ readonly base: 0;
171
+ readonly dropdown: 1000;
172
+ readonly sticky: 1020;
173
+ readonly fixed: 1030;
174
+ readonly overlay: 1100;
175
+ readonly modal: 1200;
176
+ readonly popover: 1300;
177
+ readonly tooltip: 1400;
178
+ readonly toast: 1500;
179
+ };
180
+ breakpoints: {
181
+ readonly mobile: 640;
182
+ readonly tablet: 1024;
183
+ readonly desktop: 1280;
27
184
  };
28
185
  };
29
186
 
30
187
  declare const GlobalStyle: React.NamedExoticComponent<styled_components.ExecutionProps & object>;
31
188
 
189
+ /**
190
+ * Light Theme
191
+ * Applies light mode styling using token values.
192
+ * Uses inverted colors from the dark theme for light backgrounds.
193
+ * Components should use theme values via styled-components ThemeProvider.
194
+ */
32
195
  declare const lightTheme: {
33
196
  name: string;
34
197
  colors: {
35
- primary: string;
198
+ primary: "#2CB0AB";
199
+ secondary: "#264E68";
200
+ accent: "#459FB9";
201
+ seaGreen: "#4EB999";
202
+ background: {
203
+ darkest: string;
204
+ darker: string;
205
+ dark: string;
206
+ light: string;
207
+ };
36
208
  surface: string;
37
- text: string;
38
- border: string;
209
+ surfaceHover: string;
210
+ text: {
211
+ primary: string;
212
+ secondary: string;
213
+ tertiary: string;
214
+ disabled: string;
215
+ };
216
+ textPrimary: string;
217
+ textSecondary: string;
218
+ textTertiary: string;
219
+ textDisabled: string;
220
+ success: "#2CB0AB";
221
+ error: "#EF4444";
222
+ warning: "#F59E0B";
223
+ info: "#459FB9";
224
+ status: {
225
+ readonly pending: "#6B7280";
226
+ readonly idle: "#6B7280";
227
+ readonly running: "#459FB9";
228
+ readonly completed: "#2CB0AB";
229
+ readonly failed: "#EF4444";
230
+ readonly timeout: "#F59E0B";
231
+ readonly online: "#2CB0AB";
232
+ readonly offline: "#EF4444";
233
+ readonly busy: "#459FB9";
234
+ };
235
+ connection: {
236
+ readonly connected: "#2CB0AB";
237
+ readonly streaming: "#459FB9";
238
+ readonly disconnected: "#EF4444";
239
+ readonly reconnecting: "#F59E0B";
240
+ };
241
+ border: {
242
+ default: string;
243
+ subtle: string;
244
+ hover: string;
245
+ focus: "#2CB0AB";
246
+ error: "#EF4444";
247
+ };
248
+ borderDefault: string;
249
+ borderFocus: "#2CB0AB";
250
+ message: {
251
+ user: string;
252
+ ai: string;
253
+ system: string;
254
+ };
255
+ overlay: string;
256
+ backdrop: string;
257
+ icon: {
258
+ default: string;
259
+ muted: string;
260
+ active: "#2CB0AB";
261
+ };
262
+ platform: {
263
+ readonly facebook: "#1877F2";
264
+ readonly instagram: "#E4405F";
265
+ readonly linkedin: "#0A66C2";
266
+ readonly x: "#000000";
267
+ readonly twitter: "#1DA1F2";
268
+ readonly youtube: "#FF0000";
269
+ readonly reddit: "#FF4500";
270
+ readonly slack: "#4A154B";
271
+ readonly telegram: "#0088CC";
272
+ readonly whatsapp: "#25D366";
273
+ readonly gmail: "#EA4335";
274
+ };
275
+ };
276
+ typography: {
277
+ readonly fontFamily: {
278
+ readonly primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
279
+ readonly heading: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
280
+ readonly monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace";
281
+ };
282
+ readonly fontSize: {
283
+ readonly xs: "0.75rem";
284
+ readonly sm: "0.875rem";
285
+ readonly base: "1rem";
286
+ readonly lg: "1.125rem";
287
+ readonly xl: "1.25rem";
288
+ readonly '2xl': "1.5rem";
289
+ readonly '3xl': "1.875rem";
290
+ readonly '4xl': "2.25rem";
291
+ };
292
+ readonly fontWeight: {
293
+ readonly light: 300;
294
+ readonly regular: 400;
295
+ readonly medium: 500;
296
+ readonly semibold: 600;
297
+ readonly bold: 700;
298
+ };
299
+ readonly lineHeight: {
300
+ readonly tight: 1.25;
301
+ readonly normal: 1.5;
302
+ readonly relaxed: 1.75;
303
+ };
39
304
  };
40
305
  spacing: {
41
- xs: string;
42
- sm: string;
43
- md: string;
44
- lg: string;
45
- xl: string;
306
+ readonly xs: "0.25rem";
307
+ readonly sm: "0.5rem";
308
+ readonly md: "1rem";
309
+ readonly lg: "1.5rem";
310
+ readonly xl: "2rem";
311
+ readonly '2xl': "3rem";
312
+ readonly '3xl': "4rem";
46
313
  };
47
- radii: {
48
- sm: string;
49
- md: string;
50
- lg: string;
314
+ borderRadius: {
315
+ readonly none: "0";
316
+ readonly sm: "0.25rem";
317
+ readonly md: "0.5rem";
318
+ readonly lg: "0.75rem";
319
+ readonly xl: "1rem";
320
+ readonly '2xl': "1.5rem";
321
+ readonly full: "9999px";
51
322
  };
52
- fonts: {
53
- body: string;
54
- mono: string;
323
+ shadows: {
324
+ readonly none: "none";
325
+ readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
326
+ readonly md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)";
327
+ readonly lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)";
328
+ readonly xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)";
329
+ readonly card: "0 4px 20px rgba(0, 0, 0, 0.3)";
330
+ readonly glow: {
331
+ readonly primary: "0 0 20px rgba(44, 176, 171, 0.3)";
332
+ readonly secondary: "0 0 20px rgba(38, 78, 104, 0.3)";
333
+ readonly accent: "0 0 20px rgba(69, 159, 185, 0.3)";
334
+ };
335
+ };
336
+ transitions: {
337
+ readonly fast: "150ms ease-in-out";
338
+ readonly normal: "250ms ease-in-out";
339
+ readonly slow: "350ms ease-in-out";
340
+ };
341
+ animation: {
342
+ readonly duration: {
343
+ readonly micro: "150ms";
344
+ readonly short: "200ms";
345
+ readonly medium: "300ms";
346
+ readonly long: "500ms";
347
+ };
348
+ readonly easing: {
349
+ readonly enter: "cubic-bezier(0.4, 0, 0.2, 1)";
350
+ readonly exit: "cubic-bezier(0.4, 0, 1, 1)";
351
+ readonly smooth: "cubic-bezier(0.4, 0, 0.2, 1)";
352
+ readonly linear: "linear";
353
+ };
354
+ };
355
+ zIndex: {
356
+ readonly base: 0;
357
+ readonly dropdown: 1000;
358
+ readonly sticky: 1020;
359
+ readonly fixed: 1030;
360
+ readonly overlay: 1100;
361
+ readonly modal: 1200;
362
+ readonly popover: 1300;
363
+ readonly tooltip: 1400;
364
+ readonly toast: 1500;
365
+ };
366
+ breakpoints: {
367
+ readonly mobile: 640;
368
+ readonly tablet: 1024;
369
+ readonly desktop: 1280;
55
370
  };
56
371
  };
57
372
 
373
+ /**
374
+ * Design Tokens
375
+ * Centralized design system tokens for colors, typography, spacing, etc.
376
+ * These tokens are the single source of truth for styling across all components.
377
+ */
58
378
  declare const tokens: {
59
- colors: {
60
- primary: {
61
- light: string;
62
- dark: string;
379
+ readonly colors: {
380
+ readonly primary: "#2CB0AB";
381
+ readonly secondary: "#264E68";
382
+ readonly accent: "#459FB9";
383
+ readonly seaGreen: "#4EB999";
384
+ readonly background: {
385
+ readonly darkest: "#0a1b2a";
386
+ readonly darker: "#151a26";
387
+ readonly dark: "#1b2230";
388
+ readonly light: "#252d3d";
63
389
  };
64
- secondary: {
65
- light: string;
66
- dark: string;
390
+ readonly text: {
391
+ readonly primary: "#FFFFFF";
392
+ readonly secondary: "#B4B8C5";
393
+ readonly tertiary: "#6B7280";
394
+ readonly disabled: "#4B5563";
67
395
  };
68
- accent: {
69
- light: string;
70
- dark: string;
396
+ readonly success: "#2CB0AB";
397
+ readonly error: "#EF4444";
398
+ readonly warning: "#F59E0B";
399
+ readonly info: "#459FB9";
400
+ readonly status: {
401
+ readonly pending: "#6B7280";
402
+ readonly idle: "#6B7280";
403
+ readonly running: "#459FB9";
404
+ readonly completed: "#2CB0AB";
405
+ readonly failed: "#EF4444";
406
+ readonly timeout: "#F59E0B";
407
+ readonly online: "#2CB0AB";
408
+ readonly offline: "#EF4444";
409
+ readonly busy: "#459FB9";
71
410
  };
72
- surface: {
73
- light: string;
74
- dark: string;
411
+ readonly connection: {
412
+ readonly connected: "#2CB0AB";
413
+ readonly streaming: "#459FB9";
414
+ readonly disconnected: "#EF4444";
415
+ readonly reconnecting: "#F59E0B";
75
416
  };
76
- text: {
77
- light: string;
78
- dark: string;
417
+ readonly surface: {
418
+ readonly base: "#1b2230";
419
+ readonly elevated: "#252d3d";
420
+ readonly overlay: "rgba(255, 255, 255, 0.05)";
421
+ readonly overlayHover: "rgba(255, 255, 255, 0.1)";
422
+ readonly overlayActive: "rgba(255, 255, 255, 0.15)";
423
+ readonly subtle: "rgba(255, 255, 255, 0.02)";
424
+ readonly glass: "rgba(255, 255, 255, 0.26)";
425
+ readonly glassBorder: "rgba(255, 255, 255, 0.3)";
79
426
  };
80
- border: {
81
- light: string;
82
- dark: string;
427
+ readonly border: {
428
+ readonly default: "rgba(255, 255, 255, 0.1)";
429
+ readonly subtle: "rgba(255, 255, 255, 0.05)";
430
+ readonly hover: "rgba(255, 255, 255, 0.2)";
431
+ readonly focus: "#2CB0AB";
432
+ readonly error: "#EF4444";
433
+ };
434
+ readonly scrollbar: {
435
+ readonly track: "transparent";
436
+ readonly thumb: "rgba(255, 255, 255, 0.2)";
437
+ readonly thumbHover: "rgba(255, 255, 255, 0.3)";
438
+ };
439
+ readonly message: {
440
+ readonly user: "#264E68";
441
+ readonly ai: "#1b2230";
442
+ readonly system: "#151a26";
443
+ };
444
+ readonly overlay: "rgba(0, 0, 0, 0.5)";
445
+ readonly backdrop: "rgba(27, 34, 48, 0.95)";
446
+ readonly icon: {
447
+ readonly default: "#B4B8C5";
448
+ readonly muted: "#6B7280";
449
+ readonly active: "#2CB0AB";
450
+ };
451
+ readonly platform: {
452
+ readonly facebook: "#1877F2";
453
+ readonly instagram: "#E4405F";
454
+ readonly linkedin: "#0A66C2";
455
+ readonly x: "#000000";
456
+ readonly twitter: "#1DA1F2";
457
+ readonly youtube: "#FF0000";
458
+ readonly reddit: "#FF4500";
459
+ readonly slack: "#4A154B";
460
+ readonly telegram: "#0088CC";
461
+ readonly whatsapp: "#25D366";
462
+ readonly gmail: "#EA4335";
83
463
  };
84
464
  };
85
- spacing: {
86
- xs: string;
87
- sm: string;
88
- md: string;
89
- lg: string;
90
- xl: string;
91
- };
92
- radii: {
93
- sm: string;
94
- md: string;
95
- lg: string;
96
- };
97
- fonts: {
98
- body: string;
99
- mono: string;
465
+ readonly typography: {
466
+ readonly fontFamily: {
467
+ readonly primary: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
468
+ readonly heading: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif";
469
+ readonly monospace: "'Roboto Mono', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace";
470
+ };
471
+ readonly fontSize: {
472
+ readonly xs: "0.75rem";
473
+ readonly sm: "0.875rem";
474
+ readonly base: "1rem";
475
+ readonly lg: "1.125rem";
476
+ readonly xl: "1.25rem";
477
+ readonly '2xl': "1.5rem";
478
+ readonly '3xl': "1.875rem";
479
+ readonly '4xl': "2.25rem";
480
+ };
481
+ readonly fontWeight: {
482
+ readonly light: 300;
483
+ readonly regular: 400;
484
+ readonly medium: 500;
485
+ readonly semibold: 600;
486
+ readonly bold: 700;
487
+ };
488
+ readonly lineHeight: {
489
+ readonly tight: 1.25;
490
+ readonly normal: 1.5;
491
+ readonly relaxed: 1.75;
492
+ };
493
+ };
494
+ readonly spacing: {
495
+ readonly xs: "0.25rem";
496
+ readonly sm: "0.5rem";
497
+ readonly md: "1rem";
498
+ readonly lg: "1.5rem";
499
+ readonly xl: "2rem";
500
+ readonly '2xl': "3rem";
501
+ readonly '3xl': "4rem";
502
+ };
503
+ readonly borderRadius: {
504
+ readonly none: "0";
505
+ readonly sm: "0.25rem";
506
+ readonly md: "0.5rem";
507
+ readonly lg: "0.75rem";
508
+ readonly xl: "1rem";
509
+ readonly '2xl': "1.5rem";
510
+ readonly full: "9999px";
511
+ };
512
+ readonly shadows: {
513
+ readonly none: "none";
514
+ readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
515
+ readonly md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)";
516
+ readonly lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)";
517
+ readonly xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)";
518
+ readonly card: "0 4px 20px rgba(0, 0, 0, 0.3)";
519
+ readonly glow: {
520
+ readonly primary: "0 0 20px rgba(44, 176, 171, 0.3)";
521
+ readonly secondary: "0 0 20px rgba(38, 78, 104, 0.3)";
522
+ readonly accent: "0 0 20px rgba(69, 159, 185, 0.3)";
523
+ };
524
+ };
525
+ readonly transitions: {
526
+ readonly fast: "150ms ease-in-out";
527
+ readonly normal: "250ms ease-in-out";
528
+ readonly slow: "350ms ease-in-out";
529
+ };
530
+ readonly animation: {
531
+ readonly duration: {
532
+ readonly micro: "150ms";
533
+ readonly short: "200ms";
534
+ readonly medium: "300ms";
535
+ readonly long: "500ms";
536
+ };
537
+ readonly easing: {
538
+ readonly enter: "cubic-bezier(0.4, 0, 0.2, 1)";
539
+ readonly exit: "cubic-bezier(0.4, 0, 1, 1)";
540
+ readonly smooth: "cubic-bezier(0.4, 0, 0.2, 1)";
541
+ readonly linear: "linear";
542
+ };
543
+ };
544
+ readonly zIndex: {
545
+ readonly base: 0;
546
+ readonly dropdown: 1000;
547
+ readonly sticky: 1020;
548
+ readonly fixed: 1030;
549
+ readonly overlay: 1100;
550
+ readonly modal: 1200;
551
+ readonly popover: 1300;
552
+ readonly tooltip: 1400;
553
+ readonly toast: 1500;
554
+ };
555
+ readonly breakpoints: {
556
+ readonly mobile: 640;
557
+ readonly tablet: 1024;
558
+ readonly desktop: 1280;
100
559
  };
101
560
  };
102
561