@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,789 @@
1
+ {
2
+ "click": {
3
+ "accordion": {
4
+ "color": {
5
+ "label": {
6
+ "default": "#161517",
7
+ "hover": "lch(13.9 1.33 305)",
8
+ "active": "#161517"
9
+ },
10
+ "icon": {
11
+ "default": "#161517",
12
+ "hover": "lch(13.9 1.33 305)",
13
+ "active": "#161517"
14
+ }
15
+ }
16
+ },
17
+ "alert": {
18
+ "color": {
19
+ "background": {
20
+ "default": "#ffffff",
21
+ "success": "#e0f8e7",
22
+ "neutral": "#e6e7e9",
23
+ "danger": "#ffdddd",
24
+ "warning": "#ffedd8",
25
+ "info": "#dae6fc"
26
+ },
27
+ "text": {
28
+ "default": "#696e79",
29
+ "success": "#1c8439",
30
+ "neutral": "#53575f",
31
+ "danger": "#c10000",
32
+ "warning": "#9e5600",
33
+ "info": "#135be6"
34
+ },
35
+ "iconBackground": {
36
+ "default": "#ffffff",
37
+ "success": "lch(92.6 11.4 153)",
38
+ "neutral": "lch(88.9 1.07 266)",
39
+ "danger": "lch(88.3 12.6 20.6)",
40
+ "warning": "lch(91.9 12.7 73)",
41
+ "info": "lch(88.2 11.8 266)"
42
+ },
43
+ "iconForeground": {
44
+ "default": "#696e79",
45
+ "success": "lch(48.3 52.9 144 / 0.75)",
46
+ "neutral": "lch(36.8 5.23 267 / 0.75)",
47
+ "danger": "lch(41 86.6 40.9 / 0.75)",
48
+ "warning": "lch(44.6 59.8 63.2 / 0.75)",
49
+ "info": "lch(41.9 80.9 287 / 0.75)"
50
+ }
51
+ }
52
+ },
53
+ "badge": {
54
+ "color": {
55
+ "background": {
56
+ "default": "#ffffff",
57
+ "success": "#e0f8e7",
58
+ "neutral": "#e6e7e9",
59
+ "danger": "#ffdddd",
60
+ "disabled": "#dfdfdf"
61
+ },
62
+ "text": {
63
+ "default": "#696e79",
64
+ "success": "#1c8439",
65
+ "neutral": "#53575f",
66
+ "danger": "#c10000",
67
+ "disabled": "#a0a0a0"
68
+ },
69
+ "stroke": {
70
+ "default": "lch(91.6 1.1 266 / 0.3)",
71
+ "success": "#e0f8e7",
72
+ "neutral": "#e6e7e9",
73
+ "danger": "#ffdddd",
74
+ "disabled": "lch(84.4 0 0)"
75
+ }
76
+ }
77
+ },
78
+ "big-stat": {
79
+ "color": {
80
+ "stroke": {
81
+ "default": "lch(91.6 1.1 266 / 0.3)"
82
+ },
83
+ "background": {
84
+ "default": "#ffffff"
85
+ },
86
+ "label": {
87
+ "default": "#696e79"
88
+ },
89
+ "large-value": {
90
+ "default": "#161517"
91
+ }
92
+ }
93
+ },
94
+ "button": {
95
+ "basic": {
96
+ "color": {
97
+ "primary": {
98
+ "background": {
99
+ "default": "#302e32",
100
+ "hover": "lch(55.8 3.66 267)",
101
+ "active": "lch(6.42 1.33 305)"
102
+ },
103
+ "text": {
104
+ "default": "#ffffff"
105
+ },
106
+ "stroke": {
107
+ "default": "#302e32",
108
+ "hover": "lch(55.8 3.66 267)",
109
+ "active": "lch(6.42 1.33 305)"
110
+ }
111
+ },
112
+ "secondary": {
113
+ "background": {
114
+ "default": "rgba(0,0,0,0)",
115
+ "hover": "#f6f7fa",
116
+ "active": "lch(95.3 1.54 272)"
117
+ },
118
+ "stroke": {
119
+ "default": "lch(91.6 1.1 266 / 0.3)",
120
+ "hover": "#e6e7e9",
121
+ "active": "lch(83.8 2.3 258)"
122
+ },
123
+ "text": {
124
+ "default": "#161517"
125
+ }
126
+ },
127
+ "disabled": {
128
+ "background": {
129
+ "default": "#dfdfdf"
130
+ },
131
+ "text": {
132
+ "default": "#a0a0a0"
133
+ }
134
+ },
135
+ "danger": {
136
+ "background": {
137
+ "default": "#ffdddd",
138
+ "hover": "#ff9898",
139
+ "active": "#ffbaba"
140
+ },
141
+ "text": {
142
+ "default": "#c10000"
143
+ }
144
+ }
145
+ }
146
+ },
147
+ "iconButton": {
148
+ "color": {
149
+ "primary": {
150
+ "background": {
151
+ "default": "rgba(0,0,0,0)",
152
+ "hover": "#f6f7fa",
153
+ "active": "rgb(86.8% 87.2% 88.2%)"
154
+ },
155
+ "stroke": {
156
+ "default": "rgba(0,0,0,0)",
157
+ "hover": "#f6f7fa",
158
+ "active": "rgb(86.8% 87.2% 88.2%)"
159
+ },
160
+ "text": {
161
+ "default": "#161517",
162
+ "hover": "#161517",
163
+ "active": "#161517"
164
+ }
165
+ },
166
+ "secondary": {
167
+ "background": {
168
+ "default": "#302e32",
169
+ "hover": "lch(55.8 3.66 267)",
170
+ "active": "lch(6.1 1.26 305)"
171
+ },
172
+ "stroke": {
173
+ "default": "rgba(0,0,0,0)",
174
+ "hover": "lch(55.8 3.66 267)",
175
+ "active": "lch(6.1 1.26 305)"
176
+ },
177
+ "text": {
178
+ "default": "#ffffff",
179
+ "hover": "#ffffff",
180
+ "active": "#ffffff"
181
+ }
182
+ },
183
+ "disabled": {
184
+ "background": {
185
+ "default": "#dfdfdf"
186
+ },
187
+ "text": {
188
+ "default": "#a0a0a0"
189
+ }
190
+ },
191
+ "danger": {
192
+ "background": {
193
+ "default": "#ffdddd",
194
+ "hover": "#ff9898",
195
+ "active": "#ffbaba"
196
+ },
197
+ "text": {
198
+ "default": "#c10000"
199
+ }
200
+ }
201
+ }
202
+ },
203
+ "split": {
204
+ "primary": {
205
+ "stroke": {
206
+ "default": "lch(23.3 2.63 306)",
207
+ "active": "lch(16.4 2.36 306)",
208
+ "hover": "lch(53.6 2.86 267)"
209
+ },
210
+ "background": {
211
+ "main": {
212
+ "default": "lch(17.6 2.54 306)",
213
+ "hover": "lch(51.1 3.35 267)",
214
+ "active": "lch(5.87 1.22 305)"
215
+ },
216
+ "action": {
217
+ "default": "lch(6.35 1.32 305)",
218
+ "hover": "lch(48.5 3.18 267)",
219
+ "active": "lch(3.47 0.72 305)"
220
+ }
221
+ },
222
+ "text": {
223
+ "default": "#ffffff"
224
+ }
225
+ }
226
+ },
227
+ "group": {
228
+ "color": {
229
+ "background": {
230
+ "default": "#ffffff",
231
+ "hover": "lch(68.1 1.1 272)",
232
+ "active": "lch(81 1.31 272)",
233
+ "panel": "#ffffff"
234
+ },
235
+ "text": {
236
+ "default": "#161517",
237
+ "hover": "#161517",
238
+ "active": "#151515"
239
+ },
240
+ "stroke": {
241
+ "panel": "lch(91.6 1.1 266 / 0.3)"
242
+ }
243
+ }
244
+ },
245
+ "alignedLeft": {
246
+ "color": {
247
+ "background": {
248
+ "default": "rgba(0,0,0,0)",
249
+ "hover": "#f6f7fa",
250
+ "active": "lch(95.3 1.54 272)"
251
+ },
252
+ "stroke": {
253
+ "default": "lch(91.6 1.1 266 / 0.3)",
254
+ "hover": "#e6e7e9",
255
+ "active": "#cccfd3"
256
+ },
257
+ "text": {
258
+ "default": "#161517",
259
+ "hover": "#161517",
260
+ "active": "#161517"
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "card": {
266
+ "color": {
267
+ "background": {
268
+ "default": "#ffffff",
269
+ "hover": "#f6f7fa",
270
+ "active": "lch(92.4 1.49 272)",
271
+ "disabled": "#dfdfdf"
272
+ },
273
+ "title": {
274
+ "default": "#161517",
275
+ "hover": "#161517",
276
+ "active": "#161517",
277
+ "disabled": "#a0a0a0"
278
+ },
279
+ "description": {
280
+ "default": "#696e79",
281
+ "hover": "#696e79",
282
+ "active": "#696e79",
283
+ "disabled": "#a0a0a0"
284
+ },
285
+ "link": {
286
+ "default": "#161517",
287
+ "hover": "#135be6",
288
+ "active": "#161517",
289
+ "disabled": "#a0a0a0"
290
+ },
291
+ "stroke": {
292
+ "default": "lch(91.6 1.1 266 / 0.3)",
293
+ "hover": "lch(91.6 1.1 266 / 0.3)",
294
+ "active": "lch(87 1.05 266 / 0.3)",
295
+ "disabled": "#dfdfdf"
296
+ }
297
+ }
298
+ },
299
+ "checkbox": {
300
+ "color": {
301
+ "background": {
302
+ "default": "#f6f7fa",
303
+ "active": "#161517",
304
+ "disabled-checked": "#dfdfdf",
305
+ "disabled-unchecked": "#dfdfdf"
306
+ },
307
+ "stroke": {
308
+ "default": "#b3b6bd",
309
+ "active": "#161517",
310
+ "disabled": "#c0c0c0"
311
+ },
312
+ "check": {
313
+ "default": "#ffffff",
314
+ "active": "#ffffff",
315
+ "disabled": "#a0a0a0"
316
+ },
317
+ "label": {
318
+ "default": "#161517",
319
+ "disabled": "#a0a0a0",
320
+ "active": "#161517"
321
+ }
322
+ }
323
+ },
324
+ "codeblock": {
325
+ "darkMode": {
326
+ "color": {
327
+ "background": {
328
+ "default": "#282828"
329
+ },
330
+ "text": {
331
+ "default": "#ffffff"
332
+ },
333
+ "numbers": {
334
+ "default": "#c0c0c0"
335
+ },
336
+ "button": {
337
+ "background": {
338
+ "default": "#282828",
339
+ "hover": "#53575f"
340
+ },
341
+ "foreground": {
342
+ "default": "#ffffff"
343
+ }
344
+ },
345
+ "stroke": {
346
+ "default": "#282828"
347
+ }
348
+ }
349
+ },
350
+ "lightMode": {
351
+ "color": {
352
+ "background": {
353
+ "default": "#f6f7fa"
354
+ },
355
+ "text": {
356
+ "default": "#282828"
357
+ },
358
+ "numbers": {
359
+ "default": "#808080"
360
+ },
361
+ "button": {
362
+ "background": {
363
+ "default": "#f6f7fa",
364
+ "hover": "#53575f"
365
+ },
366
+ "foreground": {
367
+ "default": "#a0a0a0"
368
+ }
369
+ },
370
+ "stroke": {
371
+ "default": "#282828"
372
+ }
373
+ }
374
+ }
375
+ },
376
+ "codeInline": {
377
+ "color": {
378
+ "background": {
379
+ "default": "#f6f7fa"
380
+ },
381
+ "text": {
382
+ "default": "#161517"
383
+ },
384
+ "stroke": {
385
+ "default": "lch(91.6 1.1 266 / 0.3)"
386
+ }
387
+ }
388
+ },
389
+ "contextMenu": {
390
+ "button": {
391
+ "background": {
392
+ "default": "#f6f7fa"
393
+ },
394
+ "label": {
395
+ "default": "#161517"
396
+ },
397
+ "stroke": {
398
+ "default": "lch(91.6 1.1 266 / 0.3)"
399
+ }
400
+ },
401
+ "color": {
402
+ "text": {
403
+ "default": "#161517",
404
+ "disabled": "#c0c0c0",
405
+ "muted": "#696e79",
406
+ "hover": "#161517",
407
+ "active": "#161517"
408
+ },
409
+ "background": {
410
+ "default": "lch(100 0 0)",
411
+ "hover": "lch(97.5 1.43 272)",
412
+ "active": "lch(97.5 1.43 272)"
413
+ }
414
+ },
415
+ "stroke": {
416
+ "default": "lch(91.6 1.1 266 / 0.3)"
417
+ }
418
+ },
419
+ "field": {
420
+ "color": {
421
+ "background": {
422
+ "default": "#f6f7fa",
423
+ "active": "#ffffff",
424
+ "disabled": "#dfdfdf",
425
+ "hover": "#f6f7fa"
426
+ },
427
+ "text": {
428
+ "default": "#302e32",
429
+ "active": "#161517",
430
+ "disabled": "#a0a0a0",
431
+ "hover": "#302e32",
432
+ "error": "#c10000"
433
+ },
434
+ "stroke": {
435
+ "default": "lch(92 1.05 266 / 0.3)",
436
+ "active": "#161517",
437
+ "disabled": "#dfdfdf",
438
+ "hover": "lch(83.8 2.3 258)",
439
+ "error": "#c10000"
440
+ },
441
+ "label": {
442
+ "default": "#696e79",
443
+ "active": "#161517",
444
+ "disabled": "#a0a0a0",
445
+ "error": "#c10000"
446
+ },
447
+ "format": {
448
+ "default": "lch(57 5.46 269)",
449
+ "hover": "lch(57 5.46 269)",
450
+ "active": "lch(57 5.46 269)",
451
+ "disabled": "#a0a0a0",
452
+ "error": "lch(57 5.46 269)"
453
+ },
454
+ "placeholder": {
455
+ "default": "#696e79"
456
+ }
457
+ }
458
+ },
459
+ "image": {
460
+ "color": {
461
+ "stroke": "#161517"
462
+ }
463
+ },
464
+ "popover": {
465
+ "color": {
466
+ "background": {
467
+ "default": "lch(100 0 0)"
468
+ }
469
+ }
470
+ },
471
+ "sidebar": {
472
+ "navigation": {
473
+ "item": {
474
+ "color": {
475
+ "background": {
476
+ "active": "lch(91.6 1.1 266 / 0.6)",
477
+ "hover": "lch(91.6 1.1 266 / 0.6)",
478
+ "default": "rgba(0,0,0,0)"
479
+ },
480
+ "text": {
481
+ "default": "#161517",
482
+ "hover": "#161517",
483
+ "active": "#161517",
484
+ "muted": "#696e79"
485
+ },
486
+ "icon": {
487
+ "default": "#696e79"
488
+ }
489
+ }
490
+ },
491
+ "title": {
492
+ "color": {
493
+ "default": "#696e79",
494
+ "hover": "#696e79",
495
+ "active": "#696e79"
496
+ }
497
+ },
498
+ "subItem": {
499
+ "color": {
500
+ "text": {
501
+ "default": "#696e79",
502
+ "hover": "#161517",
503
+ "active": "#161517"
504
+ },
505
+ "background": {
506
+ "default": "rgba(0,0,0,0)",
507
+ "hover": "lch(91.6 1.1 266 / 0.6)",
508
+ "active": "rgba(0,0,0,0)"
509
+ }
510
+ }
511
+ }
512
+ },
513
+ "main": {
514
+ "color": {
515
+ "background": {
516
+ "default": "#ffffff"
517
+ },
518
+ "text": {
519
+ "default": "#161517",
520
+ "muted": "#696e79"
521
+ },
522
+ "stroke": {
523
+ "default": "lch(91.6 1.1 266 / 0.3)"
524
+ }
525
+ }
526
+ },
527
+ "sqlSidebar": {
528
+ "color": {
529
+ "background": {
530
+ "default": "#f6f7fa"
531
+ },
532
+ "stroke": {
533
+ "default": "lch(91.6 1.1 266 / 0.3)"
534
+ }
535
+ }
536
+ }
537
+ },
538
+ "switch": {
539
+ "color": {
540
+ "background": {
541
+ "default": "#cccfd3",
542
+ "active": "#151515",
543
+ "disabled": "#dfdfdf"
544
+ },
545
+ "stroke": {
546
+ "default": "#cccfd3",
547
+ "active": "#161517",
548
+ "disabled": "#dfdfdf"
549
+ },
550
+ "indicator": {
551
+ "default": "#ffffff",
552
+ "active": "#ffffff",
553
+ "disabled": "#a0a0a0"
554
+ }
555
+ }
556
+ },
557
+ "tabs": {
558
+ "basic": {
559
+ "color": {
560
+ "background": {
561
+ "default": "rgba(0,0,0,0)",
562
+ "hover": "#f6f7fa",
563
+ "active": "rgba(0,0,0,0)"
564
+ },
565
+ "text": {
566
+ "default": "#696e79",
567
+ "hover": "#161517",
568
+ "active": "#161517"
569
+ },
570
+ "stroke": {
571
+ "default": "rgba(0,0,0,0)",
572
+ "hover": "rgba(0,0,0,0)",
573
+ "active": "#151515"
574
+ },
575
+ "global": {
576
+ "default": "lch(91.6 1.1 266 / 0.3)"
577
+ }
578
+ }
579
+ },
580
+ "file-tabs": {
581
+ "color": {
582
+ "background": {
583
+ "default": "#f6f7fa",
584
+ "hover": "#ffffff",
585
+ "active": "#ffffff"
586
+ },
587
+ "text": {
588
+ "default": "#696e79",
589
+ "hover": "#161517",
590
+ "active": "#161517"
591
+ },
592
+ "stroke": {
593
+ "default": "lch(91.6 1.1 266 / 0.3)",
594
+ "hover": "lch(91.6 1.1 266 / 0.3)",
595
+ "active": "lch(91.6 1.1 266 / 0.3)"
596
+ }
597
+ }
598
+ }
599
+ },
600
+ "tooltip": {
601
+ "color": {
602
+ "background": {
603
+ "default": "lch(10.8 0 0 / 0.8)"
604
+ },
605
+ "label": {
606
+ "default": "#ffffff"
607
+ }
608
+ }
609
+ },
610
+ "stepperVertical": {
611
+ "icon": {
612
+ "background": {
613
+ "default": "#161517",
614
+ "incomplete": "lch(93.7 0.83 266)",
615
+ "complete": "#161517"
616
+ },
617
+ "foreground": {
618
+ "default": "#ffffff",
619
+ "incomplete": "#161517",
620
+ "complete": "#ffffff"
621
+ },
622
+ "stroke": {
623
+ "default": "#ffffff",
624
+ "incomplete": "rgba(0,0,0,0)",
625
+ "complete": "rgba(0,0,0,0)"
626
+ }
627
+ },
628
+ "connector": {
629
+ "background": {
630
+ "default": "#161517",
631
+ "incomplete": "lch(93.7 0.83 266)",
632
+ "complete": "#161517"
633
+ }
634
+ }
635
+ },
636
+ "table": {
637
+ "header": {
638
+ "color": {
639
+ "background": {
640
+ "default": "#f6f7fa"
641
+ },
642
+ "title": {
643
+ "default": "#161517"
644
+ },
645
+ "icon": {
646
+ "default": "#161517"
647
+ },
648
+ "checkbox": {
649
+ "background": {
650
+ "default": "#cccfd3"
651
+ },
652
+ "border": {
653
+ "default": "#808691"
654
+ }
655
+ }
656
+ }
657
+ },
658
+ "row": {
659
+ "color": {
660
+ "background": {
661
+ "default": "#ffffff",
662
+ "hover": "#dae6fc",
663
+ "active": "#dae6fc"
664
+ },
665
+ "stroke": {
666
+ "default": "lch(91.6 1.1 266 / 0.3)"
667
+ },
668
+ "text": {
669
+ "default": "#161517"
670
+ },
671
+ "link": {
672
+ "default": "#135be6"
673
+ },
674
+ "label": {
675
+ "default": "#696e79"
676
+ }
677
+ }
678
+ },
679
+ "global": {
680
+ "color": {
681
+ "stroke": {
682
+ "default": "lch(91.6 1.1 266 / 0.3)"
683
+ },
684
+ "background": {
685
+ "default": "#ffffff"
686
+ }
687
+ }
688
+ }
689
+ },
690
+ "avatar": {
691
+ "color": {
692
+ "background": {
693
+ "default": "#696e79",
694
+ "hover": "#9a9ea7",
695
+ "active": "#9a9ea7"
696
+ },
697
+ "text": {
698
+ "default": "#ffffff",
699
+ "hover": "#ffffff",
700
+ "active": "#ffffff"
701
+ }
702
+ }
703
+ },
704
+ "separator": {
705
+ "color": {
706
+ "stroke": {
707
+ "default": "lch(91.6 1.1 266 / 0.3)"
708
+ }
709
+ }
710
+ },
711
+ "global": {
712
+ "color": {
713
+ "background": {
714
+ "default": "#ffffff",
715
+ "muted": "#f6f7fa"
716
+ },
717
+ "text": {
718
+ "default": "#161517",
719
+ "muted": "#696e79",
720
+ "link": {
721
+ "default": "#135be6",
722
+ "hover": "#092e73"
723
+ }
724
+ },
725
+ "stroke": {
726
+ "default": "lch(91.6 1.1 266 / 0.3)",
727
+ "muted": "lch(91.6 1.1 266 / 0.3)",
728
+ "intense": "#b3b6bd"
729
+ },
730
+ "accent": {
731
+ "default": "#151515"
732
+ },
733
+ "outline": {
734
+ "default": "#135be6"
735
+ }
736
+ }
737
+ },
738
+ "feedback": {
739
+ "color": {
740
+ "info": {
741
+ "background": "#dae6fc",
742
+ "foreground": "#135be6"
743
+ },
744
+ "success": {
745
+ "background": "#e0f8e7",
746
+ "foreground": "#1c8439"
747
+ },
748
+ "warning": {
749
+ "background": "#ffedd8",
750
+ "foreground": "#9e5600"
751
+ },
752
+ "danger": {
753
+ "background": "#ffdddd",
754
+ "foreground": "#c10000"
755
+ },
756
+ "neutral": {
757
+ "background": "#e6e7e9",
758
+ "foreground": "#53575f",
759
+ "stroke": "lch(91.6 1.1 266 / 0.3)"
760
+ }
761
+ }
762
+ },
763
+ "grid": {
764
+ "color": {
765
+ "background": {
766
+ "header": {
767
+ "default": "lch(97.2 1.57 272 / 0.7)"
768
+ },
769
+ "row": {
770
+ "default": "#ffffff"
771
+ }
772
+ },
773
+ "text": {
774
+ "header": {
775
+ "default": "#696e79"
776
+ },
777
+ "row": {
778
+ "default": "#161517"
779
+ }
780
+ },
781
+ "stroke": {
782
+ "cell": {
783
+ "stroke": "lch(91.6 1.1 266 / 0.3)"
784
+ }
785
+ }
786
+ }
787
+ }
788
+ }
789
+ }