@teamturing/token-studio 1.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.
Files changed (54) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1 -0
  3. package/dist/foundation/breakpoint/device.d.ts +6 -0
  4. package/dist/foundation/breakpoint/index.d.ts +8 -0
  5. package/dist/foundation/gradient/colorStopList/index.d.ts +7 -0
  6. package/dist/foundation/gradient/direction/index.d.ts +7 -0
  7. package/dist/foundation/gradient/index.d.ts +14 -0
  8. package/dist/foundation/opacity/index.d.ts +4 -0
  9. package/dist/foundation/palette/index.d.ts +148 -0
  10. package/dist/foundation/rounding/index.d.ts +12 -0
  11. package/dist/foundation/shadow/index.d.ts +4 -0
  12. package/dist/foundation/spacing/index.d.ts +29 -0
  13. package/dist/foundation/typography/fontSize/index.d.ts +17 -0
  14. package/dist/foundation/typography/fontWeight/index.d.ts +12 -0
  15. package/dist/foundation/typography/index.d.ts +32 -0
  16. package/dist/foundation/typography/lineHeight/index.d.ts +5 -0
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.js +651 -0
  19. package/dist/token/breakpoints/index.d.ts +4 -0
  20. package/dist/token/color/index.d.ts +253 -0
  21. package/dist/token/elevation/index.d.ts +18 -0
  22. package/dist/token/gradient/index.d.ts +44 -0
  23. package/dist/token/index.d.ts +15 -0
  24. package/dist/token/opacity/index.d.ts +11 -0
  25. package/dist/token/radii/index.d.ts +13 -0
  26. package/dist/token/space/index.d.ts +53 -0
  27. package/dist/token/typography/fontSizes.d.ts +15 -0
  28. package/dist/token/typography/fontWeights.d.ts +7 -0
  29. package/dist/token/typography/index.d.ts +134 -0
  30. package/dist/token/typography/lineHeights.d.ts +6 -0
  31. package/esm/foundation/breakpoint/device.js +7 -0
  32. package/esm/foundation/gradient/colorStopList/index.js +8 -0
  33. package/esm/foundation/gradient/direction/index.js +8 -0
  34. package/esm/foundation/opacity/index.js +5 -0
  35. package/esm/foundation/palette/index.js +90 -0
  36. package/esm/foundation/rounding/index.js +13 -0
  37. package/esm/foundation/shadow/index.js +5 -0
  38. package/esm/foundation/spacing/index.js +56 -0
  39. package/esm/foundation/typography/fontSize/index.js +18 -0
  40. package/esm/foundation/typography/fontWeight/index.js +13 -0
  41. package/esm/foundation/typography/lineHeight/index.js +6 -0
  42. package/esm/index.js +11 -0
  43. package/esm/token/breakpoints/index.js +6 -0
  44. package/esm/token/color/index.js +140 -0
  45. package/esm/token/elevation/index.js +16 -0
  46. package/esm/token/gradient/index.js +33 -0
  47. package/esm/token/opacity/index.js +10 -0
  48. package/esm/token/radii/index.js +15 -0
  49. package/esm/token/space/index.js +55 -0
  50. package/esm/token/typography/fontSizes.js +17 -0
  51. package/esm/token/typography/fontWeights.js +9 -0
  52. package/esm/token/typography/index.js +133 -0
  53. package/esm/token/typography/lineHeights.js +8 -0
  54. package/package.json +32 -0
