@clickhouse/click-ui 0.0.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 (151) hide show
  1. package/.eslintrc.cjs +32 -0
  2. package/.github/workflows/deployment.yml +34 -0
  3. package/.storybook/main.ts +18 -0
  4. package/.storybook/preview-head.html +4 -0
  5. package/.storybook/preview.tsx +67 -0
  6. package/README.md +11 -0
  7. package/app/.babelrc +27 -0
  8. package/app/.eslintrc.json +6 -0
  9. package/app/.storybook/main.ts +17 -0
  10. package/app/.storybook/preview.tsx +26 -0
  11. package/app/README.md +38 -0
  12. package/app/next.config.js +6 -0
  13. package/app/package-lock.json +28711 -0
  14. package/app/package.json +44 -0
  15. package/app/public/favicon.ico +0 -0
  16. package/app/public/next.svg +1 -0
  17. package/app/public/vercel.svg +1 -0
  18. package/app/src/assets/RightArrow/right-arrow.tsx +17 -0
  19. package/app/src/assets/S3Logo/s3-logo.tsx +31 -0
  20. package/app/src/assets/amazon_s3.svg +9 -0
  21. package/app/src/assets/arrow.svg +3 -0
  22. package/app/src/globals.d.ts +4 -0
  23. package/app/src/pages/_app.tsx +8 -0
  24. package/app/src/pages/_document.tsx +17 -0
  25. package/app/src/pages/api/hello.ts +13 -0
  26. package/app/src/pages/index.tsx +141 -0
  27. package/app/src/pages/label.tsx +27 -0
  28. package/app/src/stories/assets/code-brackets.svg +1 -0
  29. package/app/src/stories/assets/colors.svg +1 -0
  30. package/app/src/stories/assets/comments.svg +1 -0
  31. package/app/src/stories/assets/direction.svg +1 -0
  32. package/app/src/stories/assets/flow.svg +1 -0
  33. package/app/src/stories/assets/plugin.svg +1 -0
  34. package/app/src/stories/assets/repo.svg +1 -0
  35. package/app/src/stories/assets/stackalt.svg +1 -0
  36. package/app/src/styles/Home.module.css +235 -0
  37. package/app/src/styles/globals.css +111 -0
  38. package/app/src/styles/types.ts +1031 -0
  39. package/app/src/styles/variables.classic.css +16 -0
  40. package/app/src/styles/variables.classic.json +31 -0
  41. package/app/src/styles/variables.css +763 -0
  42. package/app/src/styles/variables.dark.css +135 -0
  43. package/app/src/styles/variables.dark.json +339 -0
  44. package/app/src/styles/variables.json +1029 -0
  45. package/app/src/styles/variables.light.css +203 -0
  46. package/app/src/styles/variables.light.json +478 -0
  47. package/app/tokens/themes/$metadata.json +9 -0
  48. package/app/tokens/themes/$themes.json +1 -0
  49. package/app/tokens/themes/classic.json +58 -0
  50. package/app/tokens/themes/component.json +868 -0
  51. package/app/tokens/themes/dark.json +937 -0
  52. package/app/tokens/themes/light.json +1380 -0
  53. package/app/tokens/themes/primitives.json +859 -0
  54. package/app/tsconfig.json +23 -0
  55. package/build-tokens.js +131 -0
  56. package/index.html +17 -0
  57. package/jest.config.ts +11 -0
  58. package/package.json +77 -0
  59. package/public/vite.svg +1 -0
  60. package/src/App.css +1 -0
  61. package/src/App.module.css +235 -0
  62. package/src/App.tsx +154 -0
  63. package/src/assets/RightArrow/RightArrow.tsx +17 -0
  64. package/src/assets/S3Logo/S3Logo.tsx +31 -0
  65. package/src/assets/react.svg +1 -0
  66. package/src/components/Accordion/Accordion.stories.tsx +78 -0
  67. package/src/components/Accordion/Accordion.test.tsx +46 -0
  68. package/src/components/Accordion/Accordion.tsx +118 -0
  69. package/src/components/Badge/Badge.stories.ts +14 -0
  70. package/src/components/Badge/Badge.test.tsx +11 -0
  71. package/src/components/Badge/Badge.tsx +24 -0
  72. package/src/components/BigStat/BigStat.stories.ts +15 -0
  73. package/src/components/BigStat/BigStat.tsx +37 -0
  74. package/src/components/Button/Button.stories.ts +82 -0
  75. package/src/components/Button/Button.test.tsx +32 -0
  76. package/src/components/Button/Button.tsx +97 -0
  77. package/src/components/ButtonGroup/ButtonGroup.stories.ts +14 -0
  78. package/src/components/ButtonGroup/ButtonGroup.tsx +78 -0
  79. package/src/components/Card/Card.stories.ts +19 -0
  80. package/src/components/Card/Card.tsx +107 -0
  81. package/src/components/FormField/FormField.stories.ts +14 -0
  82. package/src/components/FormField/FormField.tsx +22 -0
  83. package/src/components/Icon/Icon.stories.ts +46 -0
  84. package/src/components/Icon/Icon.tsx +90 -0
  85. package/src/components/Icon/types.ts +18 -0
  86. package/src/components/IconButton/IconButton.stories.ts +16 -0
  87. package/src/components/IconButton/IconButton.tsx +94 -0
  88. package/src/components/SidebarNavigationItem/SidebarNavigationItem.stories.tsx +28 -0
  89. package/src/components/SidebarNavigationItem/SidebarNavigationItem.tsx +112 -0
  90. package/src/components/Switch/Switch.stories.ts +14 -0
  91. package/src/components/Switch/Switch.tsx +106 -0
  92. package/src/components/Tabs/Tabs.stories.tsx +71 -0
  93. package/src/components/Tabs/Tabs.test.tsx +86 -0
  94. package/src/components/Tabs/Tabs.tsx +82 -0
  95. package/src/components/icons/ChatIcon.tsx +22 -0
  96. package/src/components/icons/ChevronDown.tsx +6 -0
  97. package/src/components/icons/ChevronRight.tsx +20 -0
  98. package/src/components/icons/DatabaseIcon.tsx +33 -0
  99. package/src/components/icons/FilterIcon.tsx +24 -0
  100. package/src/components/icons/Flags/EuropeanUnion.tsx +174 -0
  101. package/src/components/icons/Flags/Germany.tsx +25 -0
  102. package/src/components/icons/Flags/India.tsx +48 -0
  103. package/src/components/icons/Flags/Ireland.tsx +32 -0
  104. package/src/components/icons/Flags/Netherlands.tsx +29 -0
  105. package/src/components/icons/Flags/Singapore.tsx +43 -0
  106. package/src/components/icons/Flags/UnitedKingdom.tsx +32 -0
  107. package/src/components/icons/Flags/UnitedStates.tsx +26 -0
  108. package/src/components/icons/Flags/index.tsx +46 -0
  109. package/src/components/icons/HistoryIcon.tsx +28 -0
  110. package/src/components/icons/Icons.mdx +36 -0
  111. package/src/components/icons/InsertRowIcon.tsx +36 -0
  112. package/src/components/icons/SortAltIcon.tsx +24 -0
  113. package/src/components/icons/UserIcon.tsx +17 -0
  114. package/src/components/icons/UsersIcon.tsx +43 -0
  115. package/src/components/index.ts +14 -0
  116. package/src/components/types.ts +1 -0
  117. package/src/index.css +9 -0
  118. package/src/index.ts +2 -0
  119. package/src/main.tsx +11 -0
  120. package/src/stories/assets/code-brackets.svg +1 -0
  121. package/src/stories/assets/colors.svg +1 -0
  122. package/src/stories/assets/comments.svg +1 -0
  123. package/src/stories/assets/direction.svg +1 -0
  124. package/src/stories/assets/flow.svg +1 -0
  125. package/src/stories/assets/plugin.svg +1 -0
  126. package/src/stories/assets/repo.svg +1 -0
  127. package/src/stories/assets/stackalt.svg +1 -0
  128. package/src/styles/Home.module.css +235 -0
  129. package/src/styles/globals.css +111 -0
  130. package/src/styles/types.ts +1669 -0
  131. package/src/styles/variables.classic.css +16 -0
  132. package/src/styles/variables.classic.json +31 -0
  133. package/src/styles/variables.css +763 -0
  134. package/src/styles/variables.dark.css +135 -0
  135. package/src/styles/variables.dark.json +576 -0
  136. package/src/styles/variables.json +1667 -0
  137. package/src/styles/variables.light.css +203 -0
  138. package/src/styles/variables.light.json +789 -0
  139. package/src/theme/index.ts +22 -0
  140. package/src/theme/theme.tsx +28 -0
  141. package/src/vite-env.d.ts +1 -0
  142. package/tokens/themes/$metadata.json +9 -0
  143. package/tokens/themes/$themes.json +1 -0
  144. package/tokens/themes/classic.json +58 -0
  145. package/tokens/themes/component.json +1567 -0
  146. package/tokens/themes/dark.json +1450 -0
  147. package/tokens/themes/light.json +2059 -0
  148. package/tokens/themes/primitives.json +863 -0
  149. package/tsconfig.json +27 -0
  150. package/tsconfig.node.json +10 -0
  151. package/vite.config.ts +38 -0
