@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,1667 @@
1
+ {
2
+ "click": {
3
+ "accordion": {
4
+ "small": {
5
+ "icon": {
6
+ "size": {
7
+ "height": "1rem",
8
+ "width": "1rem"
9
+ }
10
+ },
11
+ "space": {
12
+ "gap": "0.25rem"
13
+ },
14
+ "typography": {
15
+ "label": {
16
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
17
+ "hover": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
18
+ "active": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
19
+ }
20
+ }
21
+ },
22
+ "medium": {
23
+ "icon": {
24
+ "size": {
25
+ "height": "1.25rem",
26
+ "width": "1.25rem"
27
+ }
28
+ },
29
+ "space": {
30
+ "gap": "0.25rem"
31
+ },
32
+ "typography": {
33
+ "label": {
34
+ "default": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
35
+ "hover": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
36
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
37
+ }
38
+ }
39
+ },
40
+ "large": {
41
+ "icon": {
42
+ "size": {
43
+ "height": "1.5rem",
44
+ "width": "1.5rem"
45
+ }
46
+ },
47
+ "space": {
48
+ "gap": "0.25rem"
49
+ },
50
+ "typography": {
51
+ "label": {
52
+ "default": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
53
+ "hover": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
54
+ "active": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
55
+ }
56
+ }
57
+ },
58
+ "color": {
59
+ "label": {
60
+ "default": "#161517",
61
+ "hover": "lch(13.9 1.33 305)",
62
+ "active": "#161517"
63
+ },
64
+ "icon": {
65
+ "default": "#161517",
66
+ "hover": "lch(13.9 1.33 305)",
67
+ "active": "#161517"
68
+ }
69
+ }
70
+ },
71
+ "alert": {
72
+ "medium": {
73
+ "space": {
74
+ "y": "0.75rem",
75
+ "x": "0.75rem",
76
+ "gap": "0.5rem"
77
+ },
78
+ "typography": {
79
+ "title": {
80
+ "default": "700 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
81
+ },
82
+ "text": {
83
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
84
+ }
85
+ },
86
+ "icon": {
87
+ "height": "1.25rem",
88
+ "width": "1.25rem"
89
+ }
90
+ },
91
+ "small": {
92
+ "space": {
93
+ "y": "0.5rem",
94
+ "x": "0.5rem",
95
+ "gap": "0.25rem"
96
+ },
97
+ "icon": {
98
+ "height": "1rem",
99
+ "width": "1rem"
100
+ },
101
+ "typography": {
102
+ "title": {
103
+ "default": "700 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
104
+ },
105
+ "text": {
106
+ "default": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
107
+ }
108
+ }
109
+ },
110
+ "radii": {
111
+ "center": "0",
112
+ "end": "0.25rem"
113
+ },
114
+ "color": {
115
+ "background": {
116
+ "default": "#ffffff",
117
+ "success": "#e0f8e7",
118
+ "neutral": "#e6e7e9",
119
+ "danger": "#ffdddd",
120
+ "warning": "#ffedd8",
121
+ "info": "#dae6fc"
122
+ },
123
+ "text": {
124
+ "default": "#696e79",
125
+ "success": "#1c8439",
126
+ "neutral": "#53575f",
127
+ "danger": "#c10000",
128
+ "warning": "#9e5600",
129
+ "info": "#135be6"
130
+ },
131
+ "iconBackground": {
132
+ "default": "#ffffff",
133
+ "success": "lch(92.6 11.4 153)",
134
+ "neutral": "lch(88.9 1.07 266)",
135
+ "danger": "lch(88.3 12.6 20.6)",
136
+ "warning": "lch(91.9 12.7 73)",
137
+ "info": "lch(88.2 11.8 266)"
138
+ },
139
+ "iconForeground": {
140
+ "default": "#696e79",
141
+ "success": "lch(48.3 52.9 144 / 0.75)",
142
+ "neutral": "lch(36.8 5.23 267 / 0.75)",
143
+ "danger": "lch(41 86.6 40.9 / 0.75)",
144
+ "warning": "lch(44.6 59.8 63.2 / 0.75)",
145
+ "info": "lch(41.9 80.9 287 / 0.75)"
146
+ }
147
+ }
148
+ },
149
+ "badge": {
150
+ "space": {
151
+ "x": "0.75rem",
152
+ "y": "0.188rem"
153
+ },
154
+ "typography": {
155
+ "label": {
156
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
157
+ }
158
+ },
159
+ "radii": {
160
+ "all": "9999px"
161
+ },
162
+ "stroke": "1px",
163
+ "color": {
164
+ "background": {
165
+ "default": "#ffffff",
166
+ "success": "#e0f8e7",
167
+ "neutral": "#e6e7e9",
168
+ "danger": "#ffdddd",
169
+ "disabled": "#dfdfdf"
170
+ },
171
+ "text": {
172
+ "default": "#696e79",
173
+ "success": "#1c8439",
174
+ "neutral": "#53575f",
175
+ "danger": "#c10000",
176
+ "disabled": "#a0a0a0"
177
+ },
178
+ "stroke": {
179
+ "default": "lch(91.6 1.1 266 / 0.3)",
180
+ "success": "#e0f8e7",
181
+ "neutral": "#e6e7e9",
182
+ "danger": "#ffdddd",
183
+ "disabled": "lch(84.4 0 0)"
184
+ }
185
+ }
186
+ },
187
+ "big-stat": {
188
+ "space": {
189
+ "all": "0.75rem",
190
+ "gap": "0"
191
+ },
192
+ "radii": {
193
+ "all": "0.25rem"
194
+ },
195
+ "typography": {
196
+ "label": {
197
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
198
+ },
199
+ "title": {
200
+ "default": "600 2rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
201
+ }
202
+ },
203
+ "stroke": "1px",
204
+ "color": {
205
+ "stroke": {
206
+ "default": "lch(91.6 1.1 266 / 0.3)"
207
+ },
208
+ "background": {
209
+ "default": "#ffffff"
210
+ },
211
+ "label": {
212
+ "default": "#696e79"
213
+ },
214
+ "large-value": {
215
+ "default": "#161517"
216
+ }
217
+ }
218
+ },
219
+ "button": {
220
+ "radii": {
221
+ "all": "0.25rem"
222
+ },
223
+ "basic": {
224
+ "space": {
225
+ "x": "1rem",
226
+ "y": "0.344rem",
227
+ "gap": "0.5rem",
228
+ "group": "0.5rem"
229
+ },
230
+ "typography": {
231
+ "label": {
232
+ "default": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
233
+ "hover": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
234
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
235
+ "disabled": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
236
+ },
237
+ "mobile": {
238
+ "label": {
239
+ "default": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
240
+ "hover": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
241
+ "active": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
242
+ }
243
+ }
244
+ },
245
+ "size": {
246
+ "icon": {
247
+ "all": "0.969rem"
248
+ }
249
+ },
250
+ "color": {
251
+ "primary": {
252
+ "background": {
253
+ "default": "#302e32",
254
+ "hover": "lch(55.8 3.66 267)",
255
+ "active": "lch(6.42 1.33 305)"
256
+ },
257
+ "text": {
258
+ "default": "#ffffff"
259
+ },
260
+ "stroke": {
261
+ "default": "#302e32",
262
+ "hover": "lch(55.8 3.66 267)",
263
+ "active": "lch(6.42 1.33 305)"
264
+ }
265
+ },
266
+ "secondary": {
267
+ "background": {
268
+ "default": "rgba(0,0,0,0)",
269
+ "hover": "#f6f7fa",
270
+ "active": "lch(95.3 1.54 272)"
271
+ },
272
+ "stroke": {
273
+ "default": "lch(91.6 1.1 266 / 0.3)",
274
+ "hover": "#e6e7e9",
275
+ "active": "lch(83.8 2.3 258)"
276
+ },
277
+ "text": {
278
+ "default": "#161517"
279
+ }
280
+ },
281
+ "disabled": {
282
+ "background": {
283
+ "default": "#dfdfdf"
284
+ },
285
+ "text": {
286
+ "default": "#a0a0a0"
287
+ }
288
+ },
289
+ "danger": {
290
+ "background": {
291
+ "default": "#ffdddd",
292
+ "hover": "#ff9898",
293
+ "active": "#ffbaba"
294
+ },
295
+ "text": {
296
+ "default": "#c10000"
297
+ }
298
+ }
299
+ }
300
+ },
301
+ "iconButton": {
302
+ "default": {
303
+ "space": {
304
+ "x": "0.5rem",
305
+ "y": "0.5rem"
306
+ }
307
+ },
308
+ "size": {
309
+ "small": "0.75rem",
310
+ "medium": "1rem",
311
+ "large": "1.25rem"
312
+ },
313
+ "radii": {
314
+ "all": "0.25rem"
315
+ },
316
+ "small": {
317
+ "space": {
318
+ "x": "0.25rem",
319
+ "y": "0.25rem"
320
+ }
321
+ },
322
+ "color": {
323
+ "primary": {
324
+ "background": {
325
+ "default": "rgba(0,0,0,0)",
326
+ "hover": "#f6f7fa",
327
+ "active": "rgb(86.8% 87.2% 88.2%)"
328
+ },
329
+ "stroke": {
330
+ "default": "rgba(0,0,0,0)",
331
+ "hover": "#f6f7fa",
332
+ "active": "rgb(86.8% 87.2% 88.2%)"
333
+ },
334
+ "text": {
335
+ "default": "#161517",
336
+ "hover": "#161517",
337
+ "active": "#161517"
338
+ }
339
+ },
340
+ "secondary": {
341
+ "background": {
342
+ "default": "#302e32",
343
+ "hover": "lch(55.8 3.66 267)",
344
+ "active": "lch(6.1 1.26 305)"
345
+ },
346
+ "stroke": {
347
+ "default": "rgba(0,0,0,0)",
348
+ "hover": "lch(55.8 3.66 267)",
349
+ "active": "lch(6.1 1.26 305)"
350
+ },
351
+ "text": {
352
+ "default": "#ffffff",
353
+ "hover": "#ffffff",
354
+ "active": "#ffffff"
355
+ }
356
+ },
357
+ "disabled": {
358
+ "background": {
359
+ "default": "#dfdfdf"
360
+ },
361
+ "text": {
362
+ "default": "#a0a0a0"
363
+ }
364
+ },
365
+ "danger": {
366
+ "background": {
367
+ "default": "#ffdddd",
368
+ "hover": "#ff9898",
369
+ "active": "#ffbaba"
370
+ },
371
+ "text": {
372
+ "default": "#c10000"
373
+ }
374
+ }
375
+ }
376
+ },
377
+ "stroke": "1px",
378
+ "split": {
379
+ "icon": {
380
+ "space": {
381
+ "y": "0.516rem"
382
+ }
383
+ },
384
+ "primary": {
385
+ "stroke": {
386
+ "default": "lch(23.3 2.63 306)",
387
+ "active": "lch(16.4 2.36 306)",
388
+ "hover": "lch(53.6 2.86 267)"
389
+ },
390
+ "background": {
391
+ "main": {
392
+ "default": "lch(17.6 2.54 306)",
393
+ "hover": "lch(51.1 3.35 267)",
394
+ "active": "lch(5.87 1.22 305)"
395
+ },
396
+ "action": {
397
+ "default": "lch(6.35 1.32 305)",
398
+ "hover": "lch(48.5 3.18 267)",
399
+ "active": "lch(3.47 0.72 305)"
400
+ }
401
+ },
402
+ "text": {
403
+ "default": "#ffffff"
404
+ }
405
+ }
406
+ },
407
+ "mobile": {
408
+ "button": {
409
+ "space": {
410
+ "x": "0.75rem",
411
+ "y": "0.5rem",
412
+ "gap": "0.5rem"
413
+ }
414
+ },
415
+ "basic": {
416
+ "size": {
417
+ "icon": {
418
+ "all": "1.25rem"
419
+ }
420
+ }
421
+ }
422
+ },
423
+ "button-group": {
424
+ "radii": {
425
+ "center": "0",
426
+ "end": "0.25rem"
427
+ }
428
+ },
429
+ "alignLeft": {
430
+ "size": {
431
+ "icon": {
432
+ "all": "0.969rem"
433
+ }
434
+ },
435
+ "space": {
436
+ "x": "1rem",
437
+ "y": "0.344rem",
438
+ "gap": "0.5rem"
439
+ },
440
+ "typography": {
441
+ "label": {
442
+ "default": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
443
+ "hover": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
444
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
445
+ "disabled": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
446
+ },
447
+ "mobile": {
448
+ "label": {
449
+ "default": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
450
+ "hover": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
451
+ "active": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
452
+ }
453
+ }
454
+ }
455
+ },
456
+ "group": {
457
+ "color": {
458
+ "background": {
459
+ "default": "#ffffff",
460
+ "hover": "lch(68.1 1.1 272)",
461
+ "active": "lch(81 1.31 272)",
462
+ "panel": "#ffffff"
463
+ },
464
+ "text": {
465
+ "default": "#161517",
466
+ "hover": "#161517",
467
+ "active": "#151515"
468
+ },
469
+ "stroke": {
470
+ "panel": "lch(91.6 1.1 266 / 0.3)"
471
+ }
472
+ }
473
+ },
474
+ "alignedLeft": {
475
+ "color": {
476
+ "background": {
477
+ "default": "rgba(0,0,0,0)",
478
+ "hover": "#f6f7fa",
479
+ "active": "lch(95.3 1.54 272)"
480
+ },
481
+ "stroke": {
482
+ "default": "lch(91.6 1.1 266 / 0.3)",
483
+ "hover": "#e6e7e9",
484
+ "active": "#cccfd3"
485
+ },
486
+ "text": {
487
+ "default": "#161517",
488
+ "hover": "#161517",
489
+ "active": "#161517"
490
+ }
491
+ }
492
+ }
493
+ },
494
+ "card": {
495
+ "space": {
496
+ "all": "1rem",
497
+ "gap": "1rem"
498
+ },
499
+ "radii": {
500
+ "all": "0.25rem"
501
+ },
502
+ "icon": {
503
+ "size": {
504
+ "all": "2rem"
505
+ }
506
+ },
507
+ "typography": {
508
+ "title": {
509
+ "default": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
510
+ "hover": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
511
+ "active": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
512
+ "disabled": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
513
+ },
514
+ "description": {
515
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
516
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
517
+ "active": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
518
+ "disabled": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
519
+ },
520
+ "link": {
521
+ "default": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
522
+ "hover": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
523
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
524
+ "disabled": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
525
+ }
526
+ },
527
+ "color": {
528
+ "background": {
529
+ "default": "#ffffff",
530
+ "hover": "#f6f7fa",
531
+ "active": "lch(92.4 1.49 272)",
532
+ "disabled": "#dfdfdf"
533
+ },
534
+ "title": {
535
+ "default": "#161517",
536
+ "hover": "#161517",
537
+ "active": "#161517",
538
+ "disabled": "#a0a0a0"
539
+ },
540
+ "description": {
541
+ "default": "#696e79",
542
+ "hover": "#696e79",
543
+ "active": "#696e79",
544
+ "disabled": "#a0a0a0"
545
+ },
546
+ "link": {
547
+ "default": "#161517",
548
+ "hover": "#135be6",
549
+ "active": "#161517",
550
+ "disabled": "#a0a0a0"
551
+ },
552
+ "stroke": {
553
+ "default": "lch(91.6 1.1 266 / 0.3)",
554
+ "hover": "lch(91.6 1.1 266 / 0.3)",
555
+ "active": "lch(87 1.05 266 / 0.3)",
556
+ "disabled": "#dfdfdf"
557
+ }
558
+ }
559
+ },
560
+ "checkbox": {
561
+ "radii": {
562
+ "all": "0.125rem"
563
+ },
564
+ "space": {
565
+ "all": "1px",
566
+ "gap": "0.5rem"
567
+ },
568
+ "size": {
569
+ "all": "1rem"
570
+ },
571
+ "color": {
572
+ "background": {
573
+ "default": "#f6f7fa",
574
+ "active": "#161517",
575
+ "disabled-checked": "#dfdfdf",
576
+ "disabled-unchecked": "#dfdfdf"
577
+ },
578
+ "stroke": {
579
+ "default": "#b3b6bd",
580
+ "active": "#161517",
581
+ "disabled": "#c0c0c0"
582
+ },
583
+ "check": {
584
+ "default": "#ffffff",
585
+ "active": "#ffffff",
586
+ "disabled": "#a0a0a0"
587
+ },
588
+ "label": {
589
+ "default": "#161517",
590
+ "off": "#696e79",
591
+ "disabled": "#a0a0a0",
592
+ "active": "#161517"
593
+ }
594
+ }
595
+ },
596
+ "codeblock": {
597
+ "space": {
598
+ "x": "1rem",
599
+ "y": "1rem",
600
+ "gap": "1.5rem"
601
+ },
602
+ "radii": {
603
+ "all": "0.25rem"
604
+ },
605
+ "stroke": "1px",
606
+ "typography": {
607
+ "text": {
608
+ "default": "500 0.875rem/1.7 \"Inconsolata\", \"SFMono Regular\", monospace"
609
+ }
610
+ },
611
+ "numbers": {
612
+ "size": {
613
+ "width": "1.5rem"
614
+ }
615
+ },
616
+ "darkMode": {
617
+ "color": {
618
+ "background": {
619
+ "default": "#282828"
620
+ },
621
+ "text": {
622
+ "default": "#ffffff"
623
+ },
624
+ "numbers": {
625
+ "default": "#c0c0c0"
626
+ },
627
+ "button": {
628
+ "background": {
629
+ "default": "#282828",
630
+ "hover": "#53575f"
631
+ },
632
+ "foreground": {
633
+ "default": "#ffffff"
634
+ }
635
+ },
636
+ "stroke": {
637
+ "default": "#282828"
638
+ }
639
+ }
640
+ },
641
+ "lightMode": {
642
+ "color": {
643
+ "background": {
644
+ "default": "#f6f7fa"
645
+ },
646
+ "text": {
647
+ "default": "#282828"
648
+ },
649
+ "numbers": {
650
+ "default": "#808080"
651
+ },
652
+ "button": {
653
+ "background": {
654
+ "default": "#f6f7fa",
655
+ "hover": "#53575f"
656
+ },
657
+ "foreground": {
658
+ "default": "#a0a0a0"
659
+ }
660
+ },
661
+ "stroke": {
662
+ "default": "#282828"
663
+ }
664
+ }
665
+ }
666
+ },
667
+ "codeInline": {
668
+ "space": {
669
+ "x": "0.25rem"
670
+ },
671
+ "stroke": "1px",
672
+ "typography": {
673
+ "text": {
674
+ "default": "500 0.875rem/1.7 \"Inconsolata\", \"SFMono Regular\", monospace"
675
+ }
676
+ },
677
+ "radii": {
678
+ "all": "0.25rem"
679
+ },
680
+ "color": {
681
+ "background": {
682
+ "default": "#f6f7fa"
683
+ },
684
+ "text": {
685
+ "default": "#161517"
686
+ },
687
+ "stroke": {
688
+ "default": "lch(91.6 1.1 266 / 0.3)"
689
+ }
690
+ }
691
+ },
692
+ "contextMenu": {
693
+ "item": {
694
+ "space": {
695
+ "x": "1rem",
696
+ "y": "0.344rem",
697
+ "gap": "0.5rem"
698
+ },
699
+ "icon": {
700
+ "size": {
701
+ "height": "0.969rem",
702
+ "width": "0.969rem"
703
+ }
704
+ }
705
+ },
706
+ "typography": {
707
+ "label": {
708
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
709
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
710
+ "active": "600 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
711
+ "disabled": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
712
+ }
713
+ },
714
+ "button": {
715
+ "space": {
716
+ "gap": "0.25rem"
717
+ },
718
+ "background": {
719
+ "default": "#f6f7fa"
720
+ },
721
+ "label": {
722
+ "default": "#161517"
723
+ },
724
+ "stroke": {
725
+ "default": "lch(91.6 1.1 266 / 0.3)"
726
+ }
727
+ },
728
+ "color": {
729
+ "text": {
730
+ "default": "#161517",
731
+ "disabled": "#c0c0c0",
732
+ "muted": "#696e79",
733
+ "hover": "#161517",
734
+ "active": "#161517"
735
+ },
736
+ "background": {
737
+ "default": "lch(100 0 0)",
738
+ "hover": "lch(97.5 1.43 272)",
739
+ "active": "lch(97.5 1.43 272)"
740
+ }
741
+ },
742
+ "stroke": {
743
+ "default": "lch(91.6 1.1 266 / 0.3)"
744
+ }
745
+ },
746
+ "docs": {
747
+ "typography": {
748
+ "titles": {
749
+ "lg": "600 2rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
750
+ "md": "700 1.25rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
751
+ "sm": "700 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
752
+ },
753
+ "text": {
754
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
755
+ },
756
+ "breadcrumbs": {
757
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
758
+ "active": "600 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
759
+ },
760
+ "toc": {
761
+ "title": {
762
+ "default": "600 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
763
+ },
764
+ "item": {
765
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
766
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
767
+ "active": "600 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
768
+ }
769
+ }
770
+ }
771
+ },
772
+ "field": {
773
+ "typography": {
774
+ "label": {
775
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
776
+ "hover": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
777
+ "active": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
778
+ "disabled": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
779
+ "error": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
780
+ },
781
+ "field-text": {
782
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
783
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
784
+ "active": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
785
+ "disabled": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
786
+ "error": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
787
+ },
788
+ "format": {
789
+ "default": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
790
+ "hover": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
791
+ "active": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
792
+ "disabled": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
793
+ "error": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
794
+ }
795
+ },
796
+ "type": {
797
+ "mobile": {
798
+ "label": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
799
+ "field-value": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
800
+ }
801
+ },
802
+ "space": {
803
+ "x": "0.75rem",
804
+ "y": "0.344rem",
805
+ "gap": "0.5rem"
806
+ },
807
+ "size": {
808
+ "icon": "1rem"
809
+ },
810
+ "radii": {
811
+ "all": "0.25rem"
812
+ },
813
+ "mobile": {
814
+ "space": {
815
+ "x": "0.75rem",
816
+ "y": "0.5rem",
817
+ "gap": "0.5rem"
818
+ }
819
+ },
820
+ "color": {
821
+ "background": {
822
+ "default": "#f6f7fa",
823
+ "active": "#ffffff",
824
+ "disabled": "#dfdfdf",
825
+ "hover": "#f6f7fa"
826
+ },
827
+ "text": {
828
+ "default": "#302e32",
829
+ "active": "#161517",
830
+ "disabled": "#a0a0a0",
831
+ "hover": "#302e32",
832
+ "error": "#c10000"
833
+ },
834
+ "stroke": {
835
+ "default": "lch(92 1.05 266 / 0.3)",
836
+ "active": "#161517",
837
+ "disabled": "#dfdfdf",
838
+ "hover": "lch(83.8 2.3 258)",
839
+ "error": "#c10000"
840
+ },
841
+ "label": {
842
+ "default": "#696e79",
843
+ "active": "#161517",
844
+ "disabled": "#a0a0a0",
845
+ "error": "#c10000"
846
+ },
847
+ "format": {
848
+ "default": "lch(57 5.46 269)",
849
+ "hover": "lch(57 5.46 269)",
850
+ "active": "lch(57 5.46 269)",
851
+ "disabled": "#a0a0a0",
852
+ "error": "lch(57 5.46 269)"
853
+ },
854
+ "placeholder": {
855
+ "default": "#696e79"
856
+ }
857
+ }
858
+ },
859
+ "image": {
860
+ "small": {
861
+ "size": {
862
+ "height": "1rem",
863
+ "width": "1rem"
864
+ }
865
+ },
866
+ "x-small": {
867
+ "size": {
868
+ "height": "0.75rem",
869
+ "width": "0.75rem"
870
+ }
871
+ },
872
+ "medium": {
873
+ "size": {
874
+ "height": "1.25rem",
875
+ "width": "1.25rem"
876
+ }
877
+ },
878
+ "large": {
879
+ "size": {
880
+ "height": "1.5rem",
881
+ "width": "1.5rem"
882
+ }
883
+ },
884
+ "x-large": {
885
+ "size": {
886
+ "height": "2rem",
887
+ "width": "2rem"
888
+ }
889
+ },
890
+ "xx-large": {
891
+ "size": {
892
+ "height": "4rem",
893
+ "width": "4rem"
894
+ }
895
+ },
896
+ "color": {
897
+ "stroke": "#161517"
898
+ }
899
+ },
900
+ "popover": {
901
+ "radii": {
902
+ "all": "0.25rem"
903
+ },
904
+ "color": {
905
+ "background": {
906
+ "default": "lch(100 0 0)"
907
+ }
908
+ }
909
+ },
910
+ "sidebar": {
911
+ "navigation": {
912
+ "item": {
913
+ "radii": {
914
+ "all": "0.25rem"
915
+ },
916
+ "default": {
917
+ "space": {
918
+ "left": "0",
919
+ "right": "0.75rem",
920
+ "y": "0.344rem",
921
+ "gap": "0.75rem"
922
+ }
923
+ },
924
+ "typography": {
925
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
926
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
927
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
928
+ "disabled": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
929
+ },
930
+ "mobile": {
931
+ "typography": {
932
+ "default": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
933
+ "hover": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
934
+ "active": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
935
+ },
936
+ "space": {
937
+ "left": "0",
938
+ "right": "0.75rem",
939
+ "y": "0.75rem",
940
+ "gap": "0.75rem"
941
+ }
942
+ },
943
+ "collapsible": {
944
+ "space": {
945
+ "left": "0",
946
+ "right": "0.75rem",
947
+ "y": "0.344rem",
948
+ "gap": "0.75rem"
949
+ }
950
+ },
951
+ "color": {
952
+ "background": {
953
+ "active": "lch(91.6 1.1 266 / 0.6)",
954
+ "hover": "lch(91.6 1.1 266 / 0.6)",
955
+ "default": "rgba(0,0,0,0)"
956
+ },
957
+ "text": {
958
+ "default": "#161517",
959
+ "hover": "#161517",
960
+ "active": "#161517",
961
+ "muted": "#696e79"
962
+ },
963
+ "icon": {
964
+ "default": "#696e79"
965
+ }
966
+ }
967
+ },
968
+ "title": {
969
+ "typography": {
970
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
971
+ "hover": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
972
+ "active": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
973
+ "disabled": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
974
+ },
975
+ "color": {
976
+ "default": "#696e79",
977
+ "hover": "#696e79",
978
+ "active": "#696e79"
979
+ }
980
+ },
981
+ "subItem": {
982
+ "default": {
983
+ "space": {
984
+ "left": "2.75rem",
985
+ "right": "0.75rem",
986
+ "y": "0.344rem"
987
+ }
988
+ },
989
+ "mobile": {
990
+ "space": {
991
+ "left": "2.75rem",
992
+ "right": "0.75rem",
993
+ "y": "0.75rem",
994
+ "gap": "0.75rem"
995
+ },
996
+ "typography": {
997
+ "default": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
998
+ "hover": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
999
+ "active": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1000
+ }
1001
+ },
1002
+ "radii": {
1003
+ "all": "0.25rem"
1004
+ },
1005
+ "typography": {
1006
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1007
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1008
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1009
+ "disabled": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1010
+ },
1011
+ "color": {
1012
+ "text": {
1013
+ "default": "#696e79",
1014
+ "hover": "#161517",
1015
+ "active": "#161517"
1016
+ },
1017
+ "background": {
1018
+ "default": "rgba(0,0,0,0)",
1019
+ "hover": "lch(91.6 1.1 266 / 0.6)",
1020
+ "active": "rgba(0,0,0,0)"
1021
+ }
1022
+ }
1023
+ }
1024
+ },
1025
+ "main": {
1026
+ "color": {
1027
+ "background": {
1028
+ "default": "#ffffff"
1029
+ },
1030
+ "text": {
1031
+ "default": "#161517",
1032
+ "muted": "#696e79"
1033
+ },
1034
+ "stroke": {
1035
+ "default": "lch(91.6 1.1 266 / 0.3)"
1036
+ }
1037
+ }
1038
+ },
1039
+ "sql-sidebar": {
1040
+ "color": {
1041
+ "background": {
1042
+ "default": "#f6f7fa"
1043
+ },
1044
+ "stroke": {
1045
+ "default": "lch(91.6 1.1 266 / 0.3)"
1046
+ }
1047
+ }
1048
+ },
1049
+ "sqlSidebar": {
1050
+ "color": {
1051
+ "background": {
1052
+ "default": "#f6f7fa"
1053
+ },
1054
+ "stroke": {
1055
+ "default": "lch(91.6 1.1 266 / 0.3)"
1056
+ }
1057
+ }
1058
+ }
1059
+ },
1060
+ "switch": {
1061
+ "space": {
1062
+ "gap": "0.5rem"
1063
+ },
1064
+ "radii": {
1065
+ "all": "9999px"
1066
+ },
1067
+ "size": {
1068
+ "width": "2rem",
1069
+ "height": "1rem"
1070
+ },
1071
+ "color": {
1072
+ "background": {
1073
+ "default": "#cccfd3",
1074
+ "active": "#151515",
1075
+ "disabled": "#dfdfdf"
1076
+ },
1077
+ "stroke": {
1078
+ "default": "#cccfd3",
1079
+ "active": "#161517",
1080
+ "disabled": "#dfdfdf"
1081
+ },
1082
+ "indicator": {
1083
+ "default": "#ffffff",
1084
+ "active": "#ffffff",
1085
+ "disabled": "#a0a0a0"
1086
+ }
1087
+ }
1088
+ },
1089
+ "tabs": {
1090
+ "space": {
1091
+ "y": "0.5rem",
1092
+ "x": "0.75rem"
1093
+ },
1094
+ "radii": {
1095
+ "all": "0.25rem"
1096
+ },
1097
+ "typography": {
1098
+ "label": {
1099
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1100
+ "hover": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1101
+ "active": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1102
+ }
1103
+ },
1104
+ "basic": {
1105
+ "strokeWidth": {
1106
+ "default": "1px",
1107
+ "hover": "1px",
1108
+ "active": "2px",
1109
+ "global": "1px"
1110
+ },
1111
+ "stroke": {
1112
+ "default": "1px solid rgba(0,0,0,0)",
1113
+ "hover": "1px solid rgba(0,0,0,0)",
1114
+ "active": "2px solid #151515",
1115
+ "global": "1px solid lch(91.6 1.1 266 / 0.3)"
1116
+ },
1117
+ "color": {
1118
+ "background": {
1119
+ "default": "rgba(0,0,0,0)",
1120
+ "hover": "#f6f7fa",
1121
+ "active": "rgba(0,0,0,0)"
1122
+ },
1123
+ "text": {
1124
+ "default": "#696e79",
1125
+ "hover": "#161517",
1126
+ "active": "#161517"
1127
+ },
1128
+ "stroke": {
1129
+ "default": "rgba(0,0,0,0)",
1130
+ "hover": "rgba(0,0,0,0)",
1131
+ "active": "#151515"
1132
+ },
1133
+ "global": {
1134
+ "default": "lch(91.6 1.1 266 / 0.3)"
1135
+ }
1136
+ }
1137
+ },
1138
+ "file-tabs": {
1139
+ "color": {
1140
+ "background": {
1141
+ "default": "#f6f7fa",
1142
+ "hover": "#ffffff",
1143
+ "active": "#ffffff"
1144
+ },
1145
+ "text": {
1146
+ "default": "#696e79",
1147
+ "hover": "#161517",
1148
+ "active": "#161517"
1149
+ },
1150
+ "stroke": {
1151
+ "default": "lch(91.6 1.1 266 / 0.3)",
1152
+ "hover": "lch(91.6 1.1 266 / 0.3)",
1153
+ "active": "lch(91.6 1.1 266 / 0.3)"
1154
+ }
1155
+ }
1156
+ }
1157
+ },
1158
+ "tooltip": {
1159
+ "radii": {
1160
+ "all": "0.25rem"
1161
+ },
1162
+ "space": {
1163
+ "x": "0.75rem",
1164
+ "y": "0.5rem"
1165
+ },
1166
+ "typography": {
1167
+ "label": {
1168
+ "default": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1169
+ }
1170
+ },
1171
+ "color": {
1172
+ "background": {
1173
+ "default": "lch(10.8 0 0 / 0.8)"
1174
+ },
1175
+ "label": {
1176
+ "default": "#ffffff"
1177
+ }
1178
+ }
1179
+ },
1180
+ "stepperVertical": {
1181
+ "icon": {
1182
+ "size": {
1183
+ "height": "1.25rem",
1184
+ "width": "1.25rem"
1185
+ },
1186
+ "space": {
1187
+ "x": "0.375rem",
1188
+ "y": "0.375rem"
1189
+ },
1190
+ "radii": "9999px",
1191
+ "background": {
1192
+ "default": "#161517",
1193
+ "incomplete": "lch(93.7 0.83 266)",
1194
+ "complete": "#161517"
1195
+ },
1196
+ "foreground": {
1197
+ "default": "#ffffff",
1198
+ "incomplete": "#161517",
1199
+ "complete": "#ffffff"
1200
+ },
1201
+ "stroke": {
1202
+ "default": "#ffffff",
1203
+ "incomplete": "rgba(0,0,0,0)",
1204
+ "complete": "rgba(0,0,0,0)"
1205
+ }
1206
+ },
1207
+ "connector": {
1208
+ "size": {
1209
+ "width": "0.188rem"
1210
+ },
1211
+ "background": {
1212
+ "default": "#161517",
1213
+ "incomplete": "lch(93.7 0.83 266)",
1214
+ "complete": "#161517"
1215
+ }
1216
+ },
1217
+ "typography": {
1218
+ "label": {
1219
+ "default": "600 0.75rem/1.7 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1220
+ }
1221
+ }
1222
+ },
1223
+ "table": {
1224
+ "header": {
1225
+ "title": {
1226
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1227
+ },
1228
+ "color": {
1229
+ "background": {
1230
+ "default": "#f6f7fa"
1231
+ },
1232
+ "title": {
1233
+ "default": "#161517"
1234
+ },
1235
+ "icon": {
1236
+ "default": "#161517"
1237
+ },
1238
+ "checkbox": {
1239
+ "background": {
1240
+ "default": "#cccfd3"
1241
+ },
1242
+ "border": {
1243
+ "default": "#808691"
1244
+ }
1245
+ }
1246
+ }
1247
+ },
1248
+ "cell": {
1249
+ "text": {
1250
+ "default": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1251
+ },
1252
+ "label": {
1253
+ "default": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1254
+ }
1255
+ },
1256
+ "radii": {
1257
+ "all": "0.25rem"
1258
+ },
1259
+ "row": {
1260
+ "color": {
1261
+ "background": {
1262
+ "default": "#ffffff",
1263
+ "hover": "#dae6fc",
1264
+ "active": "#dae6fc"
1265
+ },
1266
+ "stroke": {
1267
+ "default": "lch(91.6 1.1 266 / 0.3)"
1268
+ },
1269
+ "text": {
1270
+ "default": "#161517"
1271
+ },
1272
+ "link": {
1273
+ "default": "#135be6"
1274
+ },
1275
+ "label": {
1276
+ "default": "#696e79"
1277
+ }
1278
+ }
1279
+ },
1280
+ "global": {
1281
+ "color": {
1282
+ "stroke": {
1283
+ "default": "lch(91.6 1.1 266 / 0.3)"
1284
+ },
1285
+ "background": {
1286
+ "default": "#ffffff"
1287
+ }
1288
+ }
1289
+ }
1290
+ },
1291
+ "avatar": {
1292
+ "typography": {
1293
+ "label": {
1294
+ "sm": {
1295
+ "default": "600 0.688rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1296
+ "hover": "600 0.688rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1297
+ "active": "600 0.688rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1298
+ },
1299
+ "md": {
1300
+ "default": "600 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1301
+ "hover": "600 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1302
+ "active": "600 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1303
+ }
1304
+ }
1305
+ },
1306
+ "size": {
1307
+ "label": {
1308
+ "width": "1.5rem"
1309
+ },
1310
+ "width": "1.5rem",
1311
+ "height": "1.5rem"
1312
+ },
1313
+ "radii": {
1314
+ "all": "9999px"
1315
+ },
1316
+ "color": {
1317
+ "background": {
1318
+ "default": "#696e79",
1319
+ "hover": "#9a9ea7",
1320
+ "active": "#9a9ea7"
1321
+ },
1322
+ "text": {
1323
+ "default": "#ffffff",
1324
+ "hover": "#ffffff",
1325
+ "active": "#ffffff"
1326
+ }
1327
+ }
1328
+ },
1329
+ "separator": {
1330
+ "horizontal": {
1331
+ "space": {
1332
+ "y": {
1333
+ "xs": "0",
1334
+ "sm": "0.25rem",
1335
+ "md": "0.5rem",
1336
+ "lg": "1rem",
1337
+ "xl": "1.5rem",
1338
+ "xxl": "2rem"
1339
+ },
1340
+ "x": {
1341
+ "all": "0"
1342
+ }
1343
+ }
1344
+ },
1345
+ "vertical": {
1346
+ "space": {
1347
+ "x": {
1348
+ "xs": "0",
1349
+ "sm": "0.25rem",
1350
+ "md": "0.5rem",
1351
+ "lg": "1rem",
1352
+ "xl": "1.5rem",
1353
+ "xxl": "2rem"
1354
+ },
1355
+ "y": {
1356
+ "all": "0"
1357
+ }
1358
+ }
1359
+ },
1360
+ "color": {
1361
+ "stroke": {
1362
+ "default": "lch(91.6 1.1 266 / 0.3)"
1363
+ }
1364
+ }
1365
+ },
1366
+ "global": {
1367
+ "color": {
1368
+ "background": {
1369
+ "default": "#ffffff",
1370
+ "muted": "#f6f7fa"
1371
+ },
1372
+ "text": {
1373
+ "default": "#161517",
1374
+ "muted": "#696e79",
1375
+ "link": {
1376
+ "default": "#135be6",
1377
+ "hover": "#092e73"
1378
+ }
1379
+ },
1380
+ "stroke": {
1381
+ "default": "lch(91.6 1.1 266 / 0.3)",
1382
+ "muted": "lch(91.6 1.1 266 / 0.3)",
1383
+ "intense": "#b3b6bd"
1384
+ },
1385
+ "accent": {
1386
+ "default": "#151515"
1387
+ },
1388
+ "outline": {
1389
+ "default": "#135be6"
1390
+ }
1391
+ }
1392
+ },
1393
+ "feedback": {
1394
+ "color": {
1395
+ "info": {
1396
+ "background": "#dae6fc",
1397
+ "foreground": "#135be6"
1398
+ },
1399
+ "success": {
1400
+ "background": "#e0f8e7",
1401
+ "foreground": "#1c8439"
1402
+ },
1403
+ "warning": {
1404
+ "background": "#ffedd8",
1405
+ "foreground": "#9e5600"
1406
+ },
1407
+ "danger": {
1408
+ "background": "#ffdddd",
1409
+ "foreground": "#c10000"
1410
+ },
1411
+ "neutral": {
1412
+ "background": "#e6e7e9",
1413
+ "foreground": "#53575f",
1414
+ "stroke": "lch(91.6 1.1 266 / 0.3)"
1415
+ }
1416
+ }
1417
+ },
1418
+ "grid": {
1419
+ "color": {
1420
+ "background": {
1421
+ "header": {
1422
+ "default": "lch(97.2 1.57 272 / 0.7)"
1423
+ },
1424
+ "row": {
1425
+ "default": "#ffffff"
1426
+ }
1427
+ },
1428
+ "text": {
1429
+ "header": {
1430
+ "default": "#696e79"
1431
+ },
1432
+ "row": {
1433
+ "default": "#161517"
1434
+ }
1435
+ },
1436
+ "stroke": {
1437
+ "cell": {
1438
+ "stroke": "lch(91.6 1.1 266 / 0.3)"
1439
+ }
1440
+ }
1441
+ }
1442
+ }
1443
+ },
1444
+ "palette": {
1445
+ "brand": {
1446
+ "50": "#ffffe8",
1447
+ "100": "#feffba",
1448
+ "200": "#fdffa3",
1449
+ "300": "#fcff74",
1450
+ "400": "#eef400",
1451
+ "500": "#9fa300",
1452
+ "600": "#4f5100",
1453
+ "700": "#27291B",
1454
+ "800": "#161600",
1455
+ "base": "#fbff46"
1456
+ },
1457
+ "neutral": {
1458
+ "0": "#ffffff",
1459
+ "100": "#f9f9f9",
1460
+ "200": "#dfdfdf",
1461
+ "300": "#c0c0c0",
1462
+ "400": "#a0a0a0",
1463
+ "500": "#808080",
1464
+ "600": "#606060",
1465
+ "700": "#414141",
1466
+ "725": "#282828",
1467
+ "750": "#1F1F1C",
1468
+ "800": "#1d1d1d",
1469
+ "900": "#151515",
1470
+ "base": "#212121"
1471
+ },
1472
+ "slate": {
1473
+ "50": "#f6f7fa",
1474
+ "100": "#e6e7e9",
1475
+ "200": "#cccfd3",
1476
+ "300": "#b3b6bd",
1477
+ "400": "#9a9ea7",
1478
+ "500": "#808691",
1479
+ "600": "#696e79",
1480
+ "700": "#53575f",
1481
+ "800": "#302e32",
1482
+ "900": "#161517",
1483
+ "base": "#373439"
1484
+ },
1485
+ "indigo": {
1486
+ "50": "#f4f1fc",
1487
+ "100": "#e4e2e9",
1488
+ "200": "#c8c5d3",
1489
+ "300": "#ada8bd",
1490
+ "400": "#918ba7",
1491
+ "500": "#766e91",
1492
+ "600": "#5e5874",
1493
+ "700": "#474257",
1494
+ "800": "#23212c",
1495
+ "900": "#18161d",
1496
+ "base": "#2f2c3a"
1497
+ },
1498
+ "info": {
1499
+ "50": "#dae6fc",
1500
+ "100": "#b5cdf9",
1501
+ "200": "#91b3f6",
1502
+ "300": "#6c9af3",
1503
+ "400": "#135be6",
1504
+ "500": "#0e44ad",
1505
+ "600": "#092e73",
1506
+ "700": "#061d48",
1507
+ "800": "#05173a",
1508
+ "900": "#041330",
1509
+ "base": "#4781f0"
1510
+ },
1511
+ "success": {
1512
+ "50": "#e0f8e7",
1513
+ "100": "#c0f2ce",
1514
+ "200": "#a1ebb6",
1515
+ "300": "#81e59d",
1516
+ "400": "#41d76b",
1517
+ "500": "#2ac656",
1518
+ "600": "#1c8439",
1519
+ "700": "#15632b",
1520
+ "800": "#0e421d",
1521
+ "900": "#07210e",
1522
+ "base": "#62de85"
1523
+ },
1524
+ "warning": {
1525
+ "50": "#ffedd8",
1526
+ "100": "#ffdbb1",
1527
+ "200": "#ffca8b",
1528
+ "300": "#ffb864",
1529
+ "400": "#ff9416",
1530
+ "500": "#ed8000",
1531
+ "600": "#c66b00",
1532
+ "700": "#9e5600",
1533
+ "800": "#4f2b00",
1534
+ "900": "#271500",
1535
+ "base": "#ffa63d"
1536
+ },
1537
+ "danger": {
1538
+ "50": "#ffdddd",
1539
+ "100": "#ffbaba",
1540
+ "200": "#ff9898",
1541
+ "300": "#ff7575",
1542
+ "400": "#ff2323",
1543
+ "500": "#f10000",
1544
+ "600": "#c10000",
1545
+ "700": "#910000",
1546
+ "800": "#610000",
1547
+ "900": "#300000",
1548
+ "base": "#FF5353"
1549
+ },
1550
+ "gradients": {
1551
+ "base": "linear-gradient(229.65deg, #292924 15.78%, #0F0F0F 88.39%)",
1552
+ "transparent": "rgba(0,0,0,0)"
1553
+ },
1554
+ "utility": {
1555
+ "transparent": "rgba(0,0,0,0)"
1556
+ }
1557
+ },
1558
+ "sizes": {
1559
+ "0": "0",
1560
+ "1": "1px",
1561
+ "2": "0.25rem",
1562
+ "3": "0.5rem",
1563
+ "4": "0.75rem",
1564
+ "5": "1rem",
1565
+ "6": "1.25rem",
1566
+ "7": "1.5rem",
1567
+ "8": "1.75rem",
1568
+ "9": "2rem",
1569
+ "10": "2.5rem",
1570
+ "11": "4rem"
1571
+ },
1572
+ "typography": {
1573
+ "font": {
1574
+ "families": {
1575
+ "regular": "\"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1576
+ "mono": "\"Inconsolata\", \"SFMono Regular\", monospace",
1577
+ "display": "'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1578
+ },
1579
+ "weights": {
1580
+ "1": "400",
1581
+ "2": "500",
1582
+ "3": "600",
1583
+ "4": "700"
1584
+ },
1585
+ "sizes": {
1586
+ "1": "0.75rem",
1587
+ "2": "0.875rem",
1588
+ "3": "1rem",
1589
+ "4": "1.25rem",
1590
+ "6": "2rem",
1591
+ "base": "16px"
1592
+ },
1593
+ "line-height": {
1594
+ "1": "1.5",
1595
+ "2": "1.6",
1596
+ "3": "1.7",
1597
+ "4": "1.3"
1598
+ }
1599
+ },
1600
+ "styles": {
1601
+ "titles": {
1602
+ "xs": "700 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1603
+ "sm": "700 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1604
+ "md": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1605
+ "lg": "700 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1606
+ "xl": "700 1.25rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1607
+ "2xl": "600 2rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1608
+ },
1609
+ "text": {
1610
+ "sm": "400 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1611
+ "md": "400 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1612
+ "lg": "400 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1613
+ },
1614
+ "text-sbold": {
1615
+ "sm": "500 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1616
+ "md": "500 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1617
+ "lg": "500 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1618
+ },
1619
+ "text-bold": {
1620
+ "sm": "600 0.75rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1621
+ "md": "600 0.875rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1622
+ "lg": "600 1rem/1.5 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1623
+ },
1624
+ "text-mono": {
1625
+ "sm": "500 0.75rem/1.6 \"Inconsolata\", \"SFMono Regular\", monospace",
1626
+ "md": "500 0.875rem/1.7 \"Inconsolata\", \"SFMono Regular\", monospace",
1627
+ "lg": "500 1rem/1.6 \"Inconsolata\", \"SFMono Regular\", monospace"
1628
+ },
1629
+ "titles-brand": {
1630
+ "xs": "600 20px/1.5 'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1631
+ "sm": "600 24px/1.5 'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1632
+ "md": "600 36px/1.3 'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1633
+ "lg": "600 56px/1.3 'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;",
1634
+ "xl": "700 64px/1.3 'Basier Square', \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1635
+ },
1636
+ "field": {
1637
+ "md": "400 0.875rem/1.6 \"Inter\",\"SF Pro Display\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen,Ubuntu, Cantarell,\"Open Sans\",\"Helvetica Neue\",sans-serif;"
1638
+ }
1639
+ }
1640
+ },
1641
+ "border": {
1642
+ "radii": {
1643
+ "0": "0",
1644
+ "1": "0.25rem",
1645
+ "2": "0.5rem",
1646
+ "full": "9999px"
1647
+ },
1648
+ "width": {
1649
+ "1": "1px",
1650
+ "2": "2px"
1651
+ }
1652
+ },
1653
+ "spaces": {
1654
+ "0": "0",
1655
+ "1": "0.25rem",
1656
+ "2": "0.5rem",
1657
+ "3": "0.75rem",
1658
+ "4": "1rem",
1659
+ "5": "1.5rem",
1660
+ "6": "2rem",
1661
+ "7": "2.5rem"
1662
+ },
1663
+ "shadow": {
1664
+ "1": "0 1px 2px 0 rgba(16, 24, 40, 0.06), 0 1px 3px 0 rgba(16, 24, 40, 0.1)",
1665
+ "2": "0 4px 4px 0 rgba(88, 92, 98, 0.06), inset 5px 0 10px 0 rgba(104, 105, 111, 0.1)"
1666
+ }
1667
+ }