@7onic-ui/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.
package/js/index.mjs ADDED
@@ -0,0 +1,762 @@
1
+ /**
2
+ * 7onic Design Tokens — JavaScript export (ESM)
3
+ * ⚠️ Auto-generated — DO NOT EDIT
4
+ */
5
+
6
+ const tokens = {
7
+ "colors": {
8
+ "white": "#FFFFFF",
9
+ "black": "#000000",
10
+ "gray": {
11
+ "50": "#F9F9FA",
12
+ "100": "#F4F4F5",
13
+ "200": "#E4E4E6",
14
+ "300": "#D4D4D5",
15
+ "400": "#9A9A9B",
16
+ "500": "#6B6B6C",
17
+ "600": "#4A4A4B",
18
+ "700": "#3A3A3E",
19
+ "800": "#2D2D31",
20
+ "900": "#222225"
21
+ },
22
+ "primary": {
23
+ "50": "#DBF8FB",
24
+ "100": "#B2F0F5",
25
+ "200": "#89E8F0",
26
+ "300": "#60E0EB",
27
+ "400": "#37D8E6",
28
+ "500": "#1AC6D5",
29
+ "600": "#15A0AC",
30
+ "700": "#107A84",
31
+ "800": "#0B545B",
32
+ "900": "#062E32"
33
+ },
34
+ "secondary": {
35
+ "50": "#F5F5FB",
36
+ "100": "#EBEBF5",
37
+ "200": "#D9D9E9",
38
+ "300": "#BCBCD2",
39
+ "400": "#8F8FA9",
40
+ "500": "#69697F",
41
+ "600": "#4E4E60",
42
+ "700": "#3B3B4A",
43
+ "800": "#2F2F3B",
44
+ "900": "#23232D"
45
+ },
46
+ "blue": {
47
+ "50": "#EFF6FF",
48
+ "100": "#DBEAFE",
49
+ "200": "#BFDBFE",
50
+ "300": "#93C5FD",
51
+ "400": "#60A5FA",
52
+ "500": "#3B82F6",
53
+ "600": "#2563EB",
54
+ "700": "#1D4ED8",
55
+ "800": "#1E40AF",
56
+ "900": "#1E3A8A"
57
+ },
58
+ "green": {
59
+ "50": "#ECFDF5",
60
+ "100": "#D1FAE5",
61
+ "200": "#A7F3D0",
62
+ "300": "#6EE7B7",
63
+ "400": "#34D399",
64
+ "500": "#10B981",
65
+ "600": "#059669",
66
+ "700": "#047857",
67
+ "800": "#065F46",
68
+ "900": "#064E3B"
69
+ },
70
+ "yellow": {
71
+ "50": "#FFFBEB",
72
+ "100": "#FEF3C7",
73
+ "200": "#FDE68A",
74
+ "300": "#FCD34D",
75
+ "400": "#FBBF24",
76
+ "500": "#F59E0B",
77
+ "600": "#D97706",
78
+ "700": "#B45309",
79
+ "800": "#92400E",
80
+ "900": "#78350F"
81
+ },
82
+ "red": {
83
+ "50": "#FEF2F2",
84
+ "100": "#FEE2E2",
85
+ "200": "#FECACA",
86
+ "300": "#FCA5A5",
87
+ "400": "#F87171",
88
+ "500": "#EF4444",
89
+ "600": "#DC2626",
90
+ "700": "#B91C1C",
91
+ "800": "#991B1B",
92
+ "900": "#7F1D1D"
93
+ },
94
+ "chart": {
95
+ "blue-light": "#4570E8",
96
+ "blue-dark": "#6B8FF5",
97
+ "pink-light": "#D94F9A",
98
+ "pink-dark": "#E870B8",
99
+ "lavender-light": "#A888F0",
100
+ "lavender-dark": "#C4A8F8",
101
+ "sky-light": "#68C8F5",
102
+ "sky-dark": "#8DD8F8",
103
+ "rose-light": "#F0A0CC",
104
+ "rose-dark": "#F8C0DE"
105
+ }
106
+ },
107
+ "spacing": {
108
+ "0": "0",
109
+ "1": "0.25rem",
110
+ "2": "0.5rem",
111
+ "3": "0.75rem",
112
+ "4": "1rem",
113
+ "5": "1.25rem",
114
+ "6": "1.5rem",
115
+ "7": "1.75rem",
116
+ "8": "2rem",
117
+ "10": "2.5rem",
118
+ "12": "3rem",
119
+ "14": "3.5rem",
120
+ "16": "4rem",
121
+ "20": "5rem",
122
+ "24": "6rem",
123
+ "0.5": "0.125rem",
124
+ "1.5": "0.375rem",
125
+ "2.5": "0.625rem"
126
+ },
127
+ "fontSize": {
128
+ "2xs": {
129
+ "size": "0.6875rem",
130
+ "lineHeight": "1rem"
131
+ },
132
+ "xs": {
133
+ "size": "0.75rem",
134
+ "lineHeight": "1.125rem"
135
+ },
136
+ "sm": {
137
+ "size": "0.8125rem",
138
+ "lineHeight": "1.25rem"
139
+ },
140
+ "md": {
141
+ "size": "0.875rem",
142
+ "lineHeight": "1.375rem"
143
+ },
144
+ "base": {
145
+ "size": "1rem",
146
+ "lineHeight": "1.625rem"
147
+ },
148
+ "lg": {
149
+ "size": "1.125rem",
150
+ "lineHeight": "1.75rem"
151
+ },
152
+ "xl": {
153
+ "size": "1.25rem",
154
+ "lineHeight": "1.875rem"
155
+ },
156
+ "2xl": {
157
+ "size": "1.5rem",
158
+ "lineHeight": "2.125rem"
159
+ },
160
+ "3xl": {
161
+ "size": "1.875rem",
162
+ "lineHeight": "2.5rem"
163
+ },
164
+ "4xl": {
165
+ "size": "2.25rem",
166
+ "lineHeight": "2.875rem"
167
+ },
168
+ "5xl": {
169
+ "size": "3rem",
170
+ "lineHeight": "3.625rem"
171
+ }
172
+ },
173
+ "borderRadius": {
174
+ "none": "0px",
175
+ "sm": "2px",
176
+ "base": "4px",
177
+ "md": "6px",
178
+ "lg": "8px",
179
+ "xl": "12px",
180
+ "2xl": "16px",
181
+ "3xl": "24px",
182
+ "full": "9999px"
183
+ },
184
+ "shadow": {
185
+ "xs": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
186
+ "sm": "0 1px 3px 0 rgba(0, 0, 0, 0.1)",
187
+ "md": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
188
+ "lg": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
189
+ "xl": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)",
190
+ "primary-glow": "0 0 0 4px color-mix(in srgb, var(--color-primary) 15%, transparent)"
191
+ },
192
+ "zIndex": {
193
+ "0": "0",
194
+ "10": "10",
195
+ "20": "20",
196
+ "30": "30",
197
+ "40": "40",
198
+ "50": "50",
199
+ "sticky": "100",
200
+ "dropdown": "1000",
201
+ "overlay": "1100",
202
+ "modal": "2000",
203
+ "popover": "2100",
204
+ "tooltip": "2200",
205
+ "toast": "3000"
206
+ },
207
+ "duration": {
208
+ "instant": "0ms",
209
+ "fast": "100ms",
210
+ "micro": "150ms",
211
+ "normal": "200ms",
212
+ "slow": "300ms",
213
+ "slower": "400ms",
214
+ "slowest": "500ms",
215
+ "spin": "1000ms"
216
+ },
217
+ "iconSize": {
218
+ "2xs": "0.75rem",
219
+ "xs": "0.875rem",
220
+ "sm": "1rem",
221
+ "md": "1.25rem",
222
+ "lg": "1.5rem",
223
+ "xl": "2rem"
224
+ },
225
+ "opacity": {
226
+ "0": "0",
227
+ "5": "0.05",
228
+ "10": "0.1",
229
+ "15": "0.15",
230
+ "20": "0.2",
231
+ "25": "0.25",
232
+ "30": "0.3",
233
+ "35": "0.35",
234
+ "40": "0.4",
235
+ "45": "0.45",
236
+ "50": "0.5",
237
+ "55": "0.55",
238
+ "60": "0.6",
239
+ "65": "0.65",
240
+ "70": "0.7",
241
+ "75": "0.75",
242
+ "80": "0.8",
243
+ "85": "0.85",
244
+ "90": "0.9",
245
+ "95": "0.95",
246
+ "100": "1"
247
+ },
248
+ "fontWeight": {
249
+ "normal": "400",
250
+ "semibold": "600",
251
+ "bold": "700"
252
+ },
253
+ "borderWidth": {
254
+ "0": "0px",
255
+ "1": "1px",
256
+ "2": "2px",
257
+ "4": "4px",
258
+ "8": "8px"
259
+ },
260
+ "scale": {
261
+ "50": "0.5",
262
+ "75": "0.75",
263
+ "95": "0.95",
264
+ "pressed": "0.98"
265
+ },
266
+ "easing": {
267
+ "linear": "linear",
268
+ "ease": "ease",
269
+ "easeIn": "ease-in",
270
+ "easeOut": "ease-out",
271
+ "easeInOut": "ease-in-out"
272
+ },
273
+ "breakpoint": {
274
+ "sm": "640px",
275
+ "md": "768px",
276
+ "lg": "1024px",
277
+ "xl": "1280px",
278
+ "2xl": "1536px"
279
+ },
280
+ "fontFamily": {
281
+ "sans": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
282
+ "mono": "'Fira Code', 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace"
283
+ },
284
+ "componentSize": {
285
+ "switch": {
286
+ "track": {
287
+ "sm": {
288
+ "width": "24px",
289
+ "height": "14px"
290
+ },
291
+ "default": {
292
+ "width": "32px",
293
+ "height": "18px"
294
+ },
295
+ "lg": {
296
+ "width": "40px",
297
+ "height": "22px"
298
+ }
299
+ },
300
+ "thumb": {
301
+ "sm": "12px",
302
+ "default": "16px",
303
+ "lg": "20px"
304
+ }
305
+ },
306
+ "slider": {
307
+ "thumb": {
308
+ "sm": "14px",
309
+ "default": "18px",
310
+ "lg": "22px"
311
+ }
312
+ }
313
+ },
314
+ "animation": {
315
+ "checkbox-enter": {
316
+ "duration": "150ms",
317
+ "easing": "ease-out",
318
+ "opacity": "0",
319
+ "scale": "0.75"
320
+ },
321
+ "radio-enter": {
322
+ "duration": "150ms",
323
+ "easing": "ease-out",
324
+ "opacity": "0",
325
+ "scale": "0.5"
326
+ },
327
+ "fade-in": {
328
+ "duration": "200ms",
329
+ "easing": "ease-out",
330
+ "opacity": "0"
331
+ },
332
+ "fade-out": {
333
+ "duration": "200ms",
334
+ "easing": "ease-out",
335
+ "opacity": "0"
336
+ },
337
+ "modal-overlay-enter": {
338
+ "duration": "200ms",
339
+ "easing": "ease-out",
340
+ "opacity": "0"
341
+ },
342
+ "modal-overlay-exit": {
343
+ "duration": "100ms",
344
+ "easing": "ease-out",
345
+ "opacity": "0"
346
+ },
347
+ "modal-content-enter": {
348
+ "duration": "200ms",
349
+ "easing": "ease-out",
350
+ "opacity": "0",
351
+ "scale": "0.95",
352
+ "translateY": "8"
353
+ },
354
+ "modal-content-exit": {
355
+ "duration": "100ms",
356
+ "easing": "ease-out",
357
+ "opacity": "0",
358
+ "scale": "0.95",
359
+ "translateY": "8"
360
+ },
361
+ "nav-viewport-enter": {
362
+ "duration": "150ms",
363
+ "easing": "ease-out",
364
+ "opacity": "0",
365
+ "scale": "0.98",
366
+ "translateY": "2"
367
+ },
368
+ "nav-viewport-exit": {
369
+ "duration": "100ms",
370
+ "easing": "ease-out",
371
+ "opacity": "0",
372
+ "scale": "0.98",
373
+ "translateY": "2"
374
+ },
375
+ "accordion-down": {
376
+ "duration": "200ms",
377
+ "easing": "ease-out",
378
+ "heightVar": "--radix-accordion-content-height"
379
+ },
380
+ "accordion-up": {
381
+ "duration": "200ms",
382
+ "easing": "ease-out",
383
+ "heightVar": "--radix-accordion-content-height"
384
+ },
385
+ "collapsible-down": {
386
+ "duration": "200ms",
387
+ "easing": "ease-out",
388
+ "heightVar": "--radix-collapsible-content-height"
389
+ },
390
+ "collapsible-up": {
391
+ "duration": "200ms",
392
+ "easing": "ease-out",
393
+ "heightVar": "--radix-collapsible-content-height"
394
+ },
395
+ "drawer-right-enter": {
396
+ "duration": "300ms",
397
+ "easing": "ease-out",
398
+ "translateX": "100%"
399
+ },
400
+ "drawer-right-exit": {
401
+ "duration": "200ms",
402
+ "easing": "ease-out",
403
+ "translateX": "100%"
404
+ },
405
+ "drawer-left-enter": {
406
+ "duration": "300ms",
407
+ "easing": "ease-out",
408
+ "translateX": "100%"
409
+ },
410
+ "drawer-left-exit": {
411
+ "duration": "200ms",
412
+ "easing": "ease-out",
413
+ "translateX": "100%"
414
+ },
415
+ "drawer-top-enter": {
416
+ "duration": "300ms",
417
+ "easing": "ease-out",
418
+ "translateY": "100%"
419
+ },
420
+ "drawer-top-exit": {
421
+ "duration": "200ms",
422
+ "easing": "ease-out",
423
+ "translateY": "100%"
424
+ },
425
+ "drawer-bottom-enter": {
426
+ "duration": "300ms",
427
+ "easing": "ease-out",
428
+ "translateY": "100%"
429
+ },
430
+ "drawer-bottom-exit": {
431
+ "duration": "200ms",
432
+ "easing": "ease-out",
433
+ "translateY": "100%"
434
+ },
435
+ "tooltip-top-enter": {
436
+ "duration": "150ms",
437
+ "easing": "ease-out",
438
+ "opacity": "0",
439
+ "translateY": "4"
440
+ },
441
+ "tooltip-top-exit": {
442
+ "duration": "100ms",
443
+ "easing": "ease-out",
444
+ "opacity": "0",
445
+ "translateY": "4"
446
+ },
447
+ "tooltip-bottom-enter": {
448
+ "duration": "150ms",
449
+ "easing": "ease-out",
450
+ "opacity": "0",
451
+ "translateY": "4"
452
+ },
453
+ "tooltip-bottom-exit": {
454
+ "duration": "100ms",
455
+ "easing": "ease-out",
456
+ "opacity": "0",
457
+ "translateY": "4"
458
+ },
459
+ "tooltip-right-enter": {
460
+ "duration": "150ms",
461
+ "easing": "ease-out",
462
+ "opacity": "0",
463
+ "translateX": "4"
464
+ },
465
+ "tooltip-right-exit": {
466
+ "duration": "100ms",
467
+ "easing": "ease-out",
468
+ "opacity": "0",
469
+ "translateX": "4"
470
+ },
471
+ "tooltip-left-enter": {
472
+ "duration": "150ms",
473
+ "easing": "ease-out",
474
+ "opacity": "0",
475
+ "translateX": "4"
476
+ },
477
+ "tooltip-left-exit": {
478
+ "duration": "100ms",
479
+ "easing": "ease-out",
480
+ "opacity": "0",
481
+ "translateX": "4"
482
+ },
483
+ "popover-top-enter": {
484
+ "duration": "200ms",
485
+ "easing": "ease-out",
486
+ "opacity": "0",
487
+ "translateY": "4"
488
+ },
489
+ "popover-top-exit": {
490
+ "duration": "100ms",
491
+ "easing": "ease-out",
492
+ "opacity": "0",
493
+ "translateY": "4"
494
+ },
495
+ "popover-bottom-enter": {
496
+ "duration": "200ms",
497
+ "easing": "ease-out",
498
+ "opacity": "0",
499
+ "translateY": "4"
500
+ },
501
+ "popover-bottom-exit": {
502
+ "duration": "100ms",
503
+ "easing": "ease-out",
504
+ "opacity": "0",
505
+ "translateY": "4"
506
+ },
507
+ "popover-right-enter": {
508
+ "duration": "200ms",
509
+ "easing": "ease-out",
510
+ "opacity": "0",
511
+ "translateX": "4"
512
+ },
513
+ "popover-right-exit": {
514
+ "duration": "100ms",
515
+ "easing": "ease-out",
516
+ "opacity": "0",
517
+ "translateX": "4"
518
+ },
519
+ "popover-left-enter": {
520
+ "duration": "200ms",
521
+ "easing": "ease-out",
522
+ "opacity": "0",
523
+ "translateX": "4"
524
+ },
525
+ "popover-left-exit": {
526
+ "duration": "100ms",
527
+ "easing": "ease-out",
528
+ "opacity": "0",
529
+ "translateX": "4"
530
+ },
531
+ "toast-slide-in-right": {
532
+ "duration": "300ms",
533
+ "easing": "ease-out",
534
+ "opacity": "0",
535
+ "translateX": "100%"
536
+ },
537
+ "toast-slide-out-right": {
538
+ "duration": "200ms",
539
+ "easing": "ease-out",
540
+ "opacity": "0",
541
+ "translateX": "100%"
542
+ },
543
+ "toast-slide-in-left": {
544
+ "duration": "300ms",
545
+ "easing": "ease-out",
546
+ "opacity": "0",
547
+ "translateX": "100%"
548
+ },
549
+ "toast-slide-out-left": {
550
+ "duration": "200ms",
551
+ "easing": "ease-out",
552
+ "opacity": "0",
553
+ "translateX": "100%"
554
+ },
555
+ "toast-slide-in-top": {
556
+ "duration": "300ms",
557
+ "easing": "ease-out",
558
+ "opacity": "0",
559
+ "translateY": "100%"
560
+ },
561
+ "toast-slide-out-top": {
562
+ "duration": "200ms",
563
+ "easing": "ease-out",
564
+ "opacity": "0",
565
+ "translateY": "100%"
566
+ },
567
+ "toast-slide-in-bottom": {
568
+ "duration": "300ms",
569
+ "easing": "ease-out",
570
+ "opacity": "0",
571
+ "translateY": "100%"
572
+ },
573
+ "toast-slide-out-bottom": {
574
+ "duration": "200ms",
575
+ "easing": "ease-out",
576
+ "opacity": "0",
577
+ "translateY": "100%"
578
+ },
579
+ "spin": {
580
+ "duration": "1000ms",
581
+ "easing": "linear"
582
+ },
583
+ "progress-stripe": {
584
+ "duration": "1000ms",
585
+ "easing": "linear"
586
+ },
587
+ "spinner-orbit": {
588
+ "duration": "1000ms",
589
+ "easing": "linear"
590
+ },
591
+ "spinner-dot": {
592
+ "duration": "1000ms",
593
+ "easing": "ease-in-out"
594
+ },
595
+ "spinner-bar": {
596
+ "duration": "1000ms",
597
+ "easing": "ease-in-out"
598
+ },
599
+ "spinner-morph": {
600
+ "duration": "1000ms",
601
+ "easing": "ease-in-out"
602
+ },
603
+ "skeleton-pulse": {
604
+ "duration": "1000ms",
605
+ "easing": "ease-in-out"
606
+ },
607
+ "skeleton-wave": {
608
+ "duration": "1000ms",
609
+ "easing": "linear"
610
+ }
611
+ },
612
+ "typography": {
613
+ "heading": {
614
+ "1": {
615
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
616
+ "fontSize": "1.875rem",
617
+ "fontWeight": "700",
618
+ "lineHeight": "2.5rem"
619
+ },
620
+ "2": {
621
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
622
+ "fontSize": "1.5rem",
623
+ "fontWeight": "700",
624
+ "lineHeight": "2.125rem"
625
+ },
626
+ "3": {
627
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
628
+ "fontSize": "1.25rem",
629
+ "fontWeight": "600",
630
+ "lineHeight": "1.875rem"
631
+ },
632
+ "4": {
633
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
634
+ "fontSize": "1.125rem",
635
+ "fontWeight": "600",
636
+ "lineHeight": "1.75rem"
637
+ },
638
+ "5": {
639
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
640
+ "fontSize": "1rem",
641
+ "fontWeight": "600",
642
+ "lineHeight": "1.625rem"
643
+ },
644
+ "6": {
645
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
646
+ "fontSize": "0.875rem",
647
+ "fontWeight": "600",
648
+ "lineHeight": "1.375rem"
649
+ }
650
+ },
651
+ "body": {
652
+ "lg": {
653
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
654
+ "fontSize": "1.125rem",
655
+ "fontWeight": "400",
656
+ "lineHeight": "1.75rem"
657
+ },
658
+ "default": {
659
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
660
+ "fontSize": "1rem",
661
+ "fontWeight": "400",
662
+ "lineHeight": "1.625rem"
663
+ },
664
+ "md": {
665
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
666
+ "fontSize": "0.875rem",
667
+ "fontWeight": "400",
668
+ "lineHeight": "1.375rem"
669
+ },
670
+ "sm": {
671
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
672
+ "fontSize": "0.8125rem",
673
+ "fontWeight": "400",
674
+ "lineHeight": "1.25rem"
675
+ },
676
+ "xs": {
677
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
678
+ "fontSize": "0.75rem",
679
+ "fontWeight": "400",
680
+ "lineHeight": "1.125rem"
681
+ },
682
+ "2xs": {
683
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
684
+ "fontSize": "0.6875rem",
685
+ "fontWeight": "400",
686
+ "lineHeight": "1rem"
687
+ }
688
+ },
689
+ "label": {
690
+ "lg": {
691
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
692
+ "fontSize": "1rem",
693
+ "fontWeight": "600",
694
+ "lineHeight": "1.625rem"
695
+ },
696
+ "md": {
697
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
698
+ "fontSize": "0.875rem",
699
+ "fontWeight": "600",
700
+ "lineHeight": "1.375rem"
701
+ },
702
+ "default": {
703
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
704
+ "fontSize": "0.8125rem",
705
+ "fontWeight": "600",
706
+ "lineHeight": "1.25rem"
707
+ },
708
+ "sm": {
709
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
710
+ "fontSize": "0.75rem",
711
+ "fontWeight": "600",
712
+ "lineHeight": "1.125rem"
713
+ },
714
+ "xs": {
715
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
716
+ "fontSize": "0.6875rem",
717
+ "fontWeight": "600",
718
+ "lineHeight": "1rem"
719
+ }
720
+ },
721
+ "caption": {
722
+ "fontFamily": "Inter, -apple-system, BlinkMacSystemFont, sans-serif",
723
+ "fontSize": "0.75rem",
724
+ "fontWeight": "400",
725
+ "lineHeight": "1.125rem"
726
+ },
727
+ "code": {
728
+ "block": {
729
+ "fontFamily": "'Fira Code', 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace",
730
+ "fontSize": "0.8125rem",
731
+ "fontWeight": "400",
732
+ "lineHeight": "1.375rem"
733
+ },
734
+ "inline": {
735
+ "fontFamily": "'Fira Code', 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace",
736
+ "fontSize": "0.8125rem",
737
+ "fontWeight": "400",
738
+ "lineHeight": "1.25rem"
739
+ }
740
+ }
741
+ }
742
+ };
743
+
744
+ export const colors = tokens.colors;
745
+ export const spacing = tokens.spacing;
746
+ export const fontSize = tokens.fontSize;
747
+ export const borderRadius = tokens.borderRadius;
748
+ export const shadow = tokens.shadow;
749
+ export const zIndex = tokens.zIndex;
750
+ export const duration = tokens.duration;
751
+ export const iconSize = tokens.iconSize;
752
+ export const opacity = tokens.opacity;
753
+ export const fontWeight = tokens.fontWeight;
754
+ export const borderWidth = tokens.borderWidth;
755
+ export const scale = tokens.scale;
756
+ export const easing = tokens.easing;
757
+ export const breakpoint = tokens.breakpoint;
758
+ export const fontFamily = tokens.fontFamily;
759
+ export const componentSize = tokens.componentSize;
760
+ export const animation = tokens.animation;
761
+ export const typography = tokens.typography;
762
+ export default tokens;