package/dist/index.js ADDED
@@ -0,0 +1,651 @@
1
+ 'use strict';
2
+
3
+ const device = {
4
+ deviceDesktop: 1280,
5
+ deviceTablet: 900,
6
+ deviceMobile: 640
7
+ };
8
+
9
+ const baseBreakpoints = [device.deviceMobile, device.deviceTablet, device.deviceDesktop];
10
+ const breakpoints = baseBreakpoints.map(value => `${value + 1}px`);
11
+
12
+ const gray = {
13
+ gray50: '#F9FAFB',
14
+ gray100: '#F3F4F6',
15
+ gray200: '#E5E7EB',
16
+ gray300: '#D1D5DB',
17
+ gray400: '#8D94A0',
18
+ gray500: '#7A828D',
19
+ gray600: '#6F7680',
20
+ gray700: '#575C64',
21
+ gray800: '#43484E',
22
+ gray900: '#33373B'
23
+ };
24
+ const violet = {
25
+ violet50: '#F3EFFD',
26
+ violet100: '#E8E1FB',
27
+ violet200: '#D9CDF9',
28
+ violet300: '#C6B5F6',
29
+ violet400: '#9C7EEF',
30
+ violet500: '#835EEB',
31
+ violet600: '#7756D6',
32
+ violet700: '#5D43A7',
33
+ violet800: '#483481',
34
+ violet900: '#372763'
35
+ };
36
+ const green = {
37
+ green50: '#E9FAF6',
38
+ green100: '#BAEFE2',
39
+ green200: '#98E8D4',
40
+ green300: '#69DDC0',
41
+ green400: '#4CD6B4',
42
+ green500: '#1FCCA1',
43
+ green600: '#1CBA93',
44
+ green700: '#169172',
45
+ green800: '#117059',
46
+ green900: '#0D5644'
47
+ };
48
+ const yellow = {
49
+ yellow50: '#FFF9E6',
50
+ yellow100: '#FFECB2',
51
+ yellow200: '#FFE28D',
52
+ yellow300: '#FFD559',
53
+ yellow400: '#FFCD39',
54
+ yellow500: '#FFC107',
55
+ yellow600: '#E8B006',
56
+ yellow700: '#B58905',
57
+ yellow800: '#8C6A04',
58
+ yellow900: '#6B5103'
59
+ };
60
+ const red = {
61
+ red50: '#FEE9EB',
62
+ red100: '#FBBCC0',
63
+ red200: '#F99CA2',
64
+ red300: '#F66E78',
65
+ red400: '#F5525D',
66
+ red500: '#F22735',
67
+ red600: '#DC2330',
68
+ red700: '#AC1C26',
69
+ red800: '#85151D',
70
+ red900: '#661016'
71
+ };
72
+ const blue = {
73
+ blue50: '#edf2fd',
74
+ blue100: '#c6d8fa',
75
+ blue200: '#abc5f7',
76
+ blue300: '#84aaf4',
77
+ blue400: '#6d99f1',
78
+ blue500: '#4880ee',
79
+ blue600: '#4274d9',
80
+ blue700: '#335ba9',
81
+ blue800: '#284683',
82
+ blue900: '#1e3664'
83
+ };
84
+ const shade = {
85
+ transparent: '#FFFFFF00',
86
+ white: '#FFFFFF',
87
+ white10A: '#FFFFFF1A',
88
+ black: '#000000',
89
+ black60A: '#00000099'
90
+ };
91
+ const palette = {
92
+ ...gray,
93
+ ...violet,
94
+ ...green,
95
+ ...yellow,
96
+ ...red,
97
+ ...blue,
98
+ ...shade
99
+ };
100
+
101
+ const textColor = {
102
+ 'text/primary': palette.violet500,
103
+ 'text/accent/blue': palette.blue500,
104
+ 'text/accent/green': palette.green500,
105
+ 'text/accent/yellow': palette.yellow500,
106
+ 'text/accent/red': palette.red500,
107
+ 'text/neutral/subtlest': palette.gray400,
108
+ 'text/neutral/subtler': palette.gray500,
109
+ 'text/neutral/subtle': palette.gray700,
110
+ 'text/neutral': palette.gray900,
111
+ 'text/inverse': palette.white,
112
+ 'text/inverse/subtle': palette.gray200,
113
+ 'text/inverse/subtler': palette.gray300,
114
+ 'text/disabled': palette.gray400,
115
+ 'text/success': palette.green500,
116
+ 'text/warning': palette.yellow500,
117
+ 'text/danger': palette.red500,
118
+ 'text/selected/neutral': palette.gray900
119
+ };
120
+ const bgColor = {
121
+ 'bg/secondary': palette.violet50,
122
+ 'bg/secondary/hovered': palette.violet200,
123
+ 'bg/secondary/pressed': palette.violet200,
124
+ 'bg/primary': palette.violet500,
125
+ 'bg/primary/hovered': palette.violet700,
126
+ 'bg/primary/pressed': palette.violet700,
127
+ 'bg/neutral/subtler': palette.transparent,
128
+ 'bg/neutral/subtler/hovered': palette.gray100,
129
+ 'bg/neutral/subtler/pressed': palette.gray100,
130
+ 'bg/neutral/subtle': palette.gray50,
131
+ 'bg/neutral/subtle/hovered': palette.gray200,
132
+ 'bg/neutral/subtle/pressed': palette.gray200,
133
+ 'bg/neutral': palette.gray100,
134
+ 'bg/neutral/hovered': palette.gray300,
135
+ 'bg/neutral/pressed': palette.gray300,
136
+ 'bg/neutral/bold': palette.gray700,
137
+ 'bg/neutral/bold/hovered': palette.gray900,
138
+ 'bg/neutral/bold/pressed': palette.gray900,
139
+ 'bg/neutral/bolder': palette.gray900,
140
+ 'bg/neutral/bolder/hovered': palette.black,
141
+ 'bg/neutral/bolder/pressed': palette.black,
142
+ 'bg/disabled': palette.gray100,
143
+ 'bg/disabled/subtlest': palette.transparent,
144
+ 'bg/input': palette.white,
145
+ 'bg/accent/green/subtlest': palette.green50,
146
+ 'bg/accent/yellow/subtlest': palette.yellow50,
147
+ 'bg/accent/red/subtlest': palette.red50,
148
+ 'bg/accent/red/subtle': palette.red400,
149
+ 'bg/accent/red': palette.red500,
150
+ 'bg/accent/gray/subtlest': palette.gray200,
151
+ 'bg/accent/blue/subtlest': palette.blue50,
152
+ 'bg/selected/violet': palette.violet500,
153
+ 'bg/selected/neutral': palette.gray900,
154
+ 'bg/selected/neutral/subtle': palette.gray100,
155
+ 'bg/inverse': palette.black,
156
+ 'bg/inverse/subtlest': palette.white10A,
157
+ 'bg/success': palette.green50,
158
+ 'bg/success/bold': palette.green500,
159
+ 'bg/warning': palette.yellow50,
160
+ 'bg/warning/bold': palette.yellow500,
161
+ 'bg/danger': palette.red50,
162
+ 'bg/danger/bold': palette.red400,
163
+ 'bg/danger/bold/hovered': palette.red600,
164
+ 'bg/danger/bold/pressed': palette.red600
165
+ };
166
+ const borderColor = {
167
+ 'border/neutral/subtle': palette.gray100,
168
+ 'border/neutral': palette.gray200,
169
+ 'border/neutral/bolder': palette.gray300,
170
+ 'border/input': palette.gray200,
171
+ 'border/inverse': palette.white10A,
172
+ 'border/disabled': palette.gray100,
173
+ 'border/primary': palette.violet500,
174
+ 'border/hovered': palette.blue300,
175
+ 'border/focused': palette.blue500,
176
+ 'border/danger': palette.red500,
177
+ 'border/success': palette.green500
178
+ };
179
+ const iconColor = {
180
+ 'icon/neutral': palette.gray300,
181
+ 'icon/neutral/bold': palette.gray400,
182
+ 'icon/neutral/bolder': palette.gray700,
183
+ 'icon/accent/gray': palette.gray900,
184
+ 'icon/accent/blue': palette.blue500,
185
+ 'icon/accent/blue/bold': palette.blue700,
186
+ 'icon/accent/green': palette.green500,
187
+ 'icon/accent/yellow': palette.yellow500,
188
+ 'icon/accent/red': palette.red500,
189
+ 'icon/inverse': palette.white,
190
+ 'icon/disabled': palette.gray300,
191
+ 'icon/disabled/subtler': palette.gray200,
192
+ 'icon/selected/primary': palette.violet500,
193
+ 'icon/selected/neutral': palette.gray900,
194
+ 'icon/primary': palette.violet500,
195
+ 'icon/primary/subtle': palette.violet300,
196
+ 'icon/primary/bold': palette.violet700,
197
+ 'icon/success': palette.green500,
198
+ 'icon/warning': palette.yellow500,
199
+ 'icon/danger': palette.red500
200
+ };
201
+ const linkColor = {
202
+ 'link': palette.blue500,
203
+ 'link/hovered': palette.blue700,
204
+ 'link/pressed': palette.blue700,
205
+ 'link/neutral': palette.gray500,
206
+ 'link/neutral/hovered': palette.gray700,
207
+ 'link/neutral/pressed': palette.gray700,
208
+ 'link/neutral/bold': palette.gray700,
209
+ 'link/neutral/bold/hovered': palette.gray900,
210
+ 'link/neutral/bold/pressed': palette.gray900,
211
+ 'link/disabled': palette.gray700
212
+ };
213
+ const dimColor = {
214
+ dim: palette.black60A
215
+ };
216
+ const scaleColor = {
217
+ 'scale/violet/0': palette.violet50,
218
+ 'scale/violet/1': palette.violet100,
219
+ 'scale/violet/2': palette.violet200,
220
+ 'scale/violet/3': palette.violet300,
221
+ 'scale/violet/4': palette.violet400,
222
+ 'scale/violet/5': palette.violet500,
223
+ 'scale/violet/6': palette.violet600,
224
+ 'scale/violet/7': palette.violet700,
225
+ 'scale/violet/8': palette.violet800,
226
+ 'scale/violet/9': palette.violet900
227
+ };
228
+ const color = {
229
+ ...textColor,
230
+ ...bgColor,
231
+ ...borderColor,
232
+ ...iconColor,
233
+ ...linkColor,
234
+ ...dimColor,
235
+ ...scaleColor
236
+ };
237
+
238
+ const shadow = {
239
+ shadowMedium: '0px 0px 1px 0px rgba(0, 0, 0, 0.06), 0px 8px 24px 0px rgba(0, 0, 0, 0.12)'
240
+ };
241
+
242
+ const surfaceElevation = {
243
+ 'surface': palette.white,
244
+ 'surface/overlay': palette.white
245
+ };
246
+ const shadowElevation = {
247
+ 'shadow/overlay': shadow.shadowMedium
248
+ };
249
+ const elevation = {
250
+ ...surfaceElevation,
251
+ ...shadowElevation
252
+ };
253
+
254
+ const colorStopList = {
255
+ colorStopListVioletPink: '#8E6CF0, #CF75F3',
256
+ colorStopListBlackGray: '#0F0E0F, #595959',
257
+ colorStopListWhite: '#FFFFFF, #FFFFFF00',
258
+ colorStopListBlack: '#000000, #00000000'
259
+ };
260
+
261
+ const direction = {
262
+ directionToRight: 'to right',
263
+ directionToLeft: 'to left',
264
+ directionToRightBottom: 'to right bottom',
265
+ directionToTop: 'to top'
266
+ };
267
+
268
+ const generateGradientTokenValue = (direction$1, colorStopList$1) => `${direction[direction$1]}, ${colorStopList[colorStopList$1]}`;
269
+ const textGradient = {
270
+ 'text/accent': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
271
+ };
272
+ const bgGradient = {
273
+ 'bg/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink'),
274
+ 'bg/accent/neutral': generateGradientTokenValue('directionToRightBottom', 'colorStopListBlackGray')
275
+ };
276
+ const borderGradient = {
277
+ 'border/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
278
+ };
279
+ const overlayGradient = {
280
+ 'overlay/subtlest/toright': generateGradientTokenValue('directionToRight', 'colorStopListWhite'),
281
+ 'overlay/subtlest/toleft': generateGradientTokenValue('directionToLeft', 'colorStopListWhite'),
282
+ 'overlay/subtlest/totop': generateGradientTokenValue('directionToTop', 'colorStopListWhite'),
283
+ 'overlay/floating/toright': generateGradientTokenValue('directionToRight', 'colorStopListWhite'),
284
+ 'overlay/floating/toleft': generateGradientTokenValue('directionToLeft', 'colorStopListWhite'),
285
+ 'overlay/floating/totop': generateGradientTokenValue('directionToTop', 'colorStopListWhite'),
286
+ 'overlay/bold/toright': generateGradientTokenValue('directionToRight', 'colorStopListBlack'),
287
+ 'overlay/bold/toleft': generateGradientTokenValue('directionToLeft', 'colorStopListBlack'),
288
+ 'overlay/bold/totop': generateGradientTokenValue('directionToTop', 'colorStopListBlack')
289
+ };
290
+ const gradient = {
291
+ ...textGradient,
292
+ ...bgGradient,
293
+ ...borderGradient,
294
+ ...overlayGradient
295
+ };
296
+
297
+ const opacity$1 = {
298
+ opacity50: 0.5
299
+ };
300
+
301
+ const accentOpacity = {
302
+ accent: opacity$1.opacity50
303
+ };
304
+ const opacity = {
305
+ ...accentOpacity
306
+ };
307
+
308
+ const rounding = {
309
+ rounding0: 0,
310
+ rounding4: 4,
311
+ rounding8: 8,
312
+ rounding12: 12,
313
+ rounding16: 16,
314
+ rounding20: 20,
315
+ rounding24: 24,
316
+ rounding32: 32,
317
+ rounding9999: 9999
318
+ };
319
+
320
+ const radii = {
321
+ none: rounding.rounding0,
322
+ xxs: rounding.rounding4,
323
+ xs: rounding.rounding8,
324
+ s: rounding.rounding12,
325
+ m: rounding.rounding16,
326
+ l: rounding.rounding20,
327
+ xl: rounding.rounding24,
328
+ xxl: rounding.rounding32,
329
+ full: rounding.rounding9999
330
+ };
331
+
332
+ const unit = 4;
333
+ const spacing = {
334
+ spacing0: 0 * unit,
335
+ // 0
336
+ spacing1: 1,
337
+ // 1
338
+ spacing2: 0.5 * unit,
339
+ // 2
340
+ spacing4: 1 * unit,
341
+ // 4
342
+ spacing6: 1.5 * unit,
343
+ // 6
344
+ spacing8: 2 * unit,
345
+ // 8
346
+ spacing12: 3 * unit,
347
+ // 12
348
+ spacing16: 4 * unit,
349
+ // 16
350
+ spacing20: 5 * unit,
351
+ // 20
352
+ spacing24: 6 * unit,
353
+ // 24
354
+ spacing28: 7 * unit,
355
+ // 28
356
+ spacing32: 8 * unit,
357
+ // 32
358
+ spacing40: 10 * unit,
359
+ // 40
360
+ spacing48: 12 * unit,
361
+ // 48
362
+ spacing56: 14 * unit,
363
+ // 56
364
+ spacing64: 16 * unit,
365
+ // 64
366
+ spacing72: 18 * unit,
367
+ // 72
368
+ spacing80: 20 * unit,
369
+ // 80
370
+ spacing96: 24 * unit,
371
+ // 96
372
+ spacing112: 28 * unit,
373
+ // 112
374
+ spacing120: 30 * unit,
375
+ // 120
376
+ spacing128: 32 * unit,
377
+ // 128
378
+ spacing160: 40 * unit,
379
+ // 160
380
+ spacing192: 48 * unit,
381
+ // 192
382
+ spacing200: 50 * unit,
383
+ // 200
384
+ spacing320: 80 * unit // 320
385
+ };
386
+
387
+ const space = {
388
+ '-80': -spacing.spacing320,
389
+ '-50': -spacing.spacing200,
390
+ '-48': -spacing.spacing192,
391
+ '-40': -spacing.spacing160,
392
+ '-32': -spacing.spacing128,
393
+ '-30': -spacing.spacing120,
394
+ '-28': -spacing.spacing112,
395
+ '-24': -spacing.spacing96,
396
+ '-20': -spacing.spacing80,
397
+ '-18': -spacing.spacing72,
398
+ '-16': -spacing.spacing64,
399
+ '-14': -spacing.spacing56,
400
+ '-12': -spacing.spacing48,
401
+ '-10': -spacing.spacing40,
402
+ '-8': -spacing.spacing32,
403
+ '-7': -spacing.spacing28,
404
+ '-6': -spacing.spacing24,
405
+ '-5': -spacing.spacing20,
406
+ '-4': -spacing.spacing16,
407
+ '-3': -spacing.spacing12,
408
+ '-2': -spacing.spacing8,
409
+ '-1': -spacing.spacing4,
410
+ '-0.5': -spacing.spacing2,
411
+ '-0.25': -spacing.spacing1,
412
+ 0: spacing.spacing0,
413
+ 0.25: spacing.spacing1,
414
+ 0.5: spacing.spacing2,
415
+ 1: spacing.spacing4,
416
+ 2: spacing.spacing8,
417
+ 3: spacing.spacing12,
418
+ 4: spacing.spacing16,
419
+ 5: spacing.spacing20,
420
+ 6: spacing.spacing24,
421
+ 7: spacing.spacing28,
422
+ 8: spacing.spacing32,
423
+ 10: spacing.spacing40,
424
+ 12: spacing.spacing48,
425
+ 14: spacing.spacing56,
426
+ 16: spacing.spacing64,
427
+ 18: spacing.spacing72,
428
+ 20: spacing.spacing80,
429
+ 24: spacing.spacing96,
430
+ 28: spacing.spacing112,
431
+ 30: spacing.spacing120,
432
+ 32: spacing.spacing128,
433
+ 40: spacing.spacing160,
434
+ 48: spacing.spacing192,
435
+ 50: spacing.spacing200,
436
+ 80: spacing.spacing320
437
+ };
438
+
439
+ const fontSize = {
440
+ fontSize50: 10,
441
+ fontSize100: 12,
442
+ fontSize200: 14,
443
+ fontSize300: 16,
444
+ fontSize400: 18,
445
+ fontSize500: 20,
446
+ fontSize600: 22,
447
+ fontSize700: 24,
448
+ fontSize800: 28,
449
+ fontSize900: 32,
450
+ fontSize1000: 40,
451
+ fontSize1100: 48,
452
+ fontSize1200: 64,
453
+ fontSize1300: 100
454
+ };
455
+
456
+ const fontWeight = {
457
+ fontWeight100: 100,
458
+ fontWeight200: 200,
459
+ fontWeight300: 300,
460
+ fontWeight400: 400,
461
+ fontWeight500: 500,
462
+ fontWeight600: 600,
463
+ fontWeight700: 700,
464
+ fontWeight800: 800,
465
+ fontWeight900: 900
466
+ };
467
+
468
+ const lineHeight = {
469
+ lineHeight1: 1.4,
470
+ lineHeight2: 1.5
471
+ };
472
+
473
+ const fontSizes = {
474
+ xxs: fontSize.fontSize100,
475
+ xs: fontSize.fontSize200,
476
+ s: fontSize.fontSize300,
477
+ m: fontSize.fontSize500,
478
+ l: fontSize.fontSize700,
479
+ xl: fontSize.fontSize800,
480
+ xxl: fontSize.fontSize900,
481
+ display4: fontSize.fontSize1000,
482
+ display3: fontSize.fontSize1100,
483
+ display2: fontSize.fontSize1200,
484
+ display1: fontSize.fontSize1300
485
+ };
486
+
487
+ const fontWeights = {
488
+ regular: fontWeight.fontWeight400,
489
+ medium: fontWeight.fontWeight500,
490
+ bold: fontWeight.fontWeight700
491
+ };
492
+
493
+ const lineHeights = {
494
+ 1: lineHeight.lineHeight1,
495
+ 2: lineHeight.lineHeight2
496
+ };
497
+
498
+ const typography = {
499
+ 'display1': {
500
+ fontSize: fontSizes.display1,
501
+ fontWeight: fontWeights.bold,
502
+ lineHeight: lineHeights[1]
503
+ },
504
+ 'display2': {
505
+ fontSize: fontSizes.display2,
506
+ fontWeight: fontWeights.bold,
507
+ lineHeight: lineHeights[1]
508
+ },
509
+ 'display3': {
510
+ fontSize: fontSizes.display3,
511
+ fontWeight: fontWeights.bold,
512
+ lineHeight: lineHeights[1]
513
+ },
514
+ 'display4': {
515
+ fontSize: fontSizes.display4,
516
+ fontWeight: fontWeights.bold,
517
+ lineHeight: lineHeights[2]
518
+ },
519
+ 'xxl/regular': {
520
+ fontSize: fontSizes.xxl,
521
+ fontWeight: fontWeights.regular,
522
+ lineHeight: lineHeights[2]
523
+ },
524
+ 'xxl': {
525
+ fontSize: fontSizes.xxl,
526
+ fontWeight: fontWeights.medium,
527
+ lineHeight: lineHeights[2]
528
+ },
529
+ 'xxl/bold': {
530
+ fontSize: fontSizes.xxl,
531
+ fontWeight: fontWeights.bold,
532
+ lineHeight: lineHeights[2]
533
+ },
534
+ 'xl/regular': {
535
+ fontSize: fontSizes.xl,
536
+ fontWeight: fontWeights.regular,
537
+ lineHeight: lineHeights[2]
538
+ },
539
+ 'xl': {
540
+ fontSize: fontSizes.xl,
541
+ fontWeight: fontWeights.medium,
542
+ lineHeight: lineHeights[2]
543
+ },
544
+ 'xl/bold': {
545
+ fontSize: fontSizes.xl,
546
+ fontWeight: fontWeights.bold,
547
+ lineHeight: lineHeights[2]
548
+ },
549
+ 'l/regular': {
550
+ fontSize: fontSizes.l,
551
+ fontWeight: fontWeights.regular,
552
+ lineHeight: lineHeights[2]
553
+ },
554
+ 'l': {
555
+ fontSize: fontSizes.l,
556
+ fontWeight: fontWeights.medium,
557
+ lineHeight: lineHeights[2]
558
+ },
559
+ 'l/bold': {
560
+ fontSize: fontSizes.l,
561
+ fontWeight: fontWeights.bold,
562
+ lineHeight: lineHeights[2]
563
+ },
564
+ 'm/regular': {
565
+ fontSize: fontSizes.m,
566
+ fontWeight: fontWeights.regular,
567
+ lineHeight: lineHeights[2]
568
+ },
569
+ 'm': {
570
+ fontSize: fontSizes.m,
571
+ fontWeight: fontWeights.medium,
572
+ lineHeight: lineHeights[2]
573
+ },
574
+ 'm/bold': {
575
+ fontSize: fontSizes.m,
576
+ fontWeight: fontWeights.bold,
577
+ lineHeight: lineHeights[2]
578
+ },
579
+ 's/regular': {
580
+ fontSize: fontSizes.s,
581
+ fontWeight: fontWeights.regular,
582
+ lineHeight: lineHeights[2]
583
+ },
584
+ 's': {
585
+ fontSize: fontSizes.s,
586
+ fontWeight: fontWeights.medium,
587
+ lineHeight: lineHeights[2]
588
+ },
589
+ 's/bold': {
590
+ fontSize: fontSizes.s,
591
+ fontWeight: fontWeights.bold,
592
+ lineHeight: lineHeights[2]
593
+ },
594
+ 'xs/regular': {
595
+ fontSize: fontSizes.xs,
596
+ fontWeight: fontWeights.regular,
597
+ lineHeight: lineHeights[2]
598
+ },
599
+ 'xs': {
600
+ fontSize: fontSizes.xs,
601
+ fontWeight: fontWeights.medium,
602
+ lineHeight: lineHeights[2]
603
+ },
604
+ 'xs/bold': {
605
+ fontSize: fontSizes.xs,
606
+ fontWeight: fontWeights.bold,
607
+ lineHeight: lineHeights[2]
608
+ },
609
+ 'xxs/regular': {
610
+ fontSize: fontSizes.xxs,
611
+ fontWeight: fontWeights.regular,
612
+ lineHeight: lineHeights[2]
613
+ },
614
+ 'xxs': {
615
+ fontSize: fontSizes.xxs,
616
+ fontWeight: fontWeights.medium,
617
+ lineHeight: lineHeights[2]
618
+ },
619
+ 'xxs/bold': {
620
+ fontSize: fontSizes.xxs,
621
+ fontWeight: fontWeights.bold,
622
+ lineHeight: lineHeights[2]
623
+ }
624
+ };
625
+
626
+ exports.accentOpacity = accentOpacity;
627
+ exports.baseBreakpoints = baseBreakpoints;
628
+ exports.bgColor = bgColor;
629
+ exports.bgGradient = bgGradient;
630
+ exports.borderColor = borderColor;
631
+ exports.borderGradient = borderGradient;
632
+ exports.breakpoints = breakpoints;
633
+ exports.color = color;
634
+ exports.dimColor = dimColor;
635
+ exports.elevation = elevation;
636
+ exports.fontSizes = fontSizes;
637
+ exports.fontWeights = fontWeights;
638
+ exports.gradient = gradient;
639
+ exports.iconColor = iconColor;
640
+ exports.lineHeights = lineHeights;
641
+ exports.linkColor = linkColor;
642
+ exports.opacity = opacity;
643
+ exports.overlayGradient = overlayGradient;
644
+ exports.radii = radii;
645
+ exports.scaleColor = scaleColor;
646
+ exports.shadowElevation = shadowElevation;
647
+ exports.space = space;
648
+ exports.surfaceElevation = surfaceElevation;
649
+ exports.textColor = textColor;
650
+ exports.textGradient = textGradient;
651
+ exports.typography = typography;
@@ -0,0 +1,4 @@
1
+ declare const baseBreakpoints: number[];
2
+ declare const breakpoints: string[];
3
+ export default breakpoints;
4
+ export { baseBreakpoints };