@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,135 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Wed, 24 May 2023 07:49:29 GMT
4
+ */
5
+
6
+ :root {
7
+ --click-checkbox-color-label-disabled: #a0a0a0;
8
+ --click-checkbox-color-label-off: #696e79;
9
+ --click-checkbox-color-check-disabled: #c0c0c0;
10
+ --click-feedback-color-neutral-foreground: var(--palette-neutral-300);
11
+ --click-feedback-color-neutral-background: var(--palette-neutral-700);
12
+ --click-feedback-color-danger-foreground: var(--palette-danger-300);
13
+ --click-feedback-color-danger-background: var(--palette-danger-800);
14
+ --click-feedback-color-warning-foreground: var(--palette-warning-400);
15
+ --click-feedback-color-warning-background: var(--palette-warning-800);
16
+ --click-feedback-color-success-foreground: var(--palette-success-300);
17
+ --click-feedback-color-success-background: var(--palette-success-800);
18
+ --click-feedback-color-info-foreground: var(--palette-info-200);
19
+ --click-feedback-color-info-background: var(--palette-info-600);
20
+ --click-global-color-outline-default: var(--palette-brand-300);
21
+ --click-global-color-accent-default: var(--palette-brand-300);
22
+ --click-global-color-stroke-muted: lch(27.5 0 0 / 0.3);
23
+ --click-global-color-stroke-default: lch(27.5 0 0 / 0.3);
24
+ --click-global-color-text-link-hover: var(--palette-brand-100);
25
+ --click-global-color-text-link-default: var(--palette-brand-300);
26
+ --click-global-color-text-muted: var(--palette-slate-300);
27
+ --click-global-color-text-default: var(--palette-neutral-0);
28
+ --click-global-color-background-muted: var(--palette-neutral-725);
29
+ --click-global-color-background-default: var(--palette-neutral-750);
30
+ --click-switch-color-indicator-disabled: var(--palette-neutral-600);
31
+ --click-switch-color-indicator-active: var(--palette-slate-900);
32
+ --click-switch-color-indicator-default: var(--palette-neutral-400);
33
+ --click-switch-color-stroke-disabled: var(--palette-neutral-400);
34
+ --click-switch-color-background-disabled-checked: var(--palette-neutral-500);
35
+ --click-switch-color-background-active: var(--palette-brand-300);
36
+ --click-switch-color-background-default: var(--palette-slate-800);
37
+ --click-sidebar-main-color-item-background-active: lch(27.5 0 0 / 0.6);
38
+ --click-sidebar-main-color-item-background-default: var(--palette-utility-transparent);
39
+ --click-popover-color-background-default: lch(17.8 0 0);
40
+ --click-field-color-label-disabled: var(--palette-neutral-400);
41
+ --click-field-color-stroke-disabled: var(--palette-neutral-700);
42
+ --click-field-color-text-disabled: var(--palette-neutral-500);
43
+ --click-field-color-text-default: var(--palette-slate-100);
44
+ --click-field-color-background-disabled: var(--palette-neutral-700);
45
+ --click-field-color-background-default: var(--palette-neutral-725);
46
+ --click-context-menu-color-text-disabled: var(--palette-neutral-300);
47
+ --click-codeblock-color-stroke-inline: lch(32.9 0 0);
48
+ --click-codeblock-color-stroke-default: lch(32.9 0 0);
49
+ --click-codeblock-color-button-hover: var(--palette-neutral-0);
50
+ --click-codeblock-color-button-default: var(--palette-neutral-800);
51
+ --click-codeblock-color-text-default: var(--palette-neutral-0);
52
+ --click-codeblock-color-background-default: var(--palette-neutral-725);
53
+ --click-checkbox-color-check-default: var(--palette-neutral-0);
54
+ --click-checkbox-color-stroke-disabled: var(--palette-neutral-600);
55
+ --click-checkbox-color-background-disabled-checked: var(--palette-neutral-700);
56
+ --click-checkbox-color-background-active: var(--palette-slate-900);
57
+ --click-button-group-color-text-active: var(--palette-neutral-0);
58
+ --click-button-group-color-background-active: lch(23.4 0 0);
59
+ --click-button-group-color-background-hover: lch(19.3 0 0);
60
+ --click-button-split-primary-background-action-default: lch(89.5 60.4 102);
61
+ --click-button-basic-color-danger-background-hover: var(--palette-danger-700);
62
+ --click-button-basic-color-secondary-stroke-active: lch(23.3 2.63 306);
63
+ --click-button-basic-color-secondary-stroke-hover: var(--palette-slate-500);
64
+ --click-button-basic-color-secondary-stroke-default: var(--palette-neutral-700);
65
+ --click-button-basic-color-primary-stroke-hover: var(--palette-brand-300);
66
+ --click-button-basic-color-primary-background-active: lch(90.5 61.1 102);
67
+ --click-button-basic-color-primary-background-hover: lch(98.5 46.2 102);
68
+ --click-table-color-cell-stroke: var(--click-global-color-stroke-default);
69
+ --click-table-color-row-text: var(--click-global-color-text-default);
70
+ --click-table-color-row-background: var(--click-global-color-background-default);
71
+ --click-table-color-header-text: var(--click-global-color-text-default);
72
+ --click-table-color-header-background: var(--click-global-color-background-muted);
73
+ --click-grid-color-stroke-cell-stroke: var(--click-global-color-stroke-default);
74
+ --click-grid-color-text-row-default: var(--click-global-color-text-default);
75
+ --click-grid-color-text-header-default: var(--click-global-color-text-muted);
76
+ --click-grid-color-background-row-default: var(--click-global-color-background-default);
77
+ --click-grid-color-background-header-default: lch(16.1 0 0 / 0.7);
78
+ --click-feedback-color-neutral-stroke: var(--click-global-color-stroke-default);
79
+ --click-switch-color-stroke-active: var(--click-checkbox-color-background-active);
80
+ --click-switch-color-stroke-default: var(--click-global-color-stroke-default);
81
+ --click-sidebar-sql-sidebar-color-stroke-default: var(--click-global-color-stroke-default);
82
+ --click-sidebar-sql-sidebar-color-background-default: var(--click-global-color-background-muted);
83
+ --click-sidebar-main-color-stroke-default: var(--click-global-color-stroke-default);
84
+ --click-sidebar-main-color-text-muted: var(--click-global-color-text-muted);
85
+ --click-sidebar-main-color-text-default: var(--click-global-color-text-default);
86
+ --click-sidebar-main-color-item-text-muted: var(--click-global-color-text-muted);
87
+ --click-sidebar-main-color-item-text-default: var(--click-global-color-text-default);
88
+ --click-sidebar-main-color-item-background-hover: lch(19.1 0 0);
89
+ --click-sidebar-main-color-background-default: var(--click-global-color-background-default);
90
+ --click-field-color-label-active: var(--click-global-color-text-default);
91
+ --click-field-color-label-default: var(--click-global-color-text-muted);
92
+ --click-field-color-stroke-active: var(--click-global-color-accent-default);
93
+ --click-field-color-stroke-default: lch(31.1 0 0 / 0.3);
94
+ --click-field-color-text-active: var(--click-global-color-text-default);
95
+ --click-field-color-background-active: var(--click-global-color-background-default);
96
+ --click-context-menu-stroke-default: var(--click-global-color-stroke-default);
97
+ --click-context-menu-color-background-hover: lch(23.5 0 0);
98
+ --click-context-menu-color-background-default: var(--click-popover-color-background-default);
99
+ --click-context-menu-color-text-muted: var(--click-global-color-text-muted);
100
+ --click-context-menu-color-text-default: var(--click-global-color-text-default);
101
+ --click-codeblock-color-background-inline: var(--click-global-color-background-muted);
102
+ --click-checkbox-color-label-default: var(--click-global-color-text-default);
103
+ --click-checkbox-color-stroke-active: var(--click-checkbox-color-background-active);
104
+ --click-checkbox-color-stroke-default: var(--click-global-color-stroke-default);
105
+ --click-checkbox-color-background-default: var(--click-field-color-background-default);
106
+ --click-button-group-color-stroke-panel: var(--click-global-color-stroke-default);
107
+ --click-button-group-color-text-default: var(--click-global-color-text-default);
108
+ --click-button-group-color-background-default: var(--click-global-color-background-muted);
109
+ --click-button-split-primary-background-main-active: lch(82.8 55.9 102);
110
+ --click-button-split-primary-background-main-hover: lch(90.1 42.3 102);
111
+ --click-button-basic-color-danger-text-default: var(--click-feedback-color-danger-foreground);
112
+ --click-button-basic-color-danger-background-active: var(--click-button-basic-color-danger-background-hover);
113
+ --click-button-basic-color-danger-background-default: var(--click-feedback-color-danger-background);
114
+ --click-button-basic-color-disabled-text-default: var(--click-field-color-text-disabled);
115
+ --click-button-basic-color-disabled-background-default: var(--click-field-color-background-disabled);
116
+ --click-button-basic-color-secondary-text-default: var(--click-global-color-text-default);
117
+ --click-button-basic-color-secondary-background-hover: var(--click-global-color-background-muted);
118
+ --click-button-basic-color-secondary-background-default: var(--click-global-color-background-default);
119
+ --click-button-basic-color-primary-stroke-default: var(--click-global-color-accent-default);
120
+ --click-button-basic-color-primary-text-default: var(--click-global-color-background-default);
121
+ --click-button-basic-color-primary-background-default: var(--click-global-color-accent-default);
122
+ --click-field-color-stroke-hover: lch(34.5 0 0 / 0.3);
123
+ --click-context-menu-color-background-active: var(--click-context-menu-color-background-hover);
124
+ --click-button-group-color-text-hover: var(--click-button-group-color-text-default);
125
+ --click-button-group-color-background-panel: var(--click-button-group-color-background-default);
126
+ --click-button-split-primary-text-default: var(--click-button-basic-color-primary-text-default);
127
+ --click-button-split-primary-background-action-active: lch(72.9 49.2 102);
128
+ --click-button-split-primary-background-action-hover: lch(82.9 38.9 102);
129
+ --click-button-split-primary-background-main-default: lch(89.5 60.4 102);
130
+ --click-button-split-primary-stroke-active: lch(83.1 56.1 102);
131
+ --click-button-split-primary-stroke-default: lch(97.9 62.7 102);
132
+ --click-button-basic-color-secondary-background-active: lch(20.3 0 0);
133
+ --click-button-basic-color-primary-stroke-active: var(--click-button-split-primary-background-main-active);
134
+ --click-button-split-primary-stroke-hover: lch(84.6 35 102);
135
+ }
@@ -0,0 +1,339 @@
1
+ {
2
+ "click": {
3
+ "button": {
4
+ "basic": {
5
+ "color": {
6
+ "primary": {
7
+ "background": {
8
+ "default": "#fcff74",
9
+ "hover": "lch(98.5 46.2 102)",
10
+ "active": "lch(90.5 61.1 102)"
11
+ },
12
+ "text": {
13
+ "default": "#1F1F1C"
14
+ },
15
+ "stroke": {
16
+ "default": "#fcff74",
17
+ "hover": "#fcff74",
18
+ "active": "lch(82.8 55.9 102)"
19
+ }
20
+ },
21
+ "secondary": {
22
+ "background": {
23
+ "default": "#1F1F1C",
24
+ "hover": "#282828",
25
+ "active": "lch(20.3 0 0)"
26
+ },
27
+ "stroke": {
28
+ "default": "#414141",
29
+ "hover": "#808691",
30
+ "active": "lch(23.3 2.63 306)"
31
+ },
32
+ "text": {
33
+ "default": "#ffffff"
34
+ }
35
+ },
36
+ "disabled": {
37
+ "background": {
38
+ "default": "#414141"
39
+ },
40
+ "text": {
41
+ "default": "#808080"
42
+ }
43
+ },
44
+ "danger": {
45
+ "background": {
46
+ "default": "#610000",
47
+ "hover": "#910000",
48
+ "active": "#910000"
49
+ },
50
+ "text": {
51
+ "default": "#ff7575"
52
+ }
53
+ }
54
+ }
55
+ },
56
+ "split": {
57
+ "primary": {
58
+ "stroke": {
59
+ "default": "lch(97.9 62.7 102)",
60
+ "active": "lch(83.1 56.1 102)",
61
+ "hover": "lch(84.6 35 102)"
62
+ },
63
+ "background": {
64
+ "main": {
65
+ "default": "lch(89.5 60.4 102)",
66
+ "hover": "lch(90.1 42.3 102)",
67
+ "active": "lch(82.8 55.9 102)"
68
+ },
69
+ "action": {
70
+ "default": "lch(89.5 60.4 102)",
71
+ "hover": "lch(82.9 38.9 102)",
72
+ "active": "lch(72.9 49.2 102)"
73
+ }
74
+ },
75
+ "text": {
76
+ "default": "#1F1F1C"
77
+ }
78
+ }
79
+ },
80
+ "group": {
81
+ "color": {
82
+ "background": {
83
+ "default": "#282828",
84
+ "hover": "lch(19.3 0 0)",
85
+ "active": "lch(23.4 0 0)",
86
+ "panel": "#282828"
87
+ },
88
+ "text": {
89
+ "default": "#ffffff",
90
+ "hover": "#ffffff",
91
+ "active": "#ffffff"
92
+ },
93
+ "stroke": {
94
+ "panel": "lch(27.5 0 0 / 0.3)"
95
+ }
96
+ }
97
+ }
98
+ },
99
+ "checkbox": {
100
+ "color": {
101
+ "background": {
102
+ "default": "#282828",
103
+ "active": "#fcff74",
104
+ "disabled-checked": "#414141"
105
+ },
106
+ "stroke": {
107
+ "default": "lch(27.5 0 0 / 0.3)",
108
+ "active": "#fcff74",
109
+ "disabled": "#606060"
110
+ },
111
+ "check": {
112
+ "default": "#ffffff",
113
+ "active": "#151515",
114
+ "disabled": "#c0c0c0"
115
+ },
116
+ "label": {
117
+ "default": "#ffffff",
118
+ "off": "#696e79",
119
+ "disabled": "#a0a0a0"
120
+ }
121
+ }
122
+ },
123
+ "codeblock": {
124
+ "color": {
125
+ "background": {
126
+ "default": "#282828",
127
+ "inline": "#282828"
128
+ },
129
+ "text": {
130
+ "default": "#ffffff"
131
+ },
132
+ "button": {
133
+ "default": "#1d1d1d",
134
+ "hover": "#ffffff"
135
+ },
136
+ "stroke": {
137
+ "default": "lch(32.9 0 0)",
138
+ "inline": "lch(32.9 0 0)"
139
+ }
140
+ }
141
+ },
142
+ "context-menu": {
143
+ "color": {
144
+ "text": {
145
+ "default": "#ffffff",
146
+ "disabled": "#c0c0c0",
147
+ "muted": "#b3b6bd"
148
+ },
149
+ "background": {
150
+ "default": "lch(17.8 0 0)",
151
+ "hover": "lch(23.5 0 0)",
152
+ "active": "lch(23.5 0 0)"
153
+ }
154
+ },
155
+ "stroke": {
156
+ "default": "lch(27.5 0 0 / 0.3)"
157
+ }
158
+ },
159
+ "field": {
160
+ "color": {
161
+ "background": {
162
+ "default": "#282828",
163
+ "active": "#1F1F1C",
164
+ "disabled": "#414141"
165
+ },
166
+ "text": {
167
+ "default": "#e6e7e9",
168
+ "active": "#ffffff",
169
+ "disabled": "#808080"
170
+ },
171
+ "stroke": {
172
+ "default": "lch(31.1 0 0 / 0.3)",
173
+ "active": "#fcff74",
174
+ "disabled": "#414141",
175
+ "hover": "lch(34.5 0 0 / 0.3)"
176
+ },
177
+ "label": {
178
+ "default": "#b3b6bd",
179
+ "active": "#ffffff",
180
+ "disabled": "#a0a0a0"
181
+ }
182
+ }
183
+ },
184
+ "popover": {
185
+ "color": {
186
+ "background": {
187
+ "default": "lch(17.8 0 0)"
188
+ }
189
+ }
190
+ },
191
+ "sidebar": {
192
+ "main": {
193
+ "color": {
194
+ "background": {
195
+ "default": "#1F1F1C"
196
+ },
197
+ "item": {
198
+ "background": {
199
+ "default": "rgba(0,0,0,0)",
200
+ "active": "lch(27.5 0 0 / 0.6)",
201
+ "hover": "lch(19.1 0 0)"
202
+ },
203
+ "text": {
204
+ "default": "#ffffff",
205
+ "muted": "#b3b6bd"
206
+ }
207
+ },
208
+ "text": {
209
+ "default": "#ffffff",
210
+ "muted": "#b3b6bd"
211
+ },
212
+ "stroke": {
213
+ "default": "lch(27.5 0 0 / 0.3)"
214
+ }
215
+ }
216
+ },
217
+ "sql-sidebar": {
218
+ "color": {
219
+ "background": {
220
+ "default": "#282828"
221
+ },
222
+ "stroke": {
223
+ "default": "lch(27.5 0 0 / 0.3)"
224
+ }
225
+ }
226
+ }
227
+ },
228
+ "switch": {
229
+ "color": {
230
+ "background": {
231
+ "default": "#302e32",
232
+ "active": "#fcff74",
233
+ "disabled": "#808080"
234
+ },
235
+ "stroke": {
236
+ "default": "lch(27.5 0 0 / 0.3)",
237
+ "active": "#fcff74",
238
+ "disabled": "#a0a0a0"
239
+ },
240
+ "indicator": {
241
+ "default": "#a0a0a0",
242
+ "active": "#161517",
243
+ "disabled": "#606060"
244
+ }
245
+ }
246
+ },
247
+ "global": {
248
+ "color": {
249
+ "background": {
250
+ "default": "#1F1F1C",
251
+ "muted": "#282828"
252
+ },
253
+ "text": {
254
+ "default": "#ffffff",
255
+ "muted": "#b3b6bd",
256
+ "link": {
257
+ "default": "#fcff74",
258
+ "hover": "#feffba"
259
+ }
260
+ },
261
+ "stroke": {
262
+ "default": "lch(27.5 0 0 / 0.3)",
263
+ "muted": "lch(27.5 0 0 / 0.3)"
264
+ },
265
+ "accent": {
266
+ "default": "#fcff74"
267
+ },
268
+ "outline": {
269
+ "default": "#fcff74"
270
+ }
271
+ }
272
+ },
273
+ "feedback": {
274
+ "color": {
275
+ "info": {
276
+ "background": "#092e73",
277
+ "foreground": "#91b3f6"
278
+ },
279
+ "success": {
280
+ "background": "#0e421d",
281
+ "foreground": "#81e59d"
282
+ },
283
+ "warning": {
284
+ "background": "#4f2b00",
285
+ "foreground": "#ff9416"
286
+ },
287
+ "danger": {
288
+ "background": "#610000",
289
+ "foreground": "#ff7575"
290
+ },
291
+ "neutral": {
292
+ "background": "#414141",
293
+ "foreground": "#c0c0c0",
294
+ "stroke": "lch(27.5 0 0 / 0.3)"
295
+ }
296
+ }
297
+ },
298
+ "grid": {
299
+ "color": {
300
+ "background": {
301
+ "header": {
302
+ "default": "lch(16.1 0 0 / 0.7)"
303
+ },
304
+ "row": {
305
+ "default": "#1F1F1C"
306
+ }
307
+ },
308
+ "text": {
309
+ "header": {
310
+ "default": "#b3b6bd"
311
+ },
312
+ "row": {
313
+ "default": "#ffffff"
314
+ }
315
+ },
316
+ "stroke": {
317
+ "cell": {
318
+ "stroke": "lch(27.5 0 0 / 0.3)"
319
+ }
320
+ }
321
+ }
322
+ },
323
+ "table": {
324
+ "color": {
325
+ "header": {
326
+ "background": "#282828",
327
+ "text": "#ffffff"
328
+ },
329
+ "row": {
330
+ "background": "#1F1F1C",
331
+ "text": "#ffffff"
332
+ },
333
+ "cell": {
334
+ "stroke": "lch(27.5 0 0 / 0.3)"
335
+ }
336
+ }
337
+ }
338
+ }
339
+ }