@@ -0,0 +1,863 @@
1
+ {
2
+ "palette": {
3
+ "brand": {
4
+ "50": {
5
+ "value": "#ffffe8",
6
+ "type": "color"
7
+ },
8
+ "100": {
9
+ "value": "#feffba",
10
+ "type": "color"
11
+ },
12
+ "200": {
13
+ "value": "#fdffa3",
14
+ "type": "color"
15
+ },
16
+ "300": {
17
+ "value": "#fcff74",
18
+ "type": "color"
19
+ },
20
+ "400": {
21
+ "value": "#eef400",
22
+ "type": "color"
23
+ },
24
+ "500": {
25
+ "value": "#9fa300",
26
+ "type": "color"
27
+ },
28
+ "600": {
29
+ "value": "#4f5100",
30
+ "type": "color"
31
+ },
32
+ "700": {
33
+ "value": "#27291B",
34
+ "type": "color"
35
+ },
36
+ "800": {
37
+ "value": "#161600",
38
+ "type": "color"
39
+ },
40
+ "base": {
41
+ "value": "#fbff46",
42
+ "type": "color"
43
+ }
44
+ },
45
+ "neutral": {
46
+ "0": {
47
+ "value": "#ffffff",
48
+ "type": "color"
49
+ },
50
+ "100": {
51
+ "value": "#f9f9f9",
52
+ "type": "color"
53
+ },
54
+ "200": {
55
+ "value": "#dfdfdf",
56
+ "type": "color"
57
+ },
58
+ "300": {
59
+ "value": "#c0c0c0",
60
+ "type": "color"
61
+ },
62
+ "400": {
63
+ "value": "#a0a0a0",
64
+ "type": "color"
65
+ },
66
+ "500": {
67
+ "value": "#808080",
68
+ "type": "color"
69
+ },
70
+ "600": {
71
+ "value": "#606060",
72
+ "type": "color"
73
+ },
74
+ "700": {
75
+ "value": "#414141",
76
+ "type": "color"
77
+ },
78
+ "725": {
79
+ "value": "#282828",
80
+ "type": "color"
81
+ },
82
+ "750": {
83
+ "value": "#1F1F1C",
84
+ "type": "color"
85
+ },
86
+ "800": {
87
+ "value": "#1d1d1d",
88
+ "type": "color"
89
+ },
90
+ "900": {
91
+ "value": "#151515",
92
+ "type": "color"
93
+ },
94
+ "base": {
95
+ "value": "#212121",
96
+ "type": "color"
97
+ }
98
+ },
99
+ "slate": {
100
+ "50": {
101
+ "value": "#f6f7fa",
102
+ "type": "color"
103
+ },
104
+ "100": {
105
+ "value": "#e6e7e9",
106
+ "type": "color"
107
+ },
108
+ "200": {
109
+ "value": "#cccfd3",
110
+ "type": "color"
111
+ },
112
+ "300": {
113
+ "value": "#b3b6bd",
114
+ "type": "color"
115
+ },
116
+ "400": {
117
+ "value": "#9a9ea7",
118
+ "type": "color"
119
+ },
120
+ "500": {
121
+ "value": "#808691",
122
+ "type": "color"
123
+ },
124
+ "600": {
125
+ "value": "#696e79",
126
+ "type": "color"
127
+ },
128
+ "700": {
129
+ "value": "#53575f",
130
+ "type": "color"
131
+ },
132
+ "800": {
133
+ "value": "#302e32",
134
+ "type": "color"
135
+ },
136
+ "900": {
137
+ "value": "#161517",
138
+ "type": "color"
139
+ },
140
+ "base": {
141
+ "value": "#373439",
142
+ "type": "color"
143
+ }
144
+ },
145
+ "indigo": {
146
+ "50": {
147
+ "value": "#f4f1fc",
148
+ "type": "color"
149
+ },
150
+ "100": {
151
+ "value": "#e4e2e9",
152
+ "type": "color"
153
+ },
154
+ "200": {
155
+ "value": "#c8c5d3",
156
+ "type": "color"
157
+ },
158
+ "300": {
159
+ "value": "#ada8bd",
160
+ "type": "color"
161
+ },
162
+ "400": {
163
+ "value": "#918ba7",
164
+ "type": "color"
165
+ },
166
+ "500": {
167
+ "value": "#766e91",
168
+ "type": "color"
169
+ },
170
+ "600": {
171
+ "value": "#5e5874",
172
+ "type": "color"
173
+ },
174
+ "700": {
175
+ "value": "#474257",
176
+ "type": "color"
177
+ },
178
+ "800": {
179
+ "value": "#23212c",
180
+ "type": "color"
181
+ },
182
+ "900": {
183
+ "value": "#18161d",
184
+ "type": "color"
185
+ },
186
+ "base": {
187
+ "value": "#2f2c3a",
188
+ "type": "color"
189
+ }
190
+ },
191
+ "info": {
192
+ "50": {
193
+ "value": "#dae6fc",
194
+ "type": "color"
195
+ },
196
+ "100": {
197
+ "value": "#b5cdf9",
198
+ "type": "color"
199
+ },
200
+ "200": {
201
+ "value": "#91b3f6",
202
+ "type": "color"
203
+ },
204
+ "300": {
205
+ "value": "#6c9af3",
206
+ "type": "color"
207
+ },
208
+ "400": {
209
+ "value": "#135be6",
210
+ "type": "color"
211
+ },
212
+ "500": {
213
+ "value": "#0e44ad",
214
+ "type": "color"
215
+ },
216
+ "600": {
217
+ "value": "#092e73",
218
+ "type": "color"
219
+ },
220
+ "700": {
221
+ "value": "#061d48",
222
+ "type": "color"
223
+ },
224
+ "800": {
225
+ "value": "#05173a",
226
+ "type": "color"
227
+ },
228
+ "900": {
229
+ "value": "#041330",
230
+ "type": "color"
231
+ },
232
+ "base": {
233
+ "value": "#4781f0",
234
+ "type": "color"
235
+ }
236
+ },
237
+ "success": {
238
+ "50": {
239
+ "value": "#e0f8e7",
240
+ "type": "color"
241
+ },
242
+ "100": {
243
+ "value": "#c0f2ce",
244
+ "type": "color"
245
+ },
246
+ "200": {
247
+ "value": "#a1ebb6",
248
+ "type": "color"
249
+ },
250
+ "300": {
251
+ "value": "#81e59d",
252
+ "type": "color"
253
+ },
254
+ "400": {
255
+ "value": "#41d76b",
256
+ "type": "color"
257
+ },
258
+ "500": {
259
+ "value": "#2ac656",
260
+ "type": "color"
261
+ },
262
+ "600": {
263
+ "value": "#1c8439",
264
+ "type": "color"
265
+ },
266
+ "700": {
267
+ "value": "#15632b",
268
+ "type": "color"
269
+ },
270
+ "800": {
271
+ "value": "#0e421d",
272
+ "type": "color"
273
+ },
274
+ "900": {
275
+ "value": "#07210e",
276
+ "type": "color"
277
+ },
278
+ "base": {
279
+ "value": "#62de85",
280
+ "type": "color"
281
+ }
282
+ },
283
+ "warning": {
284
+ "50": {
285
+ "value": "#ffedd8",
286
+ "type": "color"
287
+ },
288
+ "100": {
289
+ "value": "#ffdbb1",
290
+ "type": "color"
291
+ },
292
+ "200": {
293
+ "value": "#ffca8b",
294
+ "type": "color"
295
+ },
296
+ "300": {
297
+ "value": "#ffb864",
298
+ "type": "color"
299
+ },
300
+ "400": {
301
+ "value": "#ff9416",
302
+ "type": "color"
303
+ },
304
+ "500": {
305
+ "value": "#ed8000",
306
+ "type": "color"
307
+ },
308
+ "600": {
309
+ "value": "#c66b00",
310
+ "type": "color"
311
+ },
312
+ "700": {
313
+ "value": "#9e5600",
314
+ "type": "color"
315
+ },
316
+ "800": {
317
+ "value": "#4f2b00",
318
+ "type": "color"
319
+ },
320
+ "900": {
321
+ "value": "#271500",
322
+ "type": "color"
323
+ },
324
+ "base": {
325
+ "value": "#ffa63d",
326
+ "type": "color"
327
+ }
328
+ },
329
+ "danger": {
330
+ "50": {
331
+ "value": "#ffdddd",
332
+ "type": "color"
333
+ },
334
+ "100": {
335
+ "value": "#ffbaba",
336
+ "type": "color"
337
+ },
338
+ "200": {
339
+ "value": "#ff9898",
340
+ "type": "color"
341
+ },
342
+ "300": {
343
+ "value": "#ff7575",
344
+ "type": "color"
345
+ },
346
+ "400": {
347
+ "value": "#ff2323",
348
+ "type": "color"
349
+ },
350
+ "500": {
351
+ "value": "#f10000",
352
+ "type": "color"
353
+ },
354
+ "600": {
355
+ "value": "#c10000",
356
+ "type": "color"
357
+ },
358
+ "700": {
359
+ "value": "#910000",
360
+ "type": "color"
361
+ },
362
+ "800": {
363
+ "value": "#610000",
364
+ "type": "color"
365
+ },
366
+ "900": {
367
+ "value": "#300000",
368
+ "type": "color"
369
+ },
370
+ "base": {
371
+ "value": "#FF5353",
372
+ "type": "color"
373
+ }
374
+ },
375
+ "gradients": {
376
+ "base": {
377
+ "value": "linear-gradient(229.65deg, #292924 15.78%, #0F0F0F 88.39%)",
378
+ "type": "color"
379
+ },
380
+ "transparent": {
381
+ "value": "rgba(0,0,0,0)",
382
+ "type": "color",
383
+ "description": "Transparent background"
384
+ }
385
+ },
386
+ "utility": {
387
+ "transparent": {
388
+ "value": "rgba(0,0,0,0)",
389
+ "type": "color"
390
+ }
391
+ }
392
+ },
393
+ "sizes": {
394
+ "0": {
395
+ "value": "0",
396
+ "type": "sizing"
397
+ },
398
+ "1": {
399
+ "value": "1px",
400
+ "type": "sizing"
401
+ },
402
+ "2": {
403
+ "value": "0.25rem",
404
+ "type": "sizing"
405
+ },
406
+ "3": {
407
+ "value": "0.5rem",
408
+ "type": "sizing"
409
+ },
410
+ "4": {
411
+ "value": "0.75rem",
412
+ "type": "sizing"
413
+ },
414
+ "5": {
415
+ "value": "1rem",
416
+ "type": "sizing"
417
+ },
418
+ "6": {
419
+ "value": "1.25rem",
420
+ "type": "sizing"
421
+ },
422
+ "7": {
423
+ "value": "1.5rem",
424
+ "type": "sizing"
425
+ },
426
+ "8": {
427
+ "value": "1.75rem",
428
+ "type": "sizing"
429
+ },
430
+ "9": {
431
+ "value": "2rem",
432
+ "type": "sizing"
433
+ },
434
+ "10": {
435
+ "value": "2.5rem",
436
+ "type": "sizing"
437
+ },
438
+ "11": {
439
+ "value": "4rem",
440
+ "type": "sizing"
441
+ }
442
+ },
443
+ "typography": {
444
+ "font": {
445
+ "families": {
446
+ "regular": {
447
+ "value": "\"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
448
+ "type": "fontFamilies"
449
+ },
450
+ "mono": {
451
+ "value": "\"Inconsolata\", \"SFMono Regular\", monospace",
452
+ "type": "fontFamilies"
453
+ },
454
+ "display": {
455
+ "value": "'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
456
+ "type": "fontFamilies"
457
+ }
458
+ },
459
+ "weights": {
460
+ "1": {
461
+ "value": "400",
462
+ "type": "fontWeights"
463
+ },
464
+ "2": {
465
+ "value": "500",
466
+ "type": "fontWeights"
467
+ },
468
+ "3": {
469
+ "value": "600",
470
+ "type": "fontWeights"
471
+ },
472
+ "4": {
473
+ "value": "700",
474
+ "type": "fontWeights"
475
+ }
476
+ },
477
+ "sizes": {
478
+ "1": {
479
+ "value": "{sizes.4}",
480
+ "type": "fontSizes"
481
+ },
482
+ "2": {
483
+ "value": "0.875rem",
484
+ "type": "fontSizes"
485
+ },
486
+ "3": {
487
+ "value": "{sizes.5}",
488
+ "type": "fontSizes"
489
+ },
490
+ "4": {
491
+ "value": "{sizes.6}",
492
+ "type": "fontSizes"
493
+ },
494
+ "6": {
495
+ "value": "{sizes.9}",
496
+ "type": "fontSizes"
497
+ },
498
+ "base": {
499
+ "value": "16px",
500
+ "type": "fontSizes"
501
+ }
502
+ },
503
+ "line-height": {
504
+ "1": {
505
+ "value": "150%",
506
+ "type": "lineHeights"
507
+ },
508
+ "2": {
509
+ "value": "160%",
510
+ "type": "lineHeights"
511
+ },
512
+ "3": {
513
+ "value": "170%",
514
+ "type": "lineHeights"
515
+ },
516
+ "4": {
517
+ "value": "130%",
518
+ "type": "lineHeights"
519
+ }
520
+ }
521
+ },
522
+ "styles": {
523
+ "titles": {
524
+ "xs": {
525
+ "value": {
526
+ "fontFamily": "{typography.font.families.regular}",
527
+ "fontWeight": "{typography.font.weights.4}",
528
+ "fontSize": "{typography.font.sizes.1}",
529
+ "lineHeight": "{typography.font.line-height.1}"
530
+ },
531
+ "type": "typography"
532
+ },
533
+ "sm": {
534
+ "value": {
535
+ "fontFamily": "{typography.font.families.regular}",
536
+ "fontWeight": "{typography.font.weights.4}",
537
+ "lineHeight": "{typography.font.line-height.1}",
538
+ "fontSize": "{typography.font.sizes.2}"
539
+ },
540
+ "type": "typography"
541
+ },
542
+ "md": {
543
+ "value": {
544
+ "fontFamily": "{typography.font.families.regular}",
545
+ "fontWeight": "{typography.font.weights.3}",
546
+ "lineHeight": "{typography.font.line-height.1}",
547
+ "fontSize": "{typography.font.sizes.3}"
548
+ },
549
+ "type": "typography"
550
+ },
551
+ "lg": {
552
+ "value": {
553
+ "fontFamily": "{typography.font.families.regular}",
554
+ "fontWeight": "{typography.font.weights.4}",
555
+ "lineHeight": "{typography.font.line-height.1}",
556
+ "fontSize": "{typography.font.sizes.3}"
557
+ },
558
+ "type": "typography"
559
+ },
560
+ "xl": {
561
+ "value": {
562
+ "fontFamily": "{typography.font.families.regular}",
563
+ "fontWeight": "{typography.font.weights.4}",
564
+ "lineHeight": "{typography.font.line-height.1}",
565
+ "fontSize": "{typography.font.sizes.4}"
566
+ },
567
+ "type": "typography"
568
+ },
569
+ "2xl": {
570
+ "value": {
571
+ "fontFamily": "{typography.font.families.regular}",
572
+ "fontWeight": "{typography.font.weights.3}",
573
+ "lineHeight": "{typography.font.line-height.1}",
574
+ "fontSize": "{typography.font.sizes.6}"
575
+ },
576
+ "type": "typography"
577
+ }
578
+ },
579
+ "text": {
580
+ "sm": {
581
+ "value": {
582
+ "fontFamily": "{typography.font.families.regular}",
583
+ "fontWeight": "{typography.font.weights.1}",
584
+ "lineHeight": "{typography.font.line-height.1}",
585
+ "fontSize": "{typography.font.sizes.1}"
586
+ },
587
+ "type": "typography"
588
+ },
589
+ "md": {
590
+ "value": {
591
+ "fontFamily": "{typography.font.families.regular}",
592
+ "fontWeight": "{typography.font.weights.1}",
593
+ "lineHeight": "{typography.font.line-height.1}",
594
+ "fontSize": "{typography.font.sizes.2}"
595
+ },
596
+ "type": "typography"
597
+ },
598
+ "lg": {
599
+ "value": {
600
+ "fontFamily": "{typography.font.families.regular}",
601
+ "fontWeight": "{typography.font.weights.1}",
602
+ "lineHeight": "{typography.font.line-height.1}",
603
+ "fontSize": "{typography.font.sizes.3}"
604
+ },
605
+ "type": "typography"
606
+ }
607
+ },
608
+ "text-sbold": {
609
+ "sm": {
610
+ "value": {
611
+ "fontFamily": "{typography.font.families.regular}",
612
+ "fontWeight": "{typography.font.weights.2}",
613
+ "lineHeight": "{typography.font.line-height.1}",
614
+ "fontSize": "{typography.font.sizes.1}"
615
+ },
616
+ "type": "typography"
617
+ },
618
+ "md": {
619
+ "value": {
620
+ "fontFamily": "{typography.font.families.regular}",
621
+ "fontWeight": "{typography.font.weights.2}",
622
+ "lineHeight": "{typography.font.line-height.1}",
623
+ "fontSize": "{typography.font.sizes.2}"
624
+ },
625
+ "type": "typography"
626
+ },
627
+ "lg": {
628
+ "value": {
629
+ "fontFamily": "{typography.font.families.regular}",
630
+ "fontWeight": "{typography.font.weights.2}",
631
+ "lineHeight": "{typography.font.line-height.1}",
632
+ "fontSize": "{typography.font.sizes.3}"
633
+ },
634
+ "type": "typography"
635
+ }
636
+ },
637
+ "text-bold": {
638
+ "sm": {
639
+ "value": {
640
+ "fontFamily": "{typography.font.families.regular}",
641
+ "fontWeight": "{typography.font.weights.3}",
642
+ "lineHeight": "{typography.font.line-height.1}",
643
+ "fontSize": "{typography.font.sizes.1}"
644
+ },
645
+ "type": "typography"
646
+ },
647
+ "md": {
648
+ "value": {
649
+ "fontFamily": "{typography.font.families.regular}",
650
+ "fontWeight": "{typography.font.weights.3}",
651
+ "lineHeight": "{typography.font.line-height.1}",
652
+ "fontSize": "{typography.font.sizes.2}"
653
+ },
654
+ "type": "typography"
655
+ },
656
+ "lg": {
657
+ "value": {
658
+ "fontFamily": "{typography.font.families.regular}",
659
+ "fontWeight": "{typography.font.weights.3}",
660
+ "lineHeight": "{typography.font.line-height.1}",
661
+ "fontSize": "{typography.font.sizes.3}"
662
+ },
663
+ "type": "typography"
664
+ }
665
+ },
666
+ "text-mono": {
667
+ "sm": {
668
+ "value": {
669
+ "fontFamily": "{typography.font.families.mono}",
670
+ "fontWeight": "{typography.font.weights.2}",
671
+ "lineHeight": "{typography.font.line-height.2}",
672
+ "fontSize": "{typography.font.sizes.1}"
673
+ },
674
+ "type": "typography"
675
+ },
676
+ "md": {
677
+ "value": {
678
+ "fontFamily": "{typography.font.families.mono}",
679
+ "fontWeight": "{typography.font.weights.2}",
680
+ "lineHeight": "{typography.font.line-height.3}",
681
+ "fontSize": "{typography.font.sizes.2}"
682
+ },
683
+ "type": "typography"
684
+ },
685
+ "lg": {
686
+ "value": {
687
+ "fontFamily": "{typography.font.families.mono}",
688
+ "fontWeight": "{typography.font.weights.2}",
689
+ "lineHeight": "{typography.font.line-height.2}",
690
+ "fontSize": "{typography.font.sizes.3}"
691
+ },
692
+ "type": "typography"
693
+ }
694
+ },
695
+ "titles-brand": {
696
+ "xs": {
697
+ "value": {
698
+ "fontFamily": "{typography.font.families.display}",
699
+ "fontWeight": "{typography.font.weights.3}",
700
+ "lineHeight": "{typography.font.line-height.1}",
701
+ "fontSize": "20px"
702
+ },
703
+ "type": "typography"
704
+ },
705
+ "sm": {
706
+ "value": {
707
+ "fontFamily": "{typography.font.families.display}",
708
+ "fontWeight": "{typography.font.weights.3}",
709
+ "lineHeight": "{typography.font.line-height.1}",
710
+ "fontSize": "24px"
711
+ },
712
+ "type": "typography"
713
+ },
714
+ "md": {
715
+ "value": {
716
+ "fontFamily": "{typography.font.families.display}",
717
+ "fontWeight": "{typography.font.weights.3}",
718
+ "lineHeight": "{typography.font.line-height.4}",
719
+ "fontSize": "36px"
720
+ },
721
+ "type": "typography"
722
+ },
723
+ "lg": {
724
+ "value": {
725
+ "fontFamily": "{typography.font.families.display}",
726
+ "fontWeight": "{typography.font.weights.3}",
727
+ "lineHeight": "{typography.font.line-height.4}",
728
+ "fontSize": "56px"
729
+ },
730
+ "type": "typography"
731
+ },
732
+ "xl": {
733
+ "value": {
734
+ "fontFamily": "{typography.font.families.display}",
735
+ "fontWeight": "{typography.font.weights.4}",
736
+ "lineHeight": "{typography.font.line-height.4}",
737
+ "fontSize": "64px"
738
+ },
739
+ "type": "typography"
740
+ }
741
+ },
742
+ "field": {
743
+ "md": {
744
+ "value": {
745
+ "fontFamily": "{typography.font.families.regular}",
746
+ "fontWeight": "{typography.font.weights.1}",
747
+ "lineHeight": "{typography.font.line-height.2}",
748
+ "fontSize": "{typography.font.sizes.2}"
749
+ },
750
+ "type": "typography"
751
+ }
752
+ }
753
+ }
754
+ },
755
+ "border": {
756
+ "radii": {
757
+ "0": {
758
+ "value": "{sizes.0}",
759
+ "type": "borderRadius"
760
+ },
761
+ "1": {
762
+ "value": "{sizes.2}",
763
+ "type": "borderRadius"
764
+ },
765
+ "2": {
766
+ "value": "{sizes.3}",
767
+ "type": "borderRadius"
768
+ },
769
+ "full": {
770
+ "value": "9999px",
771
+ "type": "borderRadius"
772
+ }
773
+ },
774
+ "width": {
775
+ "1": {
776
+ "value": "{sizes.1}",
777
+ "type": "borderWidth"
778
+ },
779
+ "2": {
780
+ "value": "{sizes.1} + {sizes.1}",
781
+ "type": "borderWidth"
782
+ }
783
+ }
784
+ },
785
+ "spaces": {
786
+ "0": {
787
+ "value": "{sizes.0}",
788
+ "type": "spacing"
789
+ },
790
+ "1": {
791
+ "value": "{sizes.2}",
792
+ "type": "spacing"
793
+ },
794
+ "2": {
795
+ "value": "{sizes.3}",
796
+ "type": "spacing"
797
+ },
798
+ "3": {
799
+ "value": "{sizes.4}",
800
+ "type": "spacing"
801
+ },
802
+ "4": {
803
+ "value": "{sizes.5}",
804
+ "type": "spacing"
805
+ },
806
+ "5": {
807
+ "value": "{sizes.7}",
808
+ "type": "spacing"
809
+ },
810
+ "6": {
811
+ "value": "{sizes.9}",
812
+ "type": "spacing"
813
+ },
814
+ "7": {
815
+ "value": "{sizes.10}",
816
+ "type": "spacing"
817
+ }
818
+ },
819
+ "shadow": {
820
+ "1": {
821
+ "value": [
822
+ {
823
+ "x": "0",
824
+ "y": "1",
825
+ "blur": "2",
826
+ "spread": "0",
827
+ "color": "rgba(16, 24, 40, 0.06)",
828
+ "type": "dropShadow"
829
+ },
830
+ {
831
+ "x": "0",
832
+ "y": "1",
833
+ "blur": "3",
834
+ "spread": "0",
835
+ "color": "rgba(16, 24, 40, 0.1)",
836
+ "type": "dropShadow"
837
+ }
838
+ ],
839
+ "type": "boxShadow"
840
+ },
841
+ "2": {
842
+ "value": [
843
+ {
844
+ "x": "0",
845
+ "y": "4",
846
+ "blur": "4",
847
+ "spread": "0",
848
+ "color": "rgba(88, 92, 98, 0.06)",
849
+ "type": "dropShadow"
850
+ },
851
+ {
852
+ "x": "5",
853
+ "y": "0",
854
+ "blur": "10",
855
+ "spread": "0",
856
+ "color": "rgba(104, 105, 111, 0.1)",
857
+ "type": "innerShadow"
858
+ }
859
+ ],
860
+ "type": "boxShadow"
861
+ }
862
+ }
863
+ }