@createnew/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,611 @@
1
+ /**
2
+ * CreateNew Design System Tokens
3
+ *
4
+ * This is the single source of truth for all design tokens.
5
+ * Tokens will be exported as:
6
+ * - tokens.css (CSS custom properties)
7
+ * - tokens.ts (TypeScript objects)
8
+ */
9
+ export declare const coreTokens: {
10
+ readonly color: {
11
+ readonly gray: {
12
+ readonly warm: {
13
+ readonly 0: "#ffffff";
14
+ readonly 25: "#fbfaf9";
15
+ readonly 50: "#f7f4f1";
16
+ readonly 100: "#f3efec";
17
+ };
18
+ readonly 0: "#ffffff";
19
+ readonly 25: "#f1f4f7";
20
+ readonly 50: "#eceff3";
21
+ readonly 100: "#dfe1e7";
22
+ readonly 200: "#666d80";
23
+ readonly 300: "#36384a";
24
+ readonly 301: "#272735";
25
+ readonly 302: "#0d0d12";
26
+ };
27
+ readonly green: {
28
+ readonly 0: "#fcfef3";
29
+ readonly 25: "#f4fadc";
30
+ readonly 50: "#e9f3b8";
31
+ readonly 100: "#91ba00";
32
+ readonly 200: "#607a05";
33
+ readonly 300: "#3b4309";
34
+ readonly 301: "#282d06";
35
+ };
36
+ readonly violet: {
37
+ readonly 0: "#fcfafe";
38
+ readonly 25: "#f5edfc";
39
+ readonly 50: "#ead6f7";
40
+ readonly 100: "#c083e2";
41
+ readonly 200: "#985dba";
42
+ readonly 300: "#5a3667";
43
+ readonly 301: "#382140";
44
+ };
45
+ readonly purple: {
46
+ readonly 0: "#faf9fe";
47
+ readonly 25: "#efe7fc";
48
+ readonly 50: "#ddcdf8";
49
+ readonly 100: "#8a5ae0";
50
+ readonly 200: "#643fa4";
51
+ readonly 300: "#3b2763";
52
+ readonly 301: "#140033";
53
+ };
54
+ readonly gold: {
55
+ readonly 0: "#fffef5";
56
+ readonly 25: "#fff9dd";
57
+ readonly 50: "#fff0b8";
58
+ readonly 100: "#ffc400";
59
+ readonly 200: "#947100";
60
+ readonly 300: "#664f00";
61
+ readonly 301: "#2e1700";
62
+ };
63
+ readonly orange: {
64
+ readonly 0: "#fffaf7";
65
+ readonly 25: "#ffece0";
66
+ readonly 50: "#ffd3b8";
67
+ readonly 100: "#ff6200";
68
+ readonly 200: "#cb4e00";
69
+ readonly 300: "#662700";
70
+ readonly 301: "#331400";
71
+ };
72
+ readonly blue: {
73
+ readonly 0: "#f6fbff";
74
+ readonly 25: "#e4f2ff";
75
+ readonly 50: "#c1e0ff";
76
+ readonly 100: "#0085ff";
77
+ readonly 200: "#0075e0";
78
+ readonly 300: "#003566";
79
+ readonly 301: "#001d38";
80
+ };
81
+ readonly teal: {
82
+ readonly 0: "#f4fdf9";
83
+ readonly 25: "#d8f7eb";
84
+ readonly 50: "#b1ecd7";
85
+ readonly 100: "#00cc74";
86
+ readonly 200: "#008852";
87
+ readonly 300: "#004d2d";
88
+ readonly 301: "#002918";
89
+ };
90
+ readonly cyan: {
91
+ readonly 0: "#f5feff";
92
+ readonly 25: "#e1f9fd";
93
+ readonly 50: "#bff0fa";
94
+ readonly 100: "#33d7f2";
95
+ readonly 200: "#128194";
96
+ readonly 300: "#15545e";
97
+ readonly 301: "#0a292e";
98
+ };
99
+ readonly black: "#000000";
100
+ readonly white: "#ffffff";
101
+ };
102
+ readonly spacing: {
103
+ readonly xs: "4px";
104
+ readonly s: "8px";
105
+ readonly m: "12px";
106
+ readonly l: "16px";
107
+ readonly xl: "24px";
108
+ readonly "2xl": "32px";
109
+ readonly "3xl": "48px";
110
+ readonly "4xl": "56px";
111
+ readonly "5xl": "80px";
112
+ readonly "6xl": "104px";
113
+ };
114
+ readonly radius: {
115
+ readonly xs: "4px";
116
+ readonly s: "6px";
117
+ readonly m: "8px";
118
+ readonly l: "12px";
119
+ readonly xl: "16px";
120
+ readonly full: "9999px";
121
+ };
122
+ readonly shadow: {
123
+ readonly sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
124
+ readonly m: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
125
+ readonly l: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
126
+ readonly xl: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
127
+ };
128
+ readonly fontFamily: {
129
+ readonly heading: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
130
+ readonly sans: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
131
+ readonly mono: "ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace";
132
+ };
133
+ readonly fontSize: {
134
+ readonly xs: "12px";
135
+ readonly sm: "13px";
136
+ readonly base: "14px";
137
+ readonly md: "15px";
138
+ readonly lg: "16px";
139
+ readonly xl: "18px";
140
+ readonly "2xl": "20px";
141
+ readonly "3xl": "24px";
142
+ readonly "4xl": "30px";
143
+ readonly "5xl": "32px";
144
+ readonly "6xl": "36px";
145
+ readonly "7xl": "40px";
146
+ readonly "8xl": "48px";
147
+ readonly "9xl": "56px";
148
+ readonly "10xl": "64px";
149
+ };
150
+ readonly lineHeight: {
151
+ readonly none: "1";
152
+ readonly tight: "1.2";
153
+ readonly snug: "1.3";
154
+ readonly normal: "1.5";
155
+ readonly relaxed: "1.6";
156
+ readonly loose: "1.75";
157
+ readonly compact: "1.143";
158
+ readonly "tight-fixed": "1.067";
159
+ readonly medium: "1.538";
160
+ };
161
+ readonly fontWeight: {
162
+ readonly normal: "400";
163
+ readonly medium: "500";
164
+ readonly semibold: "600";
165
+ readonly bold: "700";
166
+ };
167
+ readonly breakpoint: {
168
+ readonly mobile: "810px";
169
+ readonly tablet: "1199px";
170
+ readonly desktop: "1200px";
171
+ readonly containerMax: "1440px";
172
+ readonly smallMobile: "390px";
173
+ };
174
+ };
175
+ export declare const semanticTokens: {
176
+ readonly color: {
177
+ readonly surface: {
178
+ readonly default: "#ffffff";
179
+ readonly raised: "#eceff3";
180
+ readonly sunken: "#f1f4f7";
181
+ };
182
+ readonly text: {
183
+ readonly default: "#0d0d12";
184
+ readonly muted: "#666d80";
185
+ readonly inverted: "#ffffff";
186
+ };
187
+ readonly brand: {
188
+ readonly primary: "#91ba00";
189
+ readonly accent: "#607a05";
190
+ readonly violet: "#c083e2";
191
+ readonly purple: "#8a5ae0";
192
+ readonly gold: "#ffc400";
193
+ readonly orange: "#ff6200";
194
+ readonly blue: "#0085ff";
195
+ readonly teal: "#00cc74";
196
+ readonly cyan: "#33d7f2";
197
+ };
198
+ readonly border: {
199
+ readonly subtle: "#dfe1e7";
200
+ readonly strong: "#666d80";
201
+ };
202
+ readonly overlay: "rgba(0, 0, 0, 0.5)";
203
+ readonly status: {
204
+ readonly error: "#ef4444";
205
+ };
206
+ readonly button: {
207
+ readonly primary: {
208
+ readonly background: "#0d0d12";
209
+ readonly text: "#ffffff";
210
+ readonly hover: {
211
+ readonly background: "#272735";
212
+ };
213
+ };
214
+ readonly secondary: {
215
+ readonly background: "#f1f4f7";
216
+ readonly text: "#0d0d12";
217
+ readonly hover: {
218
+ readonly background: "#eceff3";
219
+ };
220
+ };
221
+ readonly outline: {
222
+ readonly background: "transparent";
223
+ readonly text: "#0d0d12";
224
+ readonly border: "#dfe1e7";
225
+ readonly hover: {
226
+ readonly background: "#f1f4f7";
227
+ readonly border: "#666d80";
228
+ };
229
+ };
230
+ readonly text: {
231
+ readonly background: "transparent";
232
+ readonly text: "#0d0d12";
233
+ readonly hover: {
234
+ readonly background: "#f1f4f7";
235
+ };
236
+ };
237
+ readonly ghost: {
238
+ readonly background: "transparent";
239
+ readonly text: "#0d0d12";
240
+ readonly hover: {
241
+ readonly background: "#f1f4f7";
242
+ };
243
+ };
244
+ };
245
+ };
246
+ };
247
+ export declare const textStyles: {
248
+ readonly display: {
249
+ readonly fontSize: "64px";
250
+ readonly lineHeight: "1";
251
+ readonly fontWeight: "600";
252
+ readonly fontFamily: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
253
+ };
254
+ readonly "heading-2": {
255
+ readonly fontSize: "56px";
256
+ readonly lineHeight: "1";
257
+ readonly fontWeight: "600";
258
+ readonly fontFamily: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
259
+ };
260
+ readonly "heading-3": {
261
+ readonly fontSize: "32px";
262
+ readonly lineHeight: "1.2";
263
+ readonly fontWeight: "500";
264
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
265
+ };
266
+ readonly title: {
267
+ readonly fontSize: "20px";
268
+ readonly lineHeight: "1.3";
269
+ readonly fontWeight: "500";
270
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
271
+ };
272
+ readonly body: {
273
+ readonly fontSize: "16px";
274
+ readonly lineHeight: "1.6";
275
+ readonly fontWeight: "400";
276
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
277
+ };
278
+ readonly "body-strong": {
279
+ readonly fontSize: "16px";
280
+ readonly lineHeight: "1.6";
281
+ readonly fontWeight: "500";
282
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
283
+ };
284
+ readonly "nav-label": {
285
+ readonly fontSize: "15px";
286
+ readonly lineHeight: "1.067";
287
+ readonly fontWeight: "500";
288
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
289
+ };
290
+ readonly label: {
291
+ readonly fontSize: "14px";
292
+ readonly lineHeight: "1.143";
293
+ readonly fontWeight: "500";
294
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
295
+ };
296
+ readonly caption: {
297
+ readonly fontSize: "14px";
298
+ readonly lineHeight: "1.143";
299
+ readonly fontWeight: "400";
300
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
301
+ };
302
+ readonly "link-small": {
303
+ readonly fontSize: "13px";
304
+ readonly lineHeight: "1.538";
305
+ readonly fontWeight: "400";
306
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
307
+ };
308
+ };
309
+ export declare const tokens: {
310
+ readonly core: {
311
+ readonly color: {
312
+ readonly gray: {
313
+ readonly warm: {
314
+ readonly 0: "#ffffff";
315
+ readonly 25: "#fbfaf9";
316
+ readonly 50: "#f7f4f1";
317
+ readonly 100: "#f3efec";
318
+ };
319
+ readonly 0: "#ffffff";
320
+ readonly 25: "#f1f4f7";
321
+ readonly 50: "#eceff3";
322
+ readonly 100: "#dfe1e7";
323
+ readonly 200: "#666d80";
324
+ readonly 300: "#36384a";
325
+ readonly 301: "#272735";
326
+ readonly 302: "#0d0d12";
327
+ };
328
+ readonly green: {
329
+ readonly 0: "#fcfef3";
330
+ readonly 25: "#f4fadc";
331
+ readonly 50: "#e9f3b8";
332
+ readonly 100: "#91ba00";
333
+ readonly 200: "#607a05";
334
+ readonly 300: "#3b4309";
335
+ readonly 301: "#282d06";
336
+ };
337
+ readonly violet: {
338
+ readonly 0: "#fcfafe";
339
+ readonly 25: "#f5edfc";
340
+ readonly 50: "#ead6f7";
341
+ readonly 100: "#c083e2";
342
+ readonly 200: "#985dba";
343
+ readonly 300: "#5a3667";
344
+ readonly 301: "#382140";
345
+ };
346
+ readonly purple: {
347
+ readonly 0: "#faf9fe";
348
+ readonly 25: "#efe7fc";
349
+ readonly 50: "#ddcdf8";
350
+ readonly 100: "#8a5ae0";
351
+ readonly 200: "#643fa4";
352
+ readonly 300: "#3b2763";
353
+ readonly 301: "#140033";
354
+ };
355
+ readonly gold: {
356
+ readonly 0: "#fffef5";
357
+ readonly 25: "#fff9dd";
358
+ readonly 50: "#fff0b8";
359
+ readonly 100: "#ffc400";
360
+ readonly 200: "#947100";
361
+ readonly 300: "#664f00";
362
+ readonly 301: "#2e1700";
363
+ };
364
+ readonly orange: {
365
+ readonly 0: "#fffaf7";
366
+ readonly 25: "#ffece0";
367
+ readonly 50: "#ffd3b8";
368
+ readonly 100: "#ff6200";
369
+ readonly 200: "#cb4e00";
370
+ readonly 300: "#662700";
371
+ readonly 301: "#331400";
372
+ };
373
+ readonly blue: {
374
+ readonly 0: "#f6fbff";
375
+ readonly 25: "#e4f2ff";
376
+ readonly 50: "#c1e0ff";
377
+ readonly 100: "#0085ff";
378
+ readonly 200: "#0075e0";
379
+ readonly 300: "#003566";
380
+ readonly 301: "#001d38";
381
+ };
382
+ readonly teal: {
383
+ readonly 0: "#f4fdf9";
384
+ readonly 25: "#d8f7eb";
385
+ readonly 50: "#b1ecd7";
386
+ readonly 100: "#00cc74";
387
+ readonly 200: "#008852";
388
+ readonly 300: "#004d2d";
389
+ readonly 301: "#002918";
390
+ };
391
+ readonly cyan: {
392
+ readonly 0: "#f5feff";
393
+ readonly 25: "#e1f9fd";
394
+ readonly 50: "#bff0fa";
395
+ readonly 100: "#33d7f2";
396
+ readonly 200: "#128194";
397
+ readonly 300: "#15545e";
398
+ readonly 301: "#0a292e";
399
+ };
400
+ readonly black: "#000000";
401
+ readonly white: "#ffffff";
402
+ };
403
+ readonly spacing: {
404
+ readonly xs: "4px";
405
+ readonly s: "8px";
406
+ readonly m: "12px";
407
+ readonly l: "16px";
408
+ readonly xl: "24px";
409
+ readonly "2xl": "32px";
410
+ readonly "3xl": "48px";
411
+ readonly "4xl": "56px";
412
+ readonly "5xl": "80px";
413
+ readonly "6xl": "104px";
414
+ };
415
+ readonly radius: {
416
+ readonly xs: "4px";
417
+ readonly s: "6px";
418
+ readonly m: "8px";
419
+ readonly l: "12px";
420
+ readonly xl: "16px";
421
+ readonly full: "9999px";
422
+ };
423
+ readonly shadow: {
424
+ readonly sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
425
+ readonly m: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
426
+ readonly l: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
427
+ readonly xl: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
428
+ };
429
+ readonly fontFamily: {
430
+ readonly heading: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
431
+ readonly sans: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
432
+ readonly mono: "ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace";
433
+ };
434
+ readonly fontSize: {
435
+ readonly xs: "12px";
436
+ readonly sm: "13px";
437
+ readonly base: "14px";
438
+ readonly md: "15px";
439
+ readonly lg: "16px";
440
+ readonly xl: "18px";
441
+ readonly "2xl": "20px";
442
+ readonly "3xl": "24px";
443
+ readonly "4xl": "30px";
444
+ readonly "5xl": "32px";
445
+ readonly "6xl": "36px";
446
+ readonly "7xl": "40px";
447
+ readonly "8xl": "48px";
448
+ readonly "9xl": "56px";
449
+ readonly "10xl": "64px";
450
+ };
451
+ readonly lineHeight: {
452
+ readonly none: "1";
453
+ readonly tight: "1.2";
454
+ readonly snug: "1.3";
455
+ readonly normal: "1.5";
456
+ readonly relaxed: "1.6";
457
+ readonly loose: "1.75";
458
+ readonly compact: "1.143";
459
+ readonly "tight-fixed": "1.067";
460
+ readonly medium: "1.538";
461
+ };
462
+ readonly fontWeight: {
463
+ readonly normal: "400";
464
+ readonly medium: "500";
465
+ readonly semibold: "600";
466
+ readonly bold: "700";
467
+ };
468
+ readonly breakpoint: {
469
+ readonly mobile: "810px";
470
+ readonly tablet: "1199px";
471
+ readonly desktop: "1200px";
472
+ readonly containerMax: "1440px";
473
+ readonly smallMobile: "390px";
474
+ };
475
+ };
476
+ readonly semantic: {
477
+ readonly color: {
478
+ readonly surface: {
479
+ readonly default: "#ffffff";
480
+ readonly raised: "#eceff3";
481
+ readonly sunken: "#f1f4f7";
482
+ };
483
+ readonly text: {
484
+ readonly default: "#0d0d12";
485
+ readonly muted: "#666d80";
486
+ readonly inverted: "#ffffff";
487
+ };
488
+ readonly brand: {
489
+ readonly primary: "#91ba00";
490
+ readonly accent: "#607a05";
491
+ readonly violet: "#c083e2";
492
+ readonly purple: "#8a5ae0";
493
+ readonly gold: "#ffc400";
494
+ readonly orange: "#ff6200";
495
+ readonly blue: "#0085ff";
496
+ readonly teal: "#00cc74";
497
+ readonly cyan: "#33d7f2";
498
+ };
499
+ readonly border: {
500
+ readonly subtle: "#dfe1e7";
501
+ readonly strong: "#666d80";
502
+ };
503
+ readonly overlay: "rgba(0, 0, 0, 0.5)";
504
+ readonly status: {
505
+ readonly error: "#ef4444";
506
+ };
507
+ readonly button: {
508
+ readonly primary: {
509
+ readonly background: "#0d0d12";
510
+ readonly text: "#ffffff";
511
+ readonly hover: {
512
+ readonly background: "#272735";
513
+ };
514
+ };
515
+ readonly secondary: {
516
+ readonly background: "#f1f4f7";
517
+ readonly text: "#0d0d12";
518
+ readonly hover: {
519
+ readonly background: "#eceff3";
520
+ };
521
+ };
522
+ readonly outline: {
523
+ readonly background: "transparent";
524
+ readonly text: "#0d0d12";
525
+ readonly border: "#dfe1e7";
526
+ readonly hover: {
527
+ readonly background: "#f1f4f7";
528
+ readonly border: "#666d80";
529
+ };
530
+ };
531
+ readonly text: {
532
+ readonly background: "transparent";
533
+ readonly text: "#0d0d12";
534
+ readonly hover: {
535
+ readonly background: "#f1f4f7";
536
+ };
537
+ };
538
+ readonly ghost: {
539
+ readonly background: "transparent";
540
+ readonly text: "#0d0d12";
541
+ readonly hover: {
542
+ readonly background: "#f1f4f7";
543
+ };
544
+ };
545
+ };
546
+ };
547
+ };
548
+ readonly text: {
549
+ readonly display: {
550
+ readonly fontSize: "64px";
551
+ readonly lineHeight: "1";
552
+ readonly fontWeight: "600";
553
+ readonly fontFamily: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
554
+ };
555
+ readonly "heading-2": {
556
+ readonly fontSize: "56px";
557
+ readonly lineHeight: "1";
558
+ readonly fontWeight: "600";
559
+ readonly fontFamily: "'Rebond Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
560
+ };
561
+ readonly "heading-3": {
562
+ readonly fontSize: "32px";
563
+ readonly lineHeight: "1.2";
564
+ readonly fontWeight: "500";
565
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
566
+ };
567
+ readonly title: {
568
+ readonly fontSize: "20px";
569
+ readonly lineHeight: "1.3";
570
+ readonly fontWeight: "500";
571
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
572
+ };
573
+ readonly body: {
574
+ readonly fontSize: "16px";
575
+ readonly lineHeight: "1.6";
576
+ readonly fontWeight: "400";
577
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
578
+ };
579
+ readonly "body-strong": {
580
+ readonly fontSize: "16px";
581
+ readonly lineHeight: "1.6";
582
+ readonly fontWeight: "500";
583
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
584
+ };
585
+ readonly "nav-label": {
586
+ readonly fontSize: "15px";
587
+ readonly lineHeight: "1.067";
588
+ readonly fontWeight: "500";
589
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
590
+ };
591
+ readonly label: {
592
+ readonly fontSize: "14px";
593
+ readonly lineHeight: "1.143";
594
+ readonly fontWeight: "500";
595
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
596
+ };
597
+ readonly caption: {
598
+ readonly fontSize: "14px";
599
+ readonly lineHeight: "1.143";
600
+ readonly fontWeight: "400";
601
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
602
+ };
603
+ readonly "link-small": {
604
+ readonly fontSize: "13px";
605
+ readonly lineHeight: "1.538";
606
+ readonly fontWeight: "400";
607
+ readonly fontFamily: "'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif";
608
+ };
609
+ };
610
+ };
611
+ //# sourceMappingURL=tokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../src/tokens.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6Kb,CAAC;AAIX,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2EjB,CAAC;AAIX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6Db,CAAC;AAGX,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIT,CAAC"}