nextworks 0.2.0-alpha.11 → 0.2.0-alpha.13

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 (111) hide show
  1. package/README.md +283 -282
  2. package/dist/cli_manifests/blocks_manifest.json +198 -175
  3. package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +101 -100
  4. package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +105 -104
  5. package/dist/kits/blocks/.nextworks/docs/THEME_GUIDE.md +1 -1
  6. package/dist/kits/blocks/app/templates/aiworkflow/PresetThemeVars.tsx +58 -0
  7. package/dist/kits/blocks/app/templates/aiworkflow/README.md +46 -0
  8. package/dist/kits/blocks/app/templates/aiworkflow/components/CTA.tsx +44 -0
  9. package/dist/kits/blocks/app/templates/aiworkflow/components/Contact.tsx +105 -0
  10. package/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +63 -0
  11. package/dist/kits/blocks/app/templates/aiworkflow/components/Features.tsx +65 -0
  12. package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +109 -0
  13. package/dist/kits/blocks/app/templates/aiworkflow/components/Hero.tsx +636 -0
  14. package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +90 -0
  15. package/dist/kits/blocks/app/templates/aiworkflow/components/Pricing.tsx +86 -0
  16. package/dist/kits/blocks/app/templates/aiworkflow/components/ProcessTimeline.tsx +103 -0
  17. package/dist/kits/blocks/app/templates/aiworkflow/components/Testimonials.tsx +56 -0
  18. package/dist/kits/blocks/app/templates/aiworkflow/components/TrustBadges.tsx +59 -0
  19. package/dist/kits/blocks/app/templates/aiworkflow/page.tsx +43 -0
  20. package/dist/kits/blocks/app/templates/digitalagency/PresetThemeVars.tsx +80 -80
  21. package/dist/kits/blocks/app/templates/digitalagency/README.md +42 -42
  22. package/dist/kits/blocks/app/templates/digitalagency/components/Pricing.tsx +114 -114
  23. package/dist/kits/blocks/app/templates/digitalagency/components/Process.tsx +59 -59
  24. package/dist/kits/blocks/app/templates/digitalagency/components/Services.tsx +55 -55
  25. package/dist/kits/blocks/app/templates/digitalagency/components/Team.tsx +28 -28
  26. package/dist/kits/blocks/app/templates/digitalagency/components/Testimonials.tsx +65 -65
  27. package/dist/kits/blocks/app/templates/digitalagency/page.tsx +38 -38
  28. package/dist/kits/blocks/app/templates/gallery/PresetThemeVars.tsx +84 -84
  29. package/dist/kits/blocks/app/templates/productlaunch/PresetThemeVars.tsx +75 -75
  30. package/dist/kits/blocks/app/templates/productlaunch/README.md +62 -62
  31. package/dist/kits/blocks/app/templates/productlaunch/components/About.tsx +84 -84
  32. package/dist/kits/blocks/app/templates/productlaunch/components/CTA.tsx +50 -50
  33. package/dist/kits/blocks/app/templates/productlaunch/components/Contact.tsx +231 -231
  34. package/dist/kits/blocks/app/templates/productlaunch/components/FAQ.tsx +86 -86
  35. package/dist/kits/blocks/app/templates/productlaunch/components/Features.tsx +83 -83
  36. package/dist/kits/blocks/app/templates/productlaunch/components/Footer.tsx +132 -132
  37. package/dist/kits/blocks/app/templates/productlaunch/components/Hero.tsx +88 -88
  38. package/dist/kits/blocks/app/templates/productlaunch/components/Navbar.tsx +116 -116
  39. package/dist/kits/blocks/app/templates/productlaunch/components/Pricing.tsx +106 -106
  40. package/dist/kits/blocks/app/templates/productlaunch/components/ProcessTimeline.tsx +110 -110
  41. package/dist/kits/blocks/app/templates/productlaunch/components/ServicesGrid.tsx +68 -68
  42. package/dist/kits/blocks/app/templates/productlaunch/components/Team.tsx +104 -104
  43. package/dist/kits/blocks/app/templates/productlaunch/components/Testimonials.tsx +90 -90
  44. package/dist/kits/blocks/app/templates/productlaunch/components/TrustBadges.tsx +76 -76
  45. package/dist/kits/blocks/app/templates/productlaunch/page.tsx +43 -43
  46. package/dist/kits/blocks/app/templates/saasdashboard/PresetThemeVars.tsx +80 -80
  47. package/dist/kits/blocks/app/templates/saasdashboard/README.md +44 -44
  48. package/dist/kits/blocks/app/templates/saasdashboard/components/Contact.tsx +129 -129
  49. package/dist/kits/blocks/app/templates/saasdashboard/components/Dashboard.tsx +293 -293
  50. package/dist/kits/blocks/app/templates/saasdashboard/components/FAQ.tsx +55 -55
  51. package/dist/kits/blocks/app/templates/saasdashboard/components/Features.tsx +90 -90
  52. package/dist/kits/blocks/app/templates/saasdashboard/components/Footer.tsx +77 -77
  53. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero.tsx +104 -104
  54. package/dist/kits/blocks/app/templates/saasdashboard/components/Hero_mask.tsx +126 -126
  55. package/dist/kits/blocks/app/templates/saasdashboard/components/Navbar.tsx +117 -117
  56. package/dist/kits/blocks/app/templates/saasdashboard/components/Pricing.tsx +90 -90
  57. package/dist/kits/blocks/app/templates/saasdashboard/components/SmoothScroll.tsx +96 -96
  58. package/dist/kits/blocks/app/templates/saasdashboard/components/Testimonials.tsx +72 -72
  59. package/dist/kits/blocks/app/templates/saasdashboard/components/TrustBadges.tsx +53 -53
  60. package/dist/kits/blocks/app/templates/saasdashboard/page.tsx +39 -39
  61. package/dist/kits/blocks/components/enhanced-theme-provider.tsx +195 -195
  62. package/dist/kits/blocks/components/providers/BlocksAppProviders.tsx +27 -27
  63. package/dist/kits/blocks/components/sections/About.tsx +291 -291
  64. package/dist/kits/blocks/components/sections/CTA.tsx +257 -257
  65. package/dist/kits/blocks/components/sections/Contact.tsx +267 -267
  66. package/dist/kits/blocks/components/sections/FAQ.tsx +214 -214
  67. package/dist/kits/blocks/components/sections/Features.tsx +268 -268
  68. package/dist/kits/blocks/components/sections/Footer.tsx +302 -302
  69. package/dist/kits/blocks/components/sections/HeroMotion.tsx +308 -308
  70. package/dist/kits/blocks/components/sections/HeroOverlay.tsx +358 -358
  71. package/dist/kits/blocks/components/sections/HeroProductDemo.tsx +236 -0
  72. package/dist/kits/blocks/components/sections/HeroSplit.tsx +352 -352
  73. package/dist/kits/blocks/components/sections/Navbar.tsx +350 -350
  74. package/dist/kits/blocks/components/sections/PortfolioSimple.tsx +549 -549
  75. package/dist/kits/blocks/components/sections/Pricing.tsx +264 -264
  76. package/dist/kits/blocks/components/sections/ProcessTimeline.tsx +325 -325
  77. package/dist/kits/blocks/components/sections/ServicesGrid.tsx +210 -210
  78. package/dist/kits/blocks/components/sections/Team.tsx +309 -309
  79. package/dist/kits/blocks/components/sections/Testimonials.tsx +158 -158
  80. package/dist/kits/blocks/components/sections/TrustBadges.tsx +162 -162
  81. package/dist/kits/blocks/components/sections/product-demo/ApprovalInboxPanel.tsx +125 -0
  82. package/dist/kits/blocks/components/sections/product-demo/DemoStage.tsx +397 -0
  83. package/dist/kits/blocks/components/sections/product-demo/DemoWindow.tsx +128 -0
  84. package/dist/kits/blocks/components/sections/product-demo/KnowledgePanel.tsx +127 -0
  85. package/dist/kits/blocks/components/sections/product-demo/RunConsolePanel.tsx +150 -0
  86. package/dist/kits/blocks/components/sections/product-demo/WorkflowStudioPanel.tsx +191 -0
  87. package/dist/kits/blocks/components/sections/product-demo/types.ts +193 -0
  88. package/dist/kits/blocks/components/theme-provider.tsx +1 -1
  89. package/dist/kits/blocks/components/ui/alert-dialog.tsx +134 -134
  90. package/dist/kits/blocks/components/ui/brand-node.tsx +121 -121
  91. package/dist/kits/blocks/components/ui/button.tsx +122 -122
  92. package/dist/kits/blocks/components/ui/card.tsx +95 -95
  93. package/dist/kits/blocks/components/ui/checkbox.tsx +30 -30
  94. package/dist/kits/blocks/components/ui/cta-button.tsx +125 -125
  95. package/dist/kits/blocks/components/ui/dropdown-menu.tsx +201 -201
  96. package/dist/kits/blocks/components/ui/feature-card.tsx +91 -91
  97. package/dist/kits/blocks/components/ui/input.tsx +27 -27
  98. package/dist/kits/blocks/components/ui/label.tsx +29 -29
  99. package/dist/kits/blocks/components/ui/pricing-card.tsx +120 -120
  100. package/dist/kits/blocks/components/ui/select.tsx +25 -25
  101. package/dist/kits/blocks/components/ui/skeleton.tsx +13 -13
  102. package/dist/kits/blocks/components/ui/table.tsx +98 -98
  103. package/dist/kits/blocks/components/ui/testimonial-card.tsx +108 -108
  104. package/dist/kits/blocks/components/ui/textarea.tsx +26 -26
  105. package/dist/kits/blocks/components/ui/theme-selector.tsx +243 -243
  106. package/dist/kits/blocks/components/ui/theme-toggle.tsx +74 -74
  107. package/dist/kits/blocks/components/ui/toaster.tsx +7 -7
  108. package/dist/kits/blocks/lib/themes.ts +400 -400
  109. package/dist/kits/blocks/lib/utils.ts +6 -6
  110. package/dist/kits/blocks/package-deps.json +3 -3
  111. package/package.json +1 -1
@@ -1,400 +1,400 @@
1
- export type { ThemeConfig, ThemeVariant } from "@nextworks/blocks-core";
2
- import { type ThemeConfig, type ThemeVariant } from "@nextworks/blocks-core";
3
-
4
- export const themes: Record<ThemeVariant, ThemeConfig> = {
5
- default: {
6
- name: "Default",
7
- colors: {
8
- primary: "oklch(0.205 0 0)",
9
- primaryForeground: "oklch(0.985 0 0)",
10
- secondary: "oklch(0.97 0 0)",
11
- secondaryForeground: "oklch(0.205 0 0)",
12
- accent: "oklch(0.97 0 0)",
13
- accentForeground: "oklch(0.205 0 0)",
14
- background: "oklch(1 0 0)",
15
- foreground: "oklch(0.145 0 0)",
16
- card: "oklch(1 0 0)",
17
- cardForeground: "oklch(0.145 0 0)",
18
- popover: "oklch(1 0 0)",
19
- popoverForeground: "oklch(0.145 0 0)",
20
- muted: "oklch(0.97 0 0)",
21
- mutedForeground: "oklch(0.556 0 0)",
22
- border: "oklch(0.922 0 0)",
23
- input: "oklch(0.922 0 0)",
24
- ring: "oklch(0.708 0 0)",
25
- destructive: "oklch(0.577 0.245 27.325)",
26
- chart1: "oklch(0.646 0.222 41.116)",
27
- chart2: "oklch(0.6 0.118 184.704)",
28
- chart3: "oklch(0.398 0.07 227.392)",
29
- chart4: "oklch(0.828 0.189 84.429)",
30
- chart5: "oklch(0.769 0.188 70.08)",
31
- },
32
- },
33
- monochrome: {
34
- name: "Monochrome",
35
- colors: {
36
- primary: "oklch(0.2 0 0)",
37
- primaryForeground: "oklch(0.98 0 0)",
38
- secondary: "oklch(0.95 0 0)",
39
- secondaryForeground: "oklch(0.2 0 0)",
40
- accent: "oklch(0.9 0 0)",
41
- accentForeground: "oklch(0.2 0 0)",
42
- background: "oklch(1 0 0)",
43
- foreground: "oklch(0.1 0 0)",
44
- card: "oklch(0.99 0 0)",
45
- cardForeground: "oklch(0.1 0 0)",
46
- popover: "oklch(0.99 0 0)",
47
- popoverForeground: "oklch(0.1 0 0)",
48
- muted: "oklch(0.95 0 0)",
49
- mutedForeground: "oklch(0.5 0 0)",
50
- border: "oklch(0.9 0 0)",
51
- input: "oklch(0.9 0 0)",
52
- ring: "oklch(0.7 0 0)",
53
- destructive: "oklch(0.4 0 0)",
54
- chart1: "oklch(0.2 0 0)",
55
- chart2: "oklch(0.4 0 0)",
56
- chart3: "oklch(0.6 0 0)",
57
- chart4: "oklch(0.8 0 0)",
58
- chart5: "oklch(0.3 0 0)",
59
- },
60
- },
61
- blue: {
62
- name: "Blue",
63
- colors: {
64
- primary: "oklch(0.5 0.2 240)",
65
- primaryForeground: "oklch(0.98 0 0)",
66
- secondary: "oklch(0.95 0.05 240)",
67
- secondaryForeground: "oklch(0.2 0.1 240)",
68
- accent: "oklch(0.9 0.1 240)",
69
- accentForeground: "oklch(0.2 0.1 240)",
70
- background: "oklch(1 0 0)",
71
- foreground: "oklch(0.1 0 0)",
72
- card: "oklch(0.99 0 0)",
73
- cardForeground: "oklch(0.1 0 0)",
74
- popover: "oklch(0.99 0 0)",
75
- popoverForeground: "oklch(0.1 0 0)",
76
- muted: "oklch(0.95 0.02 240)",
77
- mutedForeground: "oklch(0.5 0.05 240)",
78
- border: "oklch(0.9 0.05 240)",
79
- input: "oklch(0.9 0.05 240)",
80
- ring: "oklch(0.5 0.2 240)",
81
- destructive: "oklch(0.6 0.2 0)",
82
- chart1: "oklch(0.5 0.2 240)",
83
- chart2: "oklch(0.6 0.15 200)",
84
- chart3: "oklch(0.7 0.1 180)",
85
- chart4: "oklch(0.4 0.2 280)",
86
- chart5: "oklch(0.8 0.1 220)",
87
- },
88
- },
89
- green: {
90
- name: "Green",
91
- colors: {
92
- primary: "oklch(0.5 0.2 140)",
93
- primaryForeground: "oklch(0.98 0 0)",
94
- secondary: "oklch(0.95 0.05 140)",
95
- secondaryForeground: "oklch(0.2 0.1 140)",
96
- accent: "oklch(0.9 0.1 140)",
97
- accentForeground: "oklch(0.2 0.1 140)",
98
- background: "oklch(1 0 0)",
99
- foreground: "oklch(0.1 0 0)",
100
- card: "oklch(0.99 0 0)",
101
- cardForeground: "oklch(0.1 0 0)",
102
- popover: "oklch(0.99 0 0)",
103
- popoverForeground: "oklch(0.1 0 0)",
104
- muted: "oklch(0.95 0.02 140)",
105
- mutedForeground: "oklch(0.5 0.05 140)",
106
- border: "oklch(0.9 0.05 140)",
107
- input: "oklch(0.9 0.05 140)",
108
- ring: "oklch(0.5 0.2 140)",
109
- destructive: "oklch(0.6 0.2 0)",
110
- chart1: "oklch(0.5 0.2 140)",
111
- chart2: "oklch(0.6 0.15 120)",
112
- chart3: "oklch(0.7 0.1 100)",
113
- chart4: "oklch(0.4 0.2 160)",
114
- chart5: "oklch(0.8 0.1 130)",
115
- },
116
- },
117
- purple: {
118
- name: "Purple",
119
- colors: {
120
- primary: "oklch(0.5 0.2 300)",
121
- primaryForeground: "oklch(0.98 0 0)",
122
- secondary: "oklch(0.95 0.05 300)",
123
- secondaryForeground: "oklch(0.2 0.1 300)",
124
- accent: "oklch(0.9 0.1 300)",
125
- accentForeground: "oklch(0.2 0.1 300)",
126
- background: "oklch(1 0 0)",
127
- foreground: "oklch(0.1 0 0)",
128
- card: "oklch(0.99 0 0)",
129
- cardForeground: "oklch(0.1 0 0)",
130
- popover: "oklch(0.99 0 0)",
131
- popoverForeground: "oklch(0.1 0 0)",
132
- muted: "oklch(0.95 0.02 300)",
133
- mutedForeground: "oklch(0.5 0.05 300)",
134
- border: "oklch(0.9 0.05 300)",
135
- input: "oklch(0.9 0.05 300)",
136
- ring: "oklch(0.5 0.2 300)",
137
- destructive: "oklch(0.6 0.2 0)",
138
- chart1: "oklch(0.5 0.2 300)",
139
- chart2: "oklch(0.6 0.15 280)",
140
- chart3: "oklch(0.7 0.1 260)",
141
- chart4: "oklch(0.4 0.2 320)",
142
- chart5: "oklch(0.8 0.1 290)",
143
- },
144
- },
145
- orange: {
146
- name: "Orange",
147
- colors: {
148
- primary: "oklch(0.6 0.2 40)",
149
- primaryForeground: "oklch(0.98 0 0)",
150
- secondary: "oklch(0.95 0.05 40)",
151
- secondaryForeground: "oklch(0.2 0.1 40)",
152
- accent: "oklch(0.9 0.1 40)",
153
- accentForeground: "oklch(0.2 0.1 40)",
154
- background: "oklch(1 0 0)",
155
- foreground: "oklch(0.1 0 0)",
156
- card: "oklch(0.99 0 0)",
157
- cardForeground: "oklch(0.1 0 0)",
158
- popover: "oklch(0.99 0 0)",
159
- popoverForeground: "oklch(0.1 0 0)",
160
- muted: "oklch(0.95 0.02 40)",
161
- mutedForeground: "oklch(0.5 0.05 40)",
162
- border: "oklch(0.9 0.05 40)",
163
- input: "oklch(0.9 0.05 40)",
164
- ring: "oklch(0.6 0.2 40)",
165
- destructive: "oklch(0.6 0.2 0)",
166
- chart1: "oklch(0.6 0.2 40)",
167
- chart2: "oklch(0.7 0.15 20)",
168
- chart3: "oklch(0.8 0.1 0)",
169
- chart4: "oklch(0.5 0.2 60)",
170
- chart5: "oklch(0.9 0.1 30)",
171
- },
172
- },
173
- custom: {
174
- name: "Custom",
175
- colors: {
176
- primary: "oklch(0.205 0 0)",
177
- primaryForeground: "oklch(0.985 0 0)",
178
- secondary: "oklch(0.97 0 0)",
179
- secondaryForeground: "oklch(0.205 0 0)",
180
- accent: "oklch(0.97 0 0)",
181
- accentForeground: "oklch(0.205 0 0)",
182
- background: "oklch(1 0 0)",
183
- foreground: "oklch(0.145 0 0)",
184
- card: "oklch(1 0 0)",
185
- cardForeground: "oklch(0.145 0 0)",
186
- popover: "oklch(1 0 0)",
187
- popoverForeground: "oklch(0.145 0 0)",
188
- muted: "oklch(0.97 0 0)",
189
- mutedForeground: "oklch(0.556 0 0)",
190
- border: "oklch(0.922 0 0)",
191
- input: "oklch(0.922 0 0)",
192
- ring: "oklch(0.708 0 0)",
193
- destructive: "oklch(0.577 0.245 27.325)",
194
- chart1: "oklch(0.646 0.222 41.116)",
195
- chart2: "oklch(0.6 0.118 184.704)",
196
- chart3: "oklch(0.398 0.07 227.392)",
197
- chart4: "oklch(0.828 0.189 84.429)",
198
- chart5: "oklch(0.769 0.188 70.08)",
199
- },
200
- },
201
- };
202
-
203
- export const darkThemes: Record<ThemeVariant, ThemeConfig> = {
204
- default: {
205
- name: "Default Dark",
206
- colors: {
207
- primary: "oklch(0.922 0 0)",
208
- primaryForeground: "oklch(0.205 0 0)",
209
- secondary: "oklch(0.269 0 0)",
210
- secondaryForeground: "oklch(0.985 0 0)",
211
- accent: "oklch(0.269 0 0)",
212
- accentForeground: "oklch(0.985 0 0)",
213
- background: "oklch(0.145 0 0)",
214
- foreground: "oklch(0.985 0 0)",
215
- card: "oklch(0.205 0 0)",
216
- cardForeground: "oklch(0.985 0 0)",
217
- popover: "oklch(0.205 0 0)",
218
- popoverForeground: "oklch(0.985 0 0)",
219
- muted: "oklch(0.269 0 0)",
220
- mutedForeground: "oklch(0.708 0 0)",
221
- border: "oklch(1 0 0 / 10%)",
222
- input: "oklch(1 0 0 / 15%)",
223
- ring: "oklch(0.556 0 0)",
224
- destructive: "oklch(0.704 0.191 22.216)",
225
- chart1: "oklch(0.488 0.243 264.376)",
226
- chart2: "oklch(0.696 0.17 162.48)",
227
- chart3: "oklch(0.769 0.188 70.08)",
228
- chart4: "oklch(0.627 0.265 303.9)",
229
- chart5: "oklch(0.645 0.246 16.439)",
230
- },
231
- },
232
- monochrome: {
233
- name: "Monochrome Dark",
234
- colors: {
235
- primary: "oklch(0.8 0 0)",
236
- primaryForeground: "oklch(0.2 0 0)",
237
- secondary: "oklch(0.3 0 0)",
238
- secondaryForeground: "oklch(0.9 0 0)",
239
- accent: "oklch(0.3 0 0)",
240
- accentForeground: "oklch(0.9 0 0)",
241
- background: "oklch(0.1 0 0)",
242
- foreground: "oklch(0.9 0 0)",
243
- card: "oklch(0.15 0 0)",
244
- cardForeground: "oklch(0.9 0 0)",
245
- popover: "oklch(0.15 0 0)",
246
- popoverForeground: "oklch(0.9 0 0)",
247
- muted: "oklch(0.3 0 0)",
248
- mutedForeground: "oklch(0.6 0 0)",
249
- border: "oklch(0.2 0 0)",
250
- input: "oklch(0.2 0 0)",
251
- ring: "oklch(0.5 0 0)",
252
- destructive: "oklch(0.6 0 0)",
253
- chart1: "oklch(0.8 0 0)",
254
- chart2: "oklch(0.6 0 0)",
255
- chart3: "oklch(0.4 0 0)",
256
- chart4: "oklch(0.7 0 0)",
257
- chart5: "oklch(0.5 0 0)",
258
- },
259
- },
260
- blue: {
261
- name: "Blue Dark",
262
- colors: {
263
- primary: "oklch(0.7 0.2 240)",
264
- primaryForeground: "oklch(0.1 0 0)",
265
- secondary: "oklch(0.3 0.1 240)",
266
- secondaryForeground: "oklch(0.9 0 0)",
267
- accent: "oklch(0.3 0.1 240)",
268
- accentForeground: "oklch(0.9 0 0)",
269
- background: "oklch(0.1 0 0)",
270
- foreground: "oklch(0.9 0 0)",
271
- card: "oklch(0.15 0.05 240)",
272
- cardForeground: "oklch(0.9 0 0)",
273
- popover: "oklch(0.15 0.05 240)",
274
- popoverForeground: "oklch(0.9 0 0)",
275
- muted: "oklch(0.3 0.05 240)",
276
- mutedForeground: "oklch(0.6 0.05 240)",
277
- border: "oklch(0.2 0.1 240)",
278
- input: "oklch(0.2 0.1 240)",
279
- ring: "oklch(0.7 0.2 240)",
280
- destructive: "oklch(0.6 0.2 0)",
281
- chart1: "oklch(0.7 0.2 240)",
282
- chart2: "oklch(0.6 0.15 200)",
283
- chart3: "oklch(0.5 0.1 180)",
284
- chart4: "oklch(0.8 0.2 280)",
285
- chart5: "oklch(0.4 0.1 220)",
286
- },
287
- },
288
- green: {
289
- name: "Green Dark",
290
- colors: {
291
- primary: "oklch(0.7 0.2 140)",
292
- primaryForeground: "oklch(0.1 0 0)",
293
- secondary: "oklch(0.3 0.1 140)",
294
- secondaryForeground: "oklch(0.9 0 0)",
295
- accent: "oklch(0.3 0.1 140)",
296
- accentForeground: "oklch(0.9 0 0)",
297
- background: "oklch(0.1 0 0)",
298
- foreground: "oklch(0.9 0 0)",
299
- card: "oklch(0.15 0.05 140)",
300
- cardForeground: "oklch(0.9 0 0)",
301
- popover: "oklch(0.15 0.05 140)",
302
- popoverForeground: "oklch(0.9 0 0)",
303
- muted: "oklch(0.3 0.05 140)",
304
- mutedForeground: "oklch(0.6 0.05 140)",
305
- border: "oklch(0.2 0.1 140)",
306
- input: "oklch(0.2 0.1 140)",
307
- ring: "oklch(0.7 0.2 140)",
308
- destructive: "oklch(0.6 0.2 0)",
309
- chart1: "oklch(0.7 0.2 140)",
310
- chart2: "oklch(0.6 0.15 120)",
311
- chart3: "oklch(0.5 0.1 100)",
312
- chart4: "oklch(0.8 0.2 160)",
313
- chart5: "oklch(0.4 0.1 130)",
314
- },
315
- },
316
- purple: {
317
- name: "Purple Dark",
318
- colors: {
319
- primary: "oklch(0.7 0.2 300)",
320
- primaryForeground: "oklch(0.1 0 0)",
321
- secondary: "oklch(0.3 0.1 300)",
322
- secondaryForeground: "oklch(0.9 0 0)",
323
- accent: "oklch(0.3 0.1 300)",
324
- accentForeground: "oklch(0.9 0 0)",
325
- background: "oklch(0.1 0 0)",
326
- foreground: "oklch(0.9 0 0)",
327
- card: "oklch(0.15 0.05 300)",
328
- cardForeground: "oklch(0.9 0 0)",
329
- popover: "oklch(0.15 0.05 300)",
330
- popoverForeground: "oklch(0.9 0 0)",
331
- muted: "oklch(0.3 0.05 300)",
332
- mutedForeground: "oklch(0.6 0.05 300)",
333
- border: "oklch(0.2 0.1 300)",
334
- input: "oklch(0.2 0.1 300)",
335
- ring: "oklch(0.7 0.2 300)",
336
- destructive: "oklch(0.6 0.2 0)",
337
- chart1: "oklch(0.7 0.2 300)",
338
- chart2: "oklch(0.6 0.15 280)",
339
- chart3: "oklch(0.5 0.1 260)",
340
- chart4: "oklch(0.8 0.2 320)",
341
- chart5: "oklch(0.4 0.1 290)",
342
- },
343
- },
344
- orange: {
345
- name: "Orange Dark",
346
- colors: {
347
- primary: "oklch(0.8 0.2 40)",
348
- primaryForeground: "oklch(0.1 0 0)",
349
- secondary: "oklch(0.3 0.1 40)",
350
- secondaryForeground: "oklch(0.9 0 0)",
351
- accent: "oklch(0.3 0.1 40)",
352
- accentForeground: "oklch(0.9 0 0)",
353
- background: "oklch(0.1 0 0)",
354
- foreground: "oklch(0.9 0 0)",
355
- card: "oklch(0.15 0.05 40)",
356
- cardForeground: "oklch(0.9 0 0)",
357
- popover: "oklch(0.15 0.05 40)",
358
- popoverForeground: "oklch(0.9 0 0)",
359
- muted: "oklch(0.3 0.05 40)",
360
- mutedForeground: "oklch(0.6 0.05 40)",
361
- border: "oklch(0.2 0.1 40)",
362
- input: "oklch(0.2 0.1 40)",
363
- ring: "oklch(0.8 0.2 40)",
364
- destructive: "oklch(0.6 0.2 0)",
365
- chart1: "oklch(0.8 0.2 40)",
366
- chart2: "oklch(0.7 0.15 20)",
367
- chart3: "oklch(0.6 0.1 0)",
368
- chart4: "oklch(0.9 0.2 60)",
369
- chart5: "oklch(0.5 0.1 30)",
370
- },
371
- },
372
- custom: {
373
- name: "Custom Dark",
374
- colors: {
375
- primary: "oklch(0.922 0 0)",
376
- primaryForeground: "oklch(0.205 0 0)",
377
- secondary: "oklch(0.269 0 0)",
378
- secondaryForeground: "oklch(0.985 0 0)",
379
- accent: "oklch(0.269 0 0)",
380
- accentForeground: "oklch(0.985 0 0)",
381
- background: "oklch(0.145 0 0)",
382
- foreground: "oklch(0.985 0 0)",
383
- card: "oklch(0.205 0 0)",
384
- cardForeground: "oklch(0.985 0 0)",
385
- popover: "oklch(0.205 0 0)",
386
- popoverForeground: "oklch(0.985 0 0)",
387
- muted: "oklch(0.269 0 0)",
388
- mutedForeground: "oklch(0.708 0 0)",
389
- border: "oklch(1 0 0 / 10%)",
390
- input: "oklch(1 0 0 / 15%)",
391
- ring: "oklch(0.556 0 0)",
392
- destructive: "oklch(0.704 0.191 22.216)",
393
- chart1: "oklch(0.488 0.243 264.376)",
394
- chart2: "oklch(0.696 0.17 162.48)",
395
- chart3: "oklch(0.769 0.188 70.08)",
396
- chart4: "oklch(0.627 0.265 303.9)",
397
- chart5: "oklch(0.645 0.246 16.439)",
398
- },
399
- },
400
- };
1
+ export type { ThemeConfig, ThemeVariant } from "@nextworks/blocks-core";
2
+ import { type ThemeConfig, type ThemeVariant } from "@nextworks/blocks-core";
3
+
4
+ export const themes: Record<ThemeVariant, ThemeConfig> = {
5
+ default: {
6
+ name: "Default",
7
+ colors: {
8
+ primary: "oklch(0.205 0 0)",
9
+ primaryForeground: "oklch(0.985 0 0)",
10
+ secondary: "oklch(0.97 0 0)",
11
+ secondaryForeground: "oklch(0.205 0 0)",
12
+ accent: "oklch(0.97 0 0)",
13
+ accentForeground: "oklch(0.205 0 0)",
14
+ background: "oklch(1 0 0)",
15
+ foreground: "oklch(0.145 0 0)",
16
+ card: "oklch(1 0 0)",
17
+ cardForeground: "oklch(0.145 0 0)",
18
+ popover: "oklch(1 0 0)",
19
+ popoverForeground: "oklch(0.145 0 0)",
20
+ muted: "oklch(0.97 0 0)",
21
+ mutedForeground: "oklch(0.556 0 0)",
22
+ border: "oklch(0.922 0 0)",
23
+ input: "oklch(0.922 0 0)",
24
+ ring: "oklch(0.708 0 0)",
25
+ destructive: "oklch(0.577 0.245 27.325)",
26
+ chart1: "oklch(0.646 0.222 41.116)",
27
+ chart2: "oklch(0.6 0.118 184.704)",
28
+ chart3: "oklch(0.398 0.07 227.392)",
29
+ chart4: "oklch(0.828 0.189 84.429)",
30
+ chart5: "oklch(0.769 0.188 70.08)",
31
+ },
32
+ },
33
+ monochrome: {
34
+ name: "Monochrome",
35
+ colors: {
36
+ primary: "oklch(0.2 0 0)",
37
+ primaryForeground: "oklch(0.98 0 0)",
38
+ secondary: "oklch(0.95 0 0)",
39
+ secondaryForeground: "oklch(0.2 0 0)",
40
+ accent: "oklch(0.9 0 0)",
41
+ accentForeground: "oklch(0.2 0 0)",
42
+ background: "oklch(1 0 0)",
43
+ foreground: "oklch(0.1 0 0)",
44
+ card: "oklch(0.99 0 0)",
45
+ cardForeground: "oklch(0.1 0 0)",
46
+ popover: "oklch(0.99 0 0)",
47
+ popoverForeground: "oklch(0.1 0 0)",
48
+ muted: "oklch(0.95 0 0)",
49
+ mutedForeground: "oklch(0.5 0 0)",
50
+ border: "oklch(0.9 0 0)",
51
+ input: "oklch(0.9 0 0)",
52
+ ring: "oklch(0.7 0 0)",
53
+ destructive: "oklch(0.4 0 0)",
54
+ chart1: "oklch(0.2 0 0)",
55
+ chart2: "oklch(0.4 0 0)",
56
+ chart3: "oklch(0.6 0 0)",
57
+ chart4: "oklch(0.8 0 0)",
58
+ chart5: "oklch(0.3 0 0)",
59
+ },
60
+ },
61
+ blue: {
62
+ name: "Blue",
63
+ colors: {
64
+ primary: "oklch(0.5 0.2 240)",
65
+ primaryForeground: "oklch(0.98 0 0)",
66
+ secondary: "oklch(0.95 0.05 240)",
67
+ secondaryForeground: "oklch(0.2 0.1 240)",
68
+ accent: "oklch(0.9 0.1 240)",
69
+ accentForeground: "oklch(0.2 0.1 240)",
70
+ background: "oklch(1 0 0)",
71
+ foreground: "oklch(0.1 0 0)",
72
+ card: "oklch(0.99 0 0)",
73
+ cardForeground: "oklch(0.1 0 0)",
74
+ popover: "oklch(0.99 0 0)",
75
+ popoverForeground: "oklch(0.1 0 0)",
76
+ muted: "oklch(0.95 0.02 240)",
77
+ mutedForeground: "oklch(0.5 0.05 240)",
78
+ border: "oklch(0.9 0.05 240)",
79
+ input: "oklch(0.9 0.05 240)",
80
+ ring: "oklch(0.5 0.2 240)",
81
+ destructive: "oklch(0.6 0.2 0)",
82
+ chart1: "oklch(0.5 0.2 240)",
83
+ chart2: "oklch(0.6 0.15 200)",
84
+ chart3: "oklch(0.7 0.1 180)",
85
+ chart4: "oklch(0.4 0.2 280)",
86
+ chart5: "oklch(0.8 0.1 220)",
87
+ },
88
+ },
89
+ green: {
90
+ name: "Green",
91
+ colors: {
92
+ primary: "oklch(0.5 0.2 140)",
93
+ primaryForeground: "oklch(0.98 0 0)",
94
+ secondary: "oklch(0.95 0.05 140)",
95
+ secondaryForeground: "oklch(0.2 0.1 140)",
96
+ accent: "oklch(0.9 0.1 140)",
97
+ accentForeground: "oklch(0.2 0.1 140)",
98
+ background: "oklch(1 0 0)",
99
+ foreground: "oklch(0.1 0 0)",
100
+ card: "oklch(0.99 0 0)",
101
+ cardForeground: "oklch(0.1 0 0)",
102
+ popover: "oklch(0.99 0 0)",
103
+ popoverForeground: "oklch(0.1 0 0)",
104
+ muted: "oklch(0.95 0.02 140)",
105
+ mutedForeground: "oklch(0.5 0.05 140)",
106
+ border: "oklch(0.9 0.05 140)",
107
+ input: "oklch(0.9 0.05 140)",
108
+ ring: "oklch(0.5 0.2 140)",
109
+ destructive: "oklch(0.6 0.2 0)",
110
+ chart1: "oklch(0.5 0.2 140)",
111
+ chart2: "oklch(0.6 0.15 120)",
112
+ chart3: "oklch(0.7 0.1 100)",
113
+ chart4: "oklch(0.4 0.2 160)",
114
+ chart5: "oklch(0.8 0.1 130)",
115
+ },
116
+ },
117
+ purple: {
118
+ name: "Purple",
119
+ colors: {
120
+ primary: "oklch(0.5 0.2 300)",
121
+ primaryForeground: "oklch(0.98 0 0)",
122
+ secondary: "oklch(0.95 0.05 300)",
123
+ secondaryForeground: "oklch(0.2 0.1 300)",
124
+ accent: "oklch(0.9 0.1 300)",
125
+ accentForeground: "oklch(0.2 0.1 300)",
126
+ background: "oklch(1 0 0)",
127
+ foreground: "oklch(0.1 0 0)",
128
+ card: "oklch(0.99 0 0)",
129
+ cardForeground: "oklch(0.1 0 0)",
130
+ popover: "oklch(0.99 0 0)",
131
+ popoverForeground: "oklch(0.1 0 0)",
132
+ muted: "oklch(0.95 0.02 300)",
133
+ mutedForeground: "oklch(0.5 0.05 300)",
134
+ border: "oklch(0.9 0.05 300)",
135
+ input: "oklch(0.9 0.05 300)",
136
+ ring: "oklch(0.5 0.2 300)",
137
+ destructive: "oklch(0.6 0.2 0)",
138
+ chart1: "oklch(0.5 0.2 300)",
139
+ chart2: "oklch(0.6 0.15 280)",
140
+ chart3: "oklch(0.7 0.1 260)",
141
+ chart4: "oklch(0.4 0.2 320)",
142
+ chart5: "oklch(0.8 0.1 290)",
143
+ },
144
+ },
145
+ orange: {
146
+ name: "Orange",
147
+ colors: {
148
+ primary: "oklch(0.6 0.2 40)",
149
+ primaryForeground: "oklch(0.98 0 0)",
150
+ secondary: "oklch(0.95 0.05 40)",
151
+ secondaryForeground: "oklch(0.2 0.1 40)",
152
+ accent: "oklch(0.9 0.1 40)",
153
+ accentForeground: "oklch(0.2 0.1 40)",
154
+ background: "oklch(1 0 0)",
155
+ foreground: "oklch(0.1 0 0)",
156
+ card: "oklch(0.99 0 0)",
157
+ cardForeground: "oklch(0.1 0 0)",
158
+ popover: "oklch(0.99 0 0)",
159
+ popoverForeground: "oklch(0.1 0 0)",
160
+ muted: "oklch(0.95 0.02 40)",
161
+ mutedForeground: "oklch(0.5 0.05 40)",
162
+ border: "oklch(0.9 0.05 40)",
163
+ input: "oklch(0.9 0.05 40)",
164
+ ring: "oklch(0.6 0.2 40)",
165
+ destructive: "oklch(0.6 0.2 0)",
166
+ chart1: "oklch(0.6 0.2 40)",
167
+ chart2: "oklch(0.7 0.15 20)",
168
+ chart3: "oklch(0.8 0.1 0)",
169
+ chart4: "oklch(0.5 0.2 60)",
170
+ chart5: "oklch(0.9 0.1 30)",
171
+ },
172
+ },
173
+ custom: {
174
+ name: "Custom",
175
+ colors: {
176
+ primary: "oklch(0.205 0 0)",
177
+ primaryForeground: "oklch(0.985 0 0)",
178
+ secondary: "oklch(0.97 0 0)",
179
+ secondaryForeground: "oklch(0.205 0 0)",
180
+ accent: "oklch(0.97 0 0)",
181
+ accentForeground: "oklch(0.205 0 0)",
182
+ background: "oklch(1 0 0)",
183
+ foreground: "oklch(0.145 0 0)",
184
+ card: "oklch(1 0 0)",
185
+ cardForeground: "oklch(0.145 0 0)",
186
+ popover: "oklch(1 0 0)",
187
+ popoverForeground: "oklch(0.145 0 0)",
188
+ muted: "oklch(0.97 0 0)",
189
+ mutedForeground: "oklch(0.556 0 0)",
190
+ border: "oklch(0.922 0 0)",
191
+ input: "oklch(0.922 0 0)",
192
+ ring: "oklch(0.708 0 0)",
193
+ destructive: "oklch(0.577 0.245 27.325)",
194
+ chart1: "oklch(0.646 0.222 41.116)",
195
+ chart2: "oklch(0.6 0.118 184.704)",
196
+ chart3: "oklch(0.398 0.07 227.392)",
197
+ chart4: "oklch(0.828 0.189 84.429)",
198
+ chart5: "oklch(0.769 0.188 70.08)",
199
+ },
200
+ },
201
+ };
202
+
203
+ export const darkThemes: Record<ThemeVariant, ThemeConfig> = {
204
+ default: {
205
+ name: "Default Dark",
206
+ colors: {
207
+ primary: "oklch(0.922 0 0)",
208
+ primaryForeground: "oklch(0.205 0 0)",
209
+ secondary: "oklch(0.269 0 0)",
210
+ secondaryForeground: "oklch(0.985 0 0)",
211
+ accent: "oklch(0.269 0 0)",
212
+ accentForeground: "oklch(0.985 0 0)",
213
+ background: "oklch(0.145 0 0)",
214
+ foreground: "oklch(0.985 0 0)",
215
+ card: "oklch(0.205 0 0)",
216
+ cardForeground: "oklch(0.985 0 0)",
217
+ popover: "oklch(0.205 0 0)",
218
+ popoverForeground: "oklch(0.985 0 0)",
219
+ muted: "oklch(0.269 0 0)",
220
+ mutedForeground: "oklch(0.708 0 0)",
221
+ border: "oklch(1 0 0 / 10%)",
222
+ input: "oklch(1 0 0 / 15%)",
223
+ ring: "oklch(0.556 0 0)",
224
+ destructive: "oklch(0.704 0.191 22.216)",
225
+ chart1: "oklch(0.488 0.243 264.376)",
226
+ chart2: "oklch(0.696 0.17 162.48)",
227
+ chart3: "oklch(0.769 0.188 70.08)",
228
+ chart4: "oklch(0.627 0.265 303.9)",
229
+ chart5: "oklch(0.645 0.246 16.439)",
230
+ },
231
+ },
232
+ monochrome: {
233
+ name: "Monochrome Dark",
234
+ colors: {
235
+ primary: "oklch(0.8 0 0)",
236
+ primaryForeground: "oklch(0.2 0 0)",
237
+ secondary: "oklch(0.3 0 0)",
238
+ secondaryForeground: "oklch(0.9 0 0)",
239
+ accent: "oklch(0.3 0 0)",
240
+ accentForeground: "oklch(0.9 0 0)",
241
+ background: "oklch(0.1 0 0)",
242
+ foreground: "oklch(0.9 0 0)",
243
+ card: "oklch(0.15 0 0)",
244
+ cardForeground: "oklch(0.9 0 0)",
245
+ popover: "oklch(0.15 0 0)",
246
+ popoverForeground: "oklch(0.9 0 0)",
247
+ muted: "oklch(0.3 0 0)",
248
+ mutedForeground: "oklch(0.6 0 0)",
249
+ border: "oklch(0.2 0 0)",
250
+ input: "oklch(0.2 0 0)",
251
+ ring: "oklch(0.5 0 0)",
252
+ destructive: "oklch(0.6 0 0)",
253
+ chart1: "oklch(0.8 0 0)",
254
+ chart2: "oklch(0.6 0 0)",
255
+ chart3: "oklch(0.4 0 0)",
256
+ chart4: "oklch(0.7 0 0)",
257
+ chart5: "oklch(0.5 0 0)",
258
+ },
259
+ },
260
+ blue: {
261
+ name: "Blue Dark",
262
+ colors: {
263
+ primary: "oklch(0.7 0.2 240)",
264
+ primaryForeground: "oklch(0.1 0 0)",
265
+ secondary: "oklch(0.3 0.1 240)",
266
+ secondaryForeground: "oklch(0.9 0 0)",
267
+ accent: "oklch(0.3 0.1 240)",
268
+ accentForeground: "oklch(0.9 0 0)",
269
+ background: "oklch(0.1 0 0)",
270
+ foreground: "oklch(0.9 0 0)",
271
+ card: "oklch(0.15 0.05 240)",
272
+ cardForeground: "oklch(0.9 0 0)",
273
+ popover: "oklch(0.15 0.05 240)",
274
+ popoverForeground: "oklch(0.9 0 0)",
275
+ muted: "oklch(0.3 0.05 240)",
276
+ mutedForeground: "oklch(0.6 0.05 240)",
277
+ border: "oklch(0.2 0.1 240)",
278
+ input: "oklch(0.2 0.1 240)",
279
+ ring: "oklch(0.7 0.2 240)",
280
+ destructive: "oklch(0.6 0.2 0)",
281
+ chart1: "oklch(0.7 0.2 240)",
282
+ chart2: "oklch(0.6 0.15 200)",
283
+ chart3: "oklch(0.5 0.1 180)",
284
+ chart4: "oklch(0.8 0.2 280)",
285
+ chart5: "oklch(0.4 0.1 220)",
286
+ },
287
+ },
288
+ green: {
289
+ name: "Green Dark",
290
+ colors: {
291
+ primary: "oklch(0.7 0.2 140)",
292
+ primaryForeground: "oklch(0.1 0 0)",
293
+ secondary: "oklch(0.3 0.1 140)",
294
+ secondaryForeground: "oklch(0.9 0 0)",
295
+ accent: "oklch(0.3 0.1 140)",
296
+ accentForeground: "oklch(0.9 0 0)",
297
+ background: "oklch(0.1 0 0)",
298
+ foreground: "oklch(0.9 0 0)",
299
+ card: "oklch(0.15 0.05 140)",
300
+ cardForeground: "oklch(0.9 0 0)",
301
+ popover: "oklch(0.15 0.05 140)",
302
+ popoverForeground: "oklch(0.9 0 0)",
303
+ muted: "oklch(0.3 0.05 140)",
304
+ mutedForeground: "oklch(0.6 0.05 140)",
305
+ border: "oklch(0.2 0.1 140)",
306
+ input: "oklch(0.2 0.1 140)",
307
+ ring: "oklch(0.7 0.2 140)",
308
+ destructive: "oklch(0.6 0.2 0)",
309
+ chart1: "oklch(0.7 0.2 140)",
310
+ chart2: "oklch(0.6 0.15 120)",
311
+ chart3: "oklch(0.5 0.1 100)",
312
+ chart4: "oklch(0.8 0.2 160)",
313
+ chart5: "oklch(0.4 0.1 130)",
314
+ },
315
+ },
316
+ purple: {
317
+ name: "Purple Dark",
318
+ colors: {
319
+ primary: "oklch(0.7 0.2 300)",
320
+ primaryForeground: "oklch(0.1 0 0)",
321
+ secondary: "oklch(0.3 0.1 300)",
322
+ secondaryForeground: "oklch(0.9 0 0)",
323
+ accent: "oklch(0.3 0.1 300)",
324
+ accentForeground: "oklch(0.9 0 0)",
325
+ background: "oklch(0.1 0 0)",
326
+ foreground: "oklch(0.9 0 0)",
327
+ card: "oklch(0.15 0.05 300)",
328
+ cardForeground: "oklch(0.9 0 0)",
329
+ popover: "oklch(0.15 0.05 300)",
330
+ popoverForeground: "oklch(0.9 0 0)",
331
+ muted: "oklch(0.3 0.05 300)",
332
+ mutedForeground: "oklch(0.6 0.05 300)",
333
+ border: "oklch(0.2 0.1 300)",
334
+ input: "oklch(0.2 0.1 300)",
335
+ ring: "oklch(0.7 0.2 300)",
336
+ destructive: "oklch(0.6 0.2 0)",
337
+ chart1: "oklch(0.7 0.2 300)",
338
+ chart2: "oklch(0.6 0.15 280)",
339
+ chart3: "oklch(0.5 0.1 260)",
340
+ chart4: "oklch(0.8 0.2 320)",
341
+ chart5: "oklch(0.4 0.1 290)",
342
+ },
343
+ },
344
+ orange: {
345
+ name: "Orange Dark",
346
+ colors: {
347
+ primary: "oklch(0.8 0.2 40)",
348
+ primaryForeground: "oklch(0.1 0 0)",
349
+ secondary: "oklch(0.3 0.1 40)",
350
+ secondaryForeground: "oklch(0.9 0 0)",
351
+ accent: "oklch(0.3 0.1 40)",
352
+ accentForeground: "oklch(0.9 0 0)",
353
+ background: "oklch(0.1 0 0)",
354
+ foreground: "oklch(0.9 0 0)",
355
+ card: "oklch(0.15 0.05 40)",
356
+ cardForeground: "oklch(0.9 0 0)",
357
+ popover: "oklch(0.15 0.05 40)",
358
+ popoverForeground: "oklch(0.9 0 0)",
359
+ muted: "oklch(0.3 0.05 40)",
360
+ mutedForeground: "oklch(0.6 0.05 40)",
361
+ border: "oklch(0.2 0.1 40)",
362
+ input: "oklch(0.2 0.1 40)",
363
+ ring: "oklch(0.8 0.2 40)",
364
+ destructive: "oklch(0.6 0.2 0)",
365
+ chart1: "oklch(0.8 0.2 40)",
366
+ chart2: "oklch(0.7 0.15 20)",
367
+ chart3: "oklch(0.6 0.1 0)",
368
+ chart4: "oklch(0.9 0.2 60)",
369
+ chart5: "oklch(0.5 0.1 30)",
370
+ },
371
+ },
372
+ custom: {
373
+ name: "Custom Dark",
374
+ colors: {
375
+ primary: "oklch(0.922 0 0)",
376
+ primaryForeground: "oklch(0.205 0 0)",
377
+ secondary: "oklch(0.269 0 0)",
378
+ secondaryForeground: "oklch(0.985 0 0)",
379
+ accent: "oklch(0.269 0 0)",
380
+ accentForeground: "oklch(0.985 0 0)",
381
+ background: "oklch(0.145 0 0)",
382
+ foreground: "oklch(0.985 0 0)",
383
+ card: "oklch(0.205 0 0)",
384
+ cardForeground: "oklch(0.985 0 0)",
385
+ popover: "oklch(0.205 0 0)",
386
+ popoverForeground: "oklch(0.985 0 0)",
387
+ muted: "oklch(0.269 0 0)",
388
+ mutedForeground: "oklch(0.708 0 0)",
389
+ border: "oklch(1 0 0 / 10%)",
390
+ input: "oklch(1 0 0 / 15%)",
391
+ ring: "oklch(0.556 0 0)",
392
+ destructive: "oklch(0.704 0.191 22.216)",
393
+ chart1: "oklch(0.488 0.243 264.376)",
394
+ chart2: "oklch(0.696 0.17 162.48)",
395
+ chart3: "oklch(0.769 0.188 70.08)",
396
+ chart4: "oklch(0.627 0.265 303.9)",
397
+ chart5: "oklch(0.645 0.246 16.439)",
398
+ },
399
+ },
400
+ };