@baybreezy/docd 0.0.1

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 (268) hide show
  1. package/app/app.config.ts +239 -0
  2. package/app/app.vue +19 -0
  3. package/app/assets/css/tailwind.css +335 -0
  4. package/app/assets/css/theme.css +1171 -0
  5. package/app/components/OgImage/Docs.takumi.vue +69 -0
  6. package/app/components/OgImage/Landing.takumi.vue +64 -0
  7. package/app/components/OgImage/Site.takumi.vue +32 -0
  8. package/app/components/Ui/Avatar/Avatar.vue +75 -0
  9. package/app/components/Ui/Avatar/Badge.vue +34 -0
  10. package/app/components/Ui/Avatar/Fallback.vue +30 -0
  11. package/app/components/Ui/Avatar/Group.vue +29 -0
  12. package/app/components/Ui/Avatar/GroupCount.vue +29 -0
  13. package/app/components/Ui/Avatar/Image.vue +29 -0
  14. package/app/components/Ui/Badge.vue +86 -0
  15. package/app/components/Ui/BadgeGroup.vue +314 -0
  16. package/app/components/Ui/BgPattern/Grid.vue +137 -0
  17. package/app/components/Ui/BorderBeam.vue +97 -0
  18. package/app/components/Ui/Breadcrumbs.vue +103 -0
  19. package/app/components/Ui/Button.vue +169 -0
  20. package/app/components/Ui/ButtonGroup/ButtonGroup.vue +54 -0
  21. package/app/components/Ui/ButtonGroup/Separator.vue +38 -0
  22. package/app/components/Ui/ButtonGroup/Text.vue +33 -0
  23. package/app/components/Ui/Card/Action.vue +31 -0
  24. package/app/components/Ui/Card/Card.vue +58 -0
  25. package/app/components/Ui/Card/Content.vue +34 -0
  26. package/app/components/Ui/Card/Description.vue +36 -0
  27. package/app/components/Ui/Card/Footer.vue +31 -0
  28. package/app/components/Ui/Card/Header.vue +31 -0
  29. package/app/components/Ui/Card/Title.vue +37 -0
  30. package/app/components/Ui/Collapsible/Collapsible.vue +16 -0
  31. package/app/components/Ui/Collapsible/Content.vue +27 -0
  32. package/app/components/Ui/Collapsible/Trigger.vue +13 -0
  33. package/app/components/Ui/Command/Command.vue +115 -0
  34. package/app/components/Ui/Command/Dialog.vue +65 -0
  35. package/app/components/Ui/Command/Empty.vue +32 -0
  36. package/app/components/Ui/Command/Footer.vue +40 -0
  37. package/app/components/Ui/Command/Group.vue +58 -0
  38. package/app/components/Ui/Command/Input.vue +57 -0
  39. package/app/components/Ui/Command/Item.vue +102 -0
  40. package/app/components/Ui/Command/List.vue +33 -0
  41. package/app/components/Ui/Command/Separator.vue +30 -0
  42. package/app/components/Ui/Command/Shortcut.vue +28 -0
  43. package/app/components/Ui/Container.vue +46 -0
  44. package/app/components/Ui/ContextMenu/Arrow.vue +43 -0
  45. package/app/components/Ui/ContextMenu/CheckboxItem.vue +42 -0
  46. package/app/components/Ui/ContextMenu/Content.vue +53 -0
  47. package/app/components/Ui/ContextMenu/ContextMenu.vue +14 -0
  48. package/app/components/Ui/ContextMenu/Group.vue +12 -0
  49. package/app/components/Ui/ContextMenu/Item.vue +65 -0
  50. package/app/components/Ui/ContextMenu/ItemIndicator.vue +30 -0
  51. package/app/components/Ui/ContextMenu/Label.vue +35 -0
  52. package/app/components/Ui/ContextMenu/Portal.vue +12 -0
  53. package/app/components/Ui/ContextMenu/RadioGroup.vue +16 -0
  54. package/app/components/Ui/ContextMenu/RadioItem.vue +40 -0
  55. package/app/components/Ui/ContextMenu/Separator.vue +25 -0
  56. package/app/components/Ui/ContextMenu/Shortcut.vue +30 -0
  57. package/app/components/Ui/ContextMenu/Sub.vue +15 -0
  58. package/app/components/Ui/ContextMenu/SubContent.vue +55 -0
  59. package/app/components/Ui/ContextMenu/SubTrigger.vue +42 -0
  60. package/app/components/Ui/ContextMenu/Trigger.vue +12 -0
  61. package/app/components/Ui/Dialog/Close.vue +12 -0
  62. package/app/components/Ui/Dialog/Content.vue +79 -0
  63. package/app/components/Ui/Dialog/Description.vue +29 -0
  64. package/app/components/Ui/Dialog/Dialog.vue +14 -0
  65. package/app/components/Ui/Dialog/Footer.vue +32 -0
  66. package/app/components/Ui/Dialog/Header.vue +32 -0
  67. package/app/components/Ui/Dialog/Overlay.vue +25 -0
  68. package/app/components/Ui/Dialog/Portal.vue +12 -0
  69. package/app/components/Ui/Dialog/Title.vue +29 -0
  70. package/app/components/Ui/Dialog/Trigger.vue +12 -0
  71. package/app/components/Ui/Divider.vue +102 -0
  72. package/app/components/Ui/Drawer/Close.vue +12 -0
  73. package/app/components/Ui/Drawer/Content.vue +67 -0
  74. package/app/components/Ui/Drawer/Description.vue +33 -0
  75. package/app/components/Ui/Drawer/Drawer.vue +17 -0
  76. package/app/components/Ui/Drawer/Footer.vue +35 -0
  77. package/app/components/Ui/Drawer/Header.vue +34 -0
  78. package/app/components/Ui/Drawer/Overlay.vue +20 -0
  79. package/app/components/Ui/Drawer/Portal.vue +12 -0
  80. package/app/components/Ui/Drawer/Title.vue +35 -0
  81. package/app/components/Ui/Drawer/Trigger.vue +12 -0
  82. package/app/components/Ui/DropdownMenu/Arrow.vue +43 -0
  83. package/app/components/Ui/DropdownMenu/CheckboxItem.vue +41 -0
  84. package/app/components/Ui/DropdownMenu/Content.vue +56 -0
  85. package/app/components/Ui/DropdownMenu/DropdownMenu.vue +15 -0
  86. package/app/components/Ui/DropdownMenu/Group.vue +12 -0
  87. package/app/components/Ui/DropdownMenu/Item.vue +64 -0
  88. package/app/components/Ui/DropdownMenu/ItemIndicator.vue +32 -0
  89. package/app/components/Ui/DropdownMenu/Label.vue +34 -0
  90. package/app/components/Ui/DropdownMenu/Portal.vue +12 -0
  91. package/app/components/Ui/DropdownMenu/RadioGroup.vue +16 -0
  92. package/app/components/Ui/DropdownMenu/RadioItem.vue +40 -0
  93. package/app/components/Ui/DropdownMenu/Separator.vue +25 -0
  94. package/app/components/Ui/DropdownMenu/Shortcut.vue +44 -0
  95. package/app/components/Ui/DropdownMenu/Sub.vue +14 -0
  96. package/app/components/Ui/DropdownMenu/SubContent.vue +56 -0
  97. package/app/components/Ui/DropdownMenu/SubTrigger.vue +47 -0
  98. package/app/components/Ui/DropdownMenu/Trigger.vue +12 -0
  99. package/app/components/Ui/FancyIcon.vue +243 -0
  100. package/app/components/Ui/GradientDivider.vue +26 -0
  101. package/app/components/Ui/IframeLazy.vue +97 -0
  102. package/app/components/Ui/Input.vue +97 -0
  103. package/app/components/Ui/InputGroup/Addon.vue +66 -0
  104. package/app/components/Ui/InputGroup/Button.vue +50 -0
  105. package/app/components/Ui/InputGroup/Input.vue +25 -0
  106. package/app/components/Ui/InputGroup/InputGroup.vue +44 -0
  107. package/app/components/Ui/InputGroup/Text.vue +33 -0
  108. package/app/components/Ui/InputGroup/Textarea.vue +25 -0
  109. package/app/components/Ui/Kbd/Group.vue +32 -0
  110. package/app/components/Ui/Kbd/Kbd.vue +62 -0
  111. package/app/components/Ui/Label.vue +40 -0
  112. package/app/components/Ui/Popover/Anchor.vue +13 -0
  113. package/app/components/Ui/Popover/Arrow.vue +42 -0
  114. package/app/components/Ui/Popover/Close.vue +13 -0
  115. package/app/components/Ui/Popover/Content.vue +55 -0
  116. package/app/components/Ui/Popover/Popover.vue +15 -0
  117. package/app/components/Ui/Popover/Portal.vue +13 -0
  118. package/app/components/Ui/Popover/Trigger.vue +12 -0
  119. package/app/components/Ui/Popover/X.vue +38 -0
  120. package/app/components/Ui/ScrollArea/Corner.vue +12 -0
  121. package/app/components/Ui/ScrollArea/ScrollArea.vue +38 -0
  122. package/app/components/Ui/ScrollArea/Scrollbar.vue +39 -0
  123. package/app/components/Ui/ScrollArea/Thumb.vue +39 -0
  124. package/app/components/Ui/ScrollArea/Viewport.vue +27 -0
  125. package/app/components/Ui/Scrollspy.vue +61 -0
  126. package/app/components/Ui/Separator.vue +40 -0
  127. package/app/components/Ui/Skeleton.vue +39 -0
  128. package/app/components/Ui/Sonner.vue +25 -0
  129. package/app/components/Ui/Tabs/Content.vue +27 -0
  130. package/app/components/Ui/Tabs/Indicator.vue +37 -0
  131. package/app/components/Ui/Tabs/List.vue +37 -0
  132. package/app/components/Ui/Tabs/Tabs.vue +25 -0
  133. package/app/components/Ui/Tabs/Trigger.vue +41 -0
  134. package/app/components/Ui/Textarea.vue +81 -0
  135. package/app/components/Ui/Tooltip/Arrow.vue +30 -0
  136. package/app/components/Ui/Tooltip/Content.vue +50 -0
  137. package/app/components/Ui/Tooltip/Portal.vue +12 -0
  138. package/app/components/Ui/Tooltip/Provider.vue +14 -0
  139. package/app/components/Ui/Tooltip/Tooltip.vue +25 -0
  140. package/app/components/Ui/Tooltip/Trigger.vue +12 -0
  141. package/app/components/Ui/Tree/Item.vue +15 -0
  142. package/app/components/Ui/Tree/Tree.vue +15 -0
  143. package/app/components/Ui/Tree/Virtualizer.vue +13 -0
  144. package/app/components/component-api/ComponentApiSection.vue +135 -0
  145. package/app/components/content/docs/Callout/DocsCallout.vue +99 -0
  146. package/app/components/content/prose/ProseA.global.vue +31 -0
  147. package/app/components/content/prose/ProseBlockquote.global.vue +28 -0
  148. package/app/components/content/prose/ProseCallout.global.vue +306 -0
  149. package/app/components/content/prose/ProseCard.global.vue +100 -0
  150. package/app/components/content/prose/ProseCodeCollapse.global.vue +125 -0
  151. package/app/components/content/prose/ProseCodeCopy.global.vue +67 -0
  152. package/app/components/content/prose/ProseCodeGroup.global.vue +104 -0
  153. package/app/components/content/prose/ProseCodeTree.global.vue +277 -0
  154. package/app/components/content/prose/ProseCollapsible.global.vue +64 -0
  155. package/app/components/content/prose/ProseColorModeImage.global.vue +58 -0
  156. package/app/components/content/prose/ProseComponentApi.global.vue +104 -0
  157. package/app/components/content/prose/ProseComponentEvents.global.vue +27 -0
  158. package/app/components/content/prose/ProseComponentExposed.global.vue +27 -0
  159. package/app/components/content/prose/ProseComponentProps.global.vue +27 -0
  160. package/app/components/content/prose/ProseComponentSlots.global.vue +27 -0
  161. package/app/components/content/prose/ProseEm.global.vue +5 -0
  162. package/app/components/content/prose/ProseField.global.vue +118 -0
  163. package/app/components/content/prose/ProseFieldGroup.global.vue +62 -0
  164. package/app/components/content/prose/ProseH1.global.vue +58 -0
  165. package/app/components/content/prose/ProseH2.global.vue +58 -0
  166. package/app/components/content/prose/ProseH3.global.vue +58 -0
  167. package/app/components/content/prose/ProseH4.global.vue +58 -0
  168. package/app/components/content/prose/ProseH5.global.vue +47 -0
  169. package/app/components/content/prose/ProseH6.global.vue +47 -0
  170. package/app/components/content/prose/ProseHr.global.vue +33 -0
  171. package/app/components/content/prose/ProseIconList.global.vue +113 -0
  172. package/app/components/content/prose/ProseImg.global.vue +119 -0
  173. package/app/components/content/prose/ProseLead.global.vue +28 -0
  174. package/app/components/content/prose/ProseLi.global.vue +25 -0
  175. package/app/components/content/prose/ProseMermaid.global.vue +127 -0
  176. package/app/components/content/prose/ProseOl.global.vue +25 -0
  177. package/app/components/content/prose/ProseP.global.vue +25 -0
  178. package/app/components/content/prose/ProsePmInstall.global.vue +60 -0
  179. package/app/components/content/prose/ProsePmRun.global.vue +51 -0
  180. package/app/components/content/prose/ProsePmX.global.vue +56 -0
  181. package/app/components/content/prose/ProsePre.global.vue +181 -0
  182. package/app/components/content/prose/ProseShowCase.global.vue +56 -0
  183. package/app/components/content/prose/ProseSmartIcon.global.vue +54 -0
  184. package/app/components/content/prose/ProseStep.global.vue +22 -0
  185. package/app/components/content/prose/ProseSteps.global.vue +22 -0
  186. package/app/components/content/prose/ProseStrong.global.vue +34 -0
  187. package/app/components/content/prose/ProseTable.global.vue +34 -0
  188. package/app/components/content/prose/ProseTabs.global.vue +104 -0
  189. package/app/components/content/prose/ProseTabsInner.global.vue +274 -0
  190. package/app/components/content/prose/ProseTbody.global.vue +5 -0
  191. package/app/components/content/prose/ProseTd.global.vue +25 -0
  192. package/app/components/content/prose/ProseTh.global.vue +25 -0
  193. package/app/components/content/prose/ProseThead.global.vue +9 -0
  194. package/app/components/content/prose/ProseTr.global.vue +35 -0
  195. package/app/components/content/prose/ProseUl.global.vue +25 -0
  196. package/app/components/docs/DocsExtraStuff.vue +39 -0
  197. package/app/components/docs/DocsGithubLink.vue +11 -0
  198. package/app/components/docs/DocsHeader.vue +3 -0
  199. package/app/components/docs/DocsLogo.vue +74 -0
  200. package/app/components/docs/DocsMobileBar.vue +26 -0
  201. package/app/components/docs/DocsMobileNav.vue +49 -0
  202. package/app/components/docs/DocsNav.vue +161 -0
  203. package/app/components/docs/DocsPageTransition.vue +32 -0
  204. package/app/components/docs/DocsSearch.vue +220 -0
  205. package/app/components/docs/DocsSearchButton.vue +20 -0
  206. package/app/components/docs/DocsThemeCustomizer.vue +229 -0
  207. package/app/components/docs/DocsThemeToggler.vue +98 -0
  208. package/app/components/docs/DocsTocRail.vue +162 -0
  209. package/app/components/docs/DocsToclink.vue +52 -0
  210. package/app/components/docs/DocsZigZagRail.vue +70 -0
  211. package/app/components/landing/Hero.vue +222 -0
  212. package/app/components/page/PageFooter.vue +49 -0
  213. package/app/components/page/PageHeader.vue +68 -0
  214. package/app/components/page/PageHeaderLinks.vue +138 -0
  215. package/app/components/page/PageMobileToc.vue +162 -0
  216. package/app/components/page/PageToc.vue +33 -0
  217. package/app/composables/useDefaultSlotItems.ts +90 -0
  218. package/app/composables/useDocPage.ts +66 -0
  219. package/app/composables/useDocSearch.ts +23 -0
  220. package/app/composables/useDocd.ts +107 -0
  221. package/app/composables/useLogoAssets.ts +319 -0
  222. package/app/composables/usePm.ts +73 -0
  223. package/app/composables/useProseComponentMeta.ts +30 -0
  224. package/app/composables/useScrollspy.ts +327 -0
  225. package/app/composables/useSeo.ts +240 -0
  226. package/app/composables/useUIConfig.ts +36 -0
  227. package/app/layouts/default.vue +5 -0
  228. package/app/layouts/docs.vue +64 -0
  229. package/app/middleware/colorMode.global.ts +8 -0
  230. package/app/middleware/doc-page-layout.ts +11 -0
  231. package/app/middleware/landing-page-layout.ts +11 -0
  232. package/app/pages/[...slug].vue +63 -0
  233. package/app/plugins/mermaid.client.ts +35 -0
  234. package/app/plugins/navigation-direction.client.ts +15 -0
  235. package/app/plugins/theme-restore.client.ts +7 -0
  236. package/app/templates/landing.vue +40 -0
  237. package/app/transitions/presets.ts +71 -0
  238. package/app/types/prose-component-meta.d.ts +4 -0
  239. package/app/utils/og.ts +26 -0
  240. package/app/utils/prerender.ts +9 -0
  241. package/app/utils/translucent.ts +56 -0
  242. package/app/utils/tw-helper.ts +4 -0
  243. package/content.config.ts +81 -0
  244. package/index.d.ts +25 -0
  245. package/modules/config.ts +89 -0
  246. package/modules/custom-icons.ts +17 -0
  247. package/modules/markdown-rewrite.ts +96 -0
  248. package/modules/prose-component-meta.ts +150 -0
  249. package/modules/routing.ts +22 -0
  250. package/modules/skills/index.ts +167 -0
  251. package/modules/skills/runtime/server/routes/skills-files.ts +49 -0
  252. package/modules/skills/runtime/server/routes/skills-index.ts +8 -0
  253. package/nuxt.config.ts +96 -0
  254. package/nuxt.schema.ts +288 -0
  255. package/package.json +95 -0
  256. package/server/mcp/tools/get-page.ts +66 -0
  257. package/server/mcp/tools/list-pages.ts +61 -0
  258. package/server/routes/sitemap.xml.ts +73 -0
  259. package/server/utils/content.ts +3 -0
  260. package/tailwind.config.cjs +55 -0
  261. package/utils/component-api-content.ts +467 -0
  262. package/utils/component-api-discovery.ts +165 -0
  263. package/utils/component-api-schema.ts +28 -0
  264. package/utils/component-api.ts +243 -0
  265. package/utils/generate-prose-component-meta.ts +303 -0
  266. package/utils/git.ts +123 -0
  267. package/utils/meta.ts +40 -0
  268. package/utils/pages.ts +21 -0
@@ -0,0 +1,1171 @@
1
+ .theme-stone {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.147 0.004 49.25);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.147 0.004 49.25);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.147 0.004 49.25);
9
+ --primary: oklch(0.216 0.006 56.043);
10
+ --primary-foreground: oklch(0.985 0.001 106.423);
11
+ --secondary: oklch(0.97 0.001 106.424);
12
+ --secondary-foreground: oklch(0.216 0.006 56.043);
13
+ --muted: oklch(0.97 0.001 106.424);
14
+ --muted-foreground: oklch(0.553 0.013 58.071);
15
+ --accent: oklch(0.97 0.001 106.424);
16
+ --accent-foreground: oklch(0.216 0.006 56.043);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.923 0.003 48.717);
19
+ --input: oklch(0.923 0.003 48.717);
20
+ --ring: oklch(0.709 0.01 56.259);
21
+ --chart-1: oklch(0.646 0.222 41.116);
22
+ --chart-2: oklch(0.6 0.118 184.704);
23
+ --chart-3: oklch(0.398 0.07 227.392);
24
+ --chart-4: oklch(0.828 0.189 84.429);
25
+ --chart-5: oklch(0.769 0.188 70.08);
26
+ --sidebar: oklch(0.985 0.001 106.423);
27
+ --sidebar-foreground: oklch(0.147 0.004 49.25);
28
+ --sidebar-primary: oklch(0.216 0.006 56.043);
29
+ --sidebar-primary-foreground: oklch(0.985 0.001 106.423);
30
+ --sidebar-accent: oklch(0.97 0.001 106.424);
31
+ --sidebar-accent-foreground: oklch(0.216 0.006 56.043);
32
+ --sidebar-border: oklch(0.923 0.003 48.717);
33
+ --sidebar-ring: oklch(0.709 0.01 56.259);
34
+ }
35
+ .theme-stone.dark {
36
+ --background: oklch(0.147 0.004 49.25);
37
+ --foreground: oklch(0.985 0.001 106.423);
38
+ --card: oklch(0.216 0.006 56.043);
39
+ --card-foreground: oklch(0.985 0.001 106.423);
40
+ --popover: oklch(0.216 0.006 56.043);
41
+ --popover-foreground: oklch(0.985 0.001 106.423);
42
+ --primary: oklch(0.923 0.003 48.717);
43
+ --primary-foreground: oklch(0.216 0.006 56.043);
44
+ --secondary: oklch(0.268 0.007 34.298);
45
+ --secondary-foreground: oklch(0.985 0.001 106.423);
46
+ --muted: oklch(0.268 0.007 34.298);
47
+ --muted-foreground: oklch(0.709 0.01 56.259);
48
+ --accent: oklch(0.268 0.007 34.298);
49
+ --accent-foreground: oklch(0.985 0.001 106.423);
50
+ --destructive: oklch(0.704 0.191 22.216);
51
+ --border: oklch(1 0 0 / 10%);
52
+ --input: oklch(1 0 0 / 15%);
53
+ --ring: oklch(0.553 0.013 58.071);
54
+ --chart-1: oklch(0.488 0.243 264.376);
55
+ --chart-2: oklch(0.696 0.17 162.48);
56
+ --chart-3: oklch(0.769 0.188 70.08);
57
+ --chart-4: oklch(0.627 0.265 303.9);
58
+ --chart-5: oklch(0.645 0.246 16.439);
59
+ --sidebar: oklch(0.216 0.006 56.043);
60
+ --sidebar-foreground: oklch(0.985 0.001 106.423);
61
+ --sidebar-primary: oklch(0.488 0.243 264.376);
62
+ --sidebar-primary-foreground: oklch(0.985 0.001 106.423);
63
+ --sidebar-accent: oklch(0.268 0.007 34.298);
64
+ --sidebar-accent-foreground: oklch(0.985 0.001 106.423);
65
+ --sidebar-border: oklch(1 0 0 / 10%);
66
+ --sidebar-ring: oklch(0.553 0.013 58.071);
67
+ }
68
+
69
+ .theme-zinc {
70
+ --radius: 0.625rem;
71
+ --background: oklch(1 0 0);
72
+ --foreground: oklch(0.141 0.005 285.823);
73
+ --card: oklch(1 0 0);
74
+ --card-foreground: oklch(0.141 0.005 285.823);
75
+ --popover: oklch(1 0 0);
76
+ --popover-foreground: oklch(0.141 0.005 285.823);
77
+ --primary: oklch(0.21 0.006 285.885);
78
+ --primary-foreground: oklch(0.985 0 0);
79
+ --secondary: oklch(0.967 0.001 286.375);
80
+ --secondary-foreground: oklch(0.21 0.006 285.885);
81
+ --muted: oklch(0.967 0.001 286.375);
82
+ --muted-foreground: oklch(0.552 0.016 285.938);
83
+ --accent: oklch(0.967 0.001 286.375);
84
+ --accent-foreground: oklch(0.21 0.006 285.885);
85
+ --destructive: oklch(0.577 0.245 27.325);
86
+ --border: oklch(0.92 0.004 286.32);
87
+ --input: oklch(0.92 0.004 286.32);
88
+ --ring: oklch(0.705 0.015 286.067);
89
+ --chart-1: oklch(0.646 0.222 41.116);
90
+ --chart-2: oklch(0.6 0.118 184.704);
91
+ --chart-3: oklch(0.398 0.07 227.392);
92
+ --chart-4: oklch(0.828 0.189 84.429);
93
+ --chart-5: oklch(0.769 0.188 70.08);
94
+ --sidebar: oklch(0.985 0 0);
95
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
96
+ --sidebar-primary: oklch(0.21 0.006 285.885);
97
+ --sidebar-primary-foreground: oklch(0.985 0 0);
98
+ --sidebar-accent: oklch(0.967 0.001 286.375);
99
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
100
+ --sidebar-border: oklch(0.92 0.004 286.32);
101
+ --sidebar-ring: oklch(0.705 0.015 286.067);
102
+ }
103
+
104
+ .theme-zinc.dark {
105
+ --background: oklch(0.141 0.005 285.823);
106
+ --foreground: oklch(0.985 0 0);
107
+ --card: oklch(0.21 0.006 285.885);
108
+ --card-foreground: oklch(0.985 0 0);
109
+ --popover: oklch(0.21 0.006 285.885);
110
+ --popover-foreground: oklch(0.985 0 0);
111
+ --primary: oklch(0.92 0.004 286.32);
112
+ --primary-foreground: oklch(0.21 0.006 285.885);
113
+ --secondary: oklch(0.274 0.006 286.033);
114
+ --secondary-foreground: oklch(0.985 0 0);
115
+ --muted: oklch(0.274 0.006 286.033);
116
+ --muted-foreground: oklch(0.705 0.015 286.067);
117
+ --accent: oklch(0.274 0.006 286.033);
118
+ --accent-foreground: oklch(0.985 0 0);
119
+ --destructive: oklch(0.704 0.191 22.216);
120
+ --border: oklch(1 0 0 / 10%);
121
+ --input: oklch(1 0 0 / 15%);
122
+ --ring: oklch(0.552 0.016 285.938);
123
+ --chart-1: oklch(0.488 0.243 264.376);
124
+ --chart-2: oklch(0.696 0.17 162.48);
125
+ --chart-3: oklch(0.769 0.188 70.08);
126
+ --chart-4: oklch(0.627 0.265 303.9);
127
+ --chart-5: oklch(0.645 0.246 16.439);
128
+ --sidebar: oklch(0.21 0.006 285.885);
129
+ --sidebar-foreground: oklch(0.985 0 0);
130
+ --sidebar-primary: oklch(0.488 0.243 264.376);
131
+ --sidebar-primary-foreground: oklch(0.985 0 0);
132
+ --sidebar-accent: oklch(0.274 0.006 286.033);
133
+ --sidebar-accent-foreground: oklch(0.985 0 0);
134
+ --sidebar-border: oklch(1 0 0 / 10%);
135
+ --sidebar-ring: oklch(0.552 0.016 285.938);
136
+ }
137
+
138
+ .theme-neutral {
139
+ --radius: 0.625rem;
140
+ --background: oklch(1 0 0);
141
+ --foreground: oklch(0.145 0 0);
142
+ --card: oklch(1 0 0);
143
+ --card-foreground: oklch(0.145 0 0);
144
+ --popover: oklch(1 0 0);
145
+ --popover-foreground: oklch(0.145 0 0);
146
+ --primary: oklch(0.205 0 0);
147
+ --primary-foreground: oklch(0.985 0 0);
148
+ --secondary: oklch(0.97 0 0);
149
+ --secondary-foreground: oklch(0.205 0 0);
150
+ --muted: oklch(0.97 0 0);
151
+ --muted-foreground: oklch(0.556 0 0);
152
+ --accent: oklch(0.97 0 0);
153
+ --accent-foreground: oklch(0.205 0 0);
154
+ --destructive: oklch(0.577 0.245 27.325);
155
+ --border: oklch(0.922 0 0);
156
+ --input: oklch(0.922 0 0);
157
+ --ring: oklch(0.708 0 0);
158
+ --chart-1: oklch(0.646 0.222 41.116);
159
+ --chart-2: oklch(0.6 0.118 184.704);
160
+ --chart-3: oklch(0.398 0.07 227.392);
161
+ --chart-4: oklch(0.828 0.189 84.429);
162
+ --chart-5: oklch(0.769 0.188 70.08);
163
+ --sidebar: oklch(0.985 0 0);
164
+ --sidebar-foreground: oklch(0.145 0 0);
165
+ --sidebar-primary: oklch(0.205 0 0);
166
+ --sidebar-primary-foreground: oklch(0.985 0 0);
167
+ --sidebar-accent: oklch(0.97 0 0);
168
+ --sidebar-accent-foreground: oklch(0.205 0 0);
169
+ --sidebar-border: oklch(0.922 0 0);
170
+ --sidebar-ring: oklch(0.708 0 0);
171
+ }
172
+
173
+ .theme-neutral.dark {
174
+ --background: oklch(0.145 0 0);
175
+ --foreground: oklch(0.985 0 0);
176
+ --card: oklch(0.205 0 0);
177
+ --card-foreground: oklch(0.985 0 0);
178
+ --popover: oklch(0.205 0 0);
179
+ --popover-foreground: oklch(0.985 0 0);
180
+ --primary: oklch(0.922 0 0);
181
+ --primary-foreground: oklch(0.205 0 0);
182
+ --secondary: oklch(0.269 0 0);
183
+ --secondary-foreground: oklch(0.985 0 0);
184
+ --muted: oklch(0.269 0 0);
185
+ --muted-foreground: oklch(0.708 0 0);
186
+ --accent: oklch(0.269 0 0);
187
+ --accent-foreground: oklch(0.985 0 0);
188
+ --destructive: oklch(0.704 0.191 22.216);
189
+ --border: oklch(1 0 0 / 10%);
190
+ --input: oklch(1 0 0 / 15%);
191
+ --ring: oklch(0.556 0 0);
192
+ --chart-1: oklch(0.488 0.243 264.376);
193
+ --chart-2: oklch(0.696 0.17 162.48);
194
+ --chart-3: oklch(0.769 0.188 70.08);
195
+ --chart-4: oklch(0.627 0.265 303.9);
196
+ --chart-5: oklch(0.645 0.246 16.439);
197
+ --sidebar: oklch(0.205 0 0);
198
+ --sidebar-foreground: oklch(0.985 0 0);
199
+ --sidebar-primary: oklch(0.488 0.243 264.376);
200
+ --sidebar-primary-foreground: oklch(0.985 0 0);
201
+ --sidebar-accent: oklch(0.269 0 0);
202
+ --sidebar-accent-foreground: oklch(0.985 0 0);
203
+ --sidebar-border: oklch(1 0 0 / 10%);
204
+ --sidebar-ring: oklch(0.556 0 0);
205
+ }
206
+
207
+ .theme-gray {
208
+ --radius: 0.625rem;
209
+ --background: oklch(1 0 0);
210
+ --foreground: oklch(0.13 0.028 261.692);
211
+ --card: oklch(1 0 0);
212
+ --card-foreground: oklch(0.13 0.028 261.692);
213
+ --popover: oklch(1 0 0);
214
+ --popover-foreground: oklch(0.13 0.028 261.692);
215
+ --primary: oklch(0.21 0.034 264.665);
216
+ --primary-foreground: oklch(0.985 0.002 247.839);
217
+ --secondary: oklch(0.967 0.003 264.542);
218
+ --secondary-foreground: oklch(0.21 0.034 264.665);
219
+ --muted: oklch(0.967 0.003 264.542);
220
+ --muted-foreground: oklch(0.551 0.027 264.364);
221
+ --accent: oklch(0.967 0.003 264.542);
222
+ --accent-foreground: oklch(0.21 0.034 264.665);
223
+ --destructive: oklch(0.577 0.245 27.325);
224
+ --border: oklch(0.928 0.006 264.531);
225
+ --input: oklch(0.928 0.006 264.531);
226
+ --ring: oklch(0.707 0.022 261.325);
227
+ --chart-1: oklch(0.646 0.222 41.116);
228
+ --chart-2: oklch(0.6 0.118 184.704);
229
+ --chart-3: oklch(0.398 0.07 227.392);
230
+ --chart-4: oklch(0.828 0.189 84.429);
231
+ --chart-5: oklch(0.769 0.188 70.08);
232
+ --sidebar: oklch(0.985 0.002 247.839);
233
+ --sidebar-foreground: oklch(0.13 0.028 261.692);
234
+ --sidebar-primary: oklch(0.21 0.034 264.665);
235
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
236
+ --sidebar-accent: oklch(0.967 0.003 264.542);
237
+ --sidebar-accent-foreground: oklch(0.21 0.034 264.665);
238
+ --sidebar-border: oklch(0.928 0.006 264.531);
239
+ --sidebar-ring: oklch(0.707 0.022 261.325);
240
+ }
241
+
242
+ .theme-gray.dark {
243
+ --background: oklch(0.13 0.028 261.692);
244
+ --foreground: oklch(0.985 0.002 247.839);
245
+ --card: oklch(0.21 0.034 264.665);
246
+ --card-foreground: oklch(0.985 0.002 247.839);
247
+ --popover: oklch(0.21 0.034 264.665);
248
+ --popover-foreground: oklch(0.985 0.002 247.839);
249
+ --primary: oklch(0.928 0.006 264.531);
250
+ --primary-foreground: oklch(0.21 0.034 264.665);
251
+ --secondary: oklch(0.278 0.033 256.848);
252
+ --secondary-foreground: oklch(0.985 0.002 247.839);
253
+ --muted: oklch(0.278 0.033 256.848);
254
+ --muted-foreground: oklch(0.707 0.022 261.325);
255
+ --accent: oklch(0.278 0.033 256.848);
256
+ --accent-foreground: oklch(0.985 0.002 247.839);
257
+ --destructive: oklch(0.704 0.191 22.216);
258
+ --border: oklch(1 0 0 / 10%);
259
+ --input: oklch(1 0 0 / 15%);
260
+ --ring: oklch(0.551 0.027 264.364);
261
+ --chart-1: oklch(0.488 0.243 264.376);
262
+ --chart-2: oklch(0.696 0.17 162.48);
263
+ --chart-3: oklch(0.769 0.188 70.08);
264
+ --chart-4: oklch(0.627 0.265 303.9);
265
+ --chart-5: oklch(0.645 0.246 16.439);
266
+ --sidebar: oklch(0.21 0.034 264.665);
267
+ --sidebar-foreground: oklch(0.985 0.002 247.839);
268
+ --sidebar-primary: oklch(0.488 0.243 264.376);
269
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
270
+ --sidebar-accent: oklch(0.278 0.033 256.848);
271
+ --sidebar-accent-foreground: oklch(0.985 0.002 247.839);
272
+ --sidebar-border: oklch(1 0 0 / 10%);
273
+ --sidebar-ring: oklch(0.551 0.027 264.364);
274
+ }
275
+
276
+ .theme-slate {
277
+ --radius: 0.625rem;
278
+ --background: oklch(1 0 0);
279
+ --foreground: oklch(0.129 0.042 264.695);
280
+ --card: oklch(1 0 0);
281
+ --card-foreground: oklch(0.129 0.042 264.695);
282
+ --popover: oklch(1 0 0);
283
+ --popover-foreground: oklch(0.129 0.042 264.695);
284
+ --primary: oklch(0.208 0.042 265.755);
285
+ --primary-foreground: oklch(0.984 0.003 247.858);
286
+ --secondary: oklch(0.968 0.007 247.896);
287
+ --secondary-foreground: oklch(0.208 0.042 265.755);
288
+ --muted: oklch(0.968 0.007 247.896);
289
+ --muted-foreground: oklch(0.554 0.046 257.417);
290
+ --accent: oklch(0.968 0.007 247.896);
291
+ --accent-foreground: oklch(0.208 0.042 265.755);
292
+ --destructive: oklch(0.577 0.245 27.325);
293
+ --border: oklch(0.929 0.013 255.508);
294
+ --input: oklch(0.929 0.013 255.508);
295
+ --ring: oklch(0.704 0.04 256.788);
296
+ --chart-1: oklch(0.646 0.222 41.116);
297
+ --chart-2: oklch(0.6 0.118 184.704);
298
+ --chart-3: oklch(0.398 0.07 227.392);
299
+ --chart-4: oklch(0.828 0.189 84.429);
300
+ --chart-5: oklch(0.769 0.188 70.08);
301
+ --sidebar: oklch(0.984 0.003 247.858);
302
+ --sidebar-foreground: oklch(0.129 0.042 264.695);
303
+ --sidebar-primary: oklch(0.208 0.042 265.755);
304
+ --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
305
+ --sidebar-accent: oklch(0.968 0.007 247.896);
306
+ --sidebar-accent-foreground: oklch(0.208 0.042 265.755);
307
+ --sidebar-border: oklch(0.929 0.013 255.508);
308
+ --sidebar-ring: oklch(0.704 0.04 256.788);
309
+ }
310
+
311
+ .theme-slate.dark {
312
+ --background: oklch(0.129 0.042 264.695);
313
+ --foreground: oklch(0.984 0.003 247.858);
314
+ --card: oklch(0.208 0.042 265.755);
315
+ --card-foreground: oklch(0.984 0.003 247.858);
316
+ --popover: oklch(0.208 0.042 265.755);
317
+ --popover-foreground: oklch(0.984 0.003 247.858);
318
+ --primary: oklch(0.929 0.013 255.508);
319
+ --primary-foreground: oklch(0.208 0.042 265.755);
320
+ --secondary: oklch(0.279 0.041 260.031);
321
+ --secondary-foreground: oklch(0.984 0.003 247.858);
322
+ --muted: oklch(0.279 0.041 260.031);
323
+ --muted-foreground: oklch(0.704 0.04 256.788);
324
+ --accent: oklch(0.279 0.041 260.031);
325
+ --accent-foreground: oklch(0.984 0.003 247.858);
326
+ --destructive: oklch(0.704 0.191 22.216);
327
+ --border: oklch(1 0 0 / 10%);
328
+ --input: oklch(1 0 0 / 15%);
329
+ --ring: oklch(0.551 0.027 264.364);
330
+ --chart-1: oklch(0.488 0.243 264.376);
331
+ --chart-2: oklch(0.696 0.17 162.48);
332
+ --chart-3: oklch(0.769 0.188 70.08);
333
+ --chart-4: oklch(0.627 0.265 303.9);
334
+ --chart-5: oklch(0.645 0.246 16.439);
335
+ --sidebar: oklch(0.208 0.042 265.755);
336
+ --sidebar-foreground: oklch(0.984 0.003 247.858);
337
+ --sidebar-primary: oklch(0.488 0.243 264.376);
338
+ --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
339
+ --sidebar-accent: oklch(0.279 0.041 260.031);
340
+ --sidebar-accent-foreground: oklch(0.984 0.003 247.858);
341
+ --sidebar-border: oklch(1 0 0 / 10%);
342
+ --sidebar-ring: oklch(0.551 0.027 264.364);
343
+ }
344
+
345
+ .theme-red {
346
+ --radius: 0.65rem;
347
+ --background: oklch(1 0 0);
348
+ --foreground: oklch(0.141 0.005 285.823);
349
+ --card: oklch(1 0 0);
350
+ --card-foreground: oklch(0.141 0.005 285.823);
351
+ --popover: oklch(1 0 0);
352
+ --popover-foreground: oklch(0.141 0.005 285.823);
353
+ --primary: oklch(0.637 0.237 25.331);
354
+ --primary-foreground: oklch(0.971 0.013 17.38);
355
+ --secondary: oklch(0.967 0.001 286.375);
356
+ --secondary-foreground: oklch(0.21 0.006 285.885);
357
+ --muted: oklch(0.967 0.001 286.375);
358
+ --muted-foreground: oklch(0.552 0.016 285.938);
359
+ --accent: oklch(0.967 0.001 286.375);
360
+ --accent-foreground: oklch(0.21 0.006 285.885);
361
+ --destructive: oklch(0.577 0.245 27.325);
362
+ --border: oklch(0.92 0.004 286.32);
363
+ --input: oklch(0.92 0.004 286.32);
364
+ --ring: oklch(0.637 0.237 25.331);
365
+ --chart-1: oklch(0.646 0.222 41.116);
366
+ --chart-2: oklch(0.6 0.118 184.704);
367
+ --chart-3: oklch(0.398 0.07 227.392);
368
+ --chart-4: oklch(0.828 0.189 84.429);
369
+ --chart-5: oklch(0.769 0.188 70.08);
370
+ --sidebar: oklch(0.985 0 0);
371
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
372
+ --sidebar-primary: oklch(0.637 0.237 25.331);
373
+ --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
374
+ --sidebar-accent: oklch(0.967 0.001 286.375);
375
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
376
+ --sidebar-border: oklch(0.92 0.004 286.32);
377
+ --sidebar-ring: oklch(0.637 0.237 25.331);
378
+ }
379
+
380
+ .theme-red.dark {
381
+ --background: oklch(0.141 0.005 285.823);
382
+ --foreground: oklch(0.985 0 0);
383
+ --card: oklch(0.21 0.006 285.885);
384
+ --card-foreground: oklch(0.985 0 0);
385
+ --popover: oklch(0.21 0.006 285.885);
386
+ --popover-foreground: oklch(0.985 0 0);
387
+ --primary: oklch(0.637 0.237 25.331);
388
+ --primary-foreground: oklch(0.971 0.013 17.38);
389
+ --secondary: oklch(0.274 0.006 286.033);
390
+ --secondary-foreground: oklch(0.985 0 0);
391
+ --muted: oklch(0.274 0.006 286.033);
392
+ --muted-foreground: oklch(0.705 0.015 286.067);
393
+ --accent: oklch(0.274 0.006 286.033);
394
+ --accent-foreground: oklch(0.985 0 0);
395
+ --destructive: oklch(0.704 0.191 22.216);
396
+ --border: oklch(1 0 0 / 10%);
397
+ --input: oklch(1 0 0 / 15%);
398
+ --ring: oklch(0.637 0.237 25.331);
399
+ --chart-1: oklch(0.488 0.243 264.376);
400
+ --chart-2: oklch(0.696 0.17 162.48);
401
+ --chart-3: oklch(0.769 0.188 70.08);
402
+ --chart-4: oklch(0.627 0.265 303.9);
403
+ --chart-5: oklch(0.645 0.246 16.439);
404
+ --sidebar: oklch(0.21 0.006 285.885);
405
+ --sidebar-foreground: oklch(0.985 0 0);
406
+ --sidebar-primary: oklch(0.637 0.237 25.331);
407
+ --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
408
+ --sidebar-accent: oklch(0.274 0.006 286.033);
409
+ --sidebar-accent-foreground: oklch(0.985 0 0);
410
+ --sidebar-border: oklch(1 0 0 / 10%);
411
+ --sidebar-ring: oklch(0.637 0.237 25.331);
412
+ }
413
+
414
+ .theme-rose {
415
+ --radius: 0.65rem;
416
+ --background: oklch(1 0 0);
417
+ --foreground: oklch(0.141 0.005 285.823);
418
+ --card: oklch(1 0 0);
419
+ --card-foreground: oklch(0.141 0.005 285.823);
420
+ --popover: oklch(1 0 0);
421
+ --popover-foreground: oklch(0.141 0.005 285.823);
422
+ --primary: oklch(0.645 0.246 16.439);
423
+ --primary-foreground: oklch(0.969 0.015 12.422);
424
+ --secondary: oklch(0.967 0.001 286.375);
425
+ --secondary-foreground: oklch(0.21 0.006 285.885);
426
+ --muted: oklch(0.967 0.001 286.375);
427
+ --muted-foreground: oklch(0.552 0.016 285.938);
428
+ --accent: oklch(0.967 0.001 286.375);
429
+ --accent-foreground: oklch(0.21 0.006 285.885);
430
+ --destructive: oklch(0.577 0.245 27.325);
431
+ --border: oklch(0.92 0.004 286.32);
432
+ --input: oklch(0.92 0.004 286.32);
433
+ --ring: oklch(0.645 0.246 16.439);
434
+ --chart-1: oklch(0.646 0.222 41.116);
435
+ --chart-2: oklch(0.6 0.118 184.704);
436
+ --chart-3: oklch(0.398 0.07 227.392);
437
+ --chart-4: oklch(0.828 0.189 84.429);
438
+ --chart-5: oklch(0.769 0.188 70.08);
439
+ --sidebar: oklch(0.985 0 0);
440
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
441
+ --sidebar-primary: oklch(0.645 0.246 16.439);
442
+ --sidebar-primary-foreground: oklch(0.969 0.015 12.422);
443
+ --sidebar-accent: oklch(0.967 0.001 286.375);
444
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
445
+ --sidebar-border: oklch(0.92 0.004 286.32);
446
+ --sidebar-ring: oklch(0.645 0.246 16.439);
447
+ }
448
+
449
+ .theme-rose.dark {
450
+ --background: oklch(0.141 0.005 285.823);
451
+ --foreground: oklch(0.985 0 0);
452
+ --card: oklch(0.21 0.006 285.885);
453
+ --card-foreground: oklch(0.985 0 0);
454
+ --popover: oklch(0.21 0.006 285.885);
455
+ --popover-foreground: oklch(0.985 0 0);
456
+ --primary: oklch(0.645 0.246 16.439);
457
+ --primary-foreground: oklch(0.969 0.015 12.422);
458
+ --secondary: oklch(0.274 0.006 286.033);
459
+ --secondary-foreground: oklch(0.985 0 0);
460
+ --muted: oklch(0.274 0.006 286.033);
461
+ --muted-foreground: oklch(0.705 0.015 286.067);
462
+ --accent: oklch(0.274 0.006 286.033);
463
+ --accent-foreground: oklch(0.985 0 0);
464
+ --destructive: oklch(0.704 0.191 22.216);
465
+ --border: oklch(1 0 0 / 10%);
466
+ --input: oklch(1 0 0 / 15%);
467
+ --ring: oklch(0.645 0.246 16.439);
468
+ --chart-1: oklch(0.488 0.243 264.376);
469
+ --chart-2: oklch(0.696 0.17 162.48);
470
+ --chart-3: oklch(0.769 0.188 70.08);
471
+ --chart-4: oklch(0.627 0.265 303.9);
472
+ --chart-5: oklch(0.645 0.246 16.439);
473
+ --sidebar: oklch(0.21 0.006 285.885);
474
+ --sidebar-foreground: oklch(0.985 0 0);
475
+ --sidebar-primary: oklch(0.645 0.246 16.439);
476
+ --sidebar-primary-foreground: oklch(0.969 0.015 12.422);
477
+ --sidebar-accent: oklch(0.274 0.006 286.033);
478
+ --sidebar-accent-foreground: oklch(0.985 0 0);
479
+ --sidebar-border: oklch(1 0 0 / 10%);
480
+ --sidebar-ring: oklch(0.645 0.246 16.439);
481
+ }
482
+
483
+ .theme-orange {
484
+ --radius: 0.65rem;
485
+ --background: oklch(1 0 0);
486
+ --foreground: oklch(0.141 0.005 285.823);
487
+ --card: oklch(1 0 0);
488
+ --card-foreground: oklch(0.141 0.005 285.823);
489
+ --popover: oklch(1 0 0);
490
+ --popover-foreground: oklch(0.141 0.005 285.823);
491
+ --primary: oklch(0.705 0.213 47.604);
492
+ --primary-foreground: oklch(0.98 0.016 73.684);
493
+ --secondary: oklch(0.967 0.001 286.375);
494
+ --secondary-foreground: oklch(0.21 0.006 285.885);
495
+ --muted: oklch(0.967 0.001 286.375);
496
+ --muted-foreground: oklch(0.552 0.016 285.938);
497
+ --accent: oklch(0.967 0.001 286.375);
498
+ --accent-foreground: oklch(0.21 0.006 285.885);
499
+ --destructive: oklch(0.577 0.245 27.325);
500
+ --border: oklch(0.92 0.004 286.32);
501
+ --input: oklch(0.92 0.004 286.32);
502
+ --ring: oklch(0.705 0.213 47.604);
503
+ --chart-1: oklch(0.646 0.222 41.116);
504
+ --chart-2: oklch(0.6 0.118 184.704);
505
+ --chart-3: oklch(0.398 0.07 227.392);
506
+ --chart-4: oklch(0.828 0.189 84.429);
507
+ --chart-5: oklch(0.769 0.188 70.08);
508
+ --sidebar: oklch(0.985 0 0);
509
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
510
+ --sidebar-primary: oklch(0.705 0.213 47.604);
511
+ --sidebar-primary-foreground: oklch(0.98 0.016 73.684);
512
+ --sidebar-accent: oklch(0.967 0.001 286.375);
513
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
514
+ --sidebar-border: oklch(0.92 0.004 286.32);
515
+ --sidebar-ring: oklch(0.705 0.213 47.604);
516
+ }
517
+
518
+ .theme-orange.dark {
519
+ --background: oklch(0.141 0.005 285.823);
520
+ --foreground: oklch(0.985 0 0);
521
+ --card: oklch(0.21 0.006 285.885);
522
+ --card-foreground: oklch(0.985 0 0);
523
+ --popover: oklch(0.21 0.006 285.885);
524
+ --popover-foreground: oklch(0.985 0 0);
525
+ --primary: oklch(0.646 0.222 41.116);
526
+ --primary-foreground: oklch(0.98 0.016 73.684);
527
+ --secondary: oklch(0.274 0.006 286.033);
528
+ --secondary-foreground: oklch(0.985 0 0);
529
+ --muted: oklch(0.274 0.006 286.033);
530
+ --muted-foreground: oklch(0.705 0.015 286.067);
531
+ --accent: oklch(0.274 0.006 286.033);
532
+ --accent-foreground: oklch(0.985 0 0);
533
+ --destructive: oklch(0.704 0.191 22.216);
534
+ --border: oklch(1 0 0 / 10%);
535
+ --input: oklch(1 0 0 / 15%);
536
+ --ring: oklch(0.646 0.222 41.116);
537
+ --chart-1: oklch(0.488 0.243 264.376);
538
+ --chart-2: oklch(0.696 0.17 162.48);
539
+ --chart-3: oklch(0.769 0.188 70.08);
540
+ --chart-4: oklch(0.627 0.265 303.9);
541
+ --chart-5: oklch(0.645 0.246 16.439);
542
+ --sidebar: oklch(0.21 0.006 285.885);
543
+ --sidebar-foreground: oklch(0.985 0 0);
544
+ --sidebar-primary: oklch(0.646 0.222 41.116);
545
+ --sidebar-primary-foreground: oklch(0.98 0.016 73.684);
546
+ --sidebar-accent: oklch(0.274 0.006 286.033);
547
+ --sidebar-accent-foreground: oklch(0.985 0 0);
548
+ --sidebar-border: oklch(1 0 0 / 10%);
549
+ --sidebar-ring: oklch(0.646 0.222 41.116);
550
+ }
551
+
552
+ .theme-green {
553
+ --radius: 0.65rem;
554
+ --background: oklch(1 0 0);
555
+ --foreground: oklch(0.141 0.005 285.823);
556
+ --card: oklch(1 0 0);
557
+ --card-foreground: oklch(0.141 0.005 285.823);
558
+ --popover: oklch(1 0 0);
559
+ --popover-foreground: oklch(0.141 0.005 285.823);
560
+ --primary: oklch(0.723 0.219 149.579);
561
+ --primary-foreground: oklch(0.982 0.018 155.826);
562
+ --secondary: oklch(0.967 0.001 286.375);
563
+ --secondary-foreground: oklch(0.21 0.006 285.885);
564
+ --muted: oklch(0.967 0.001 286.375);
565
+ --muted-foreground: oklch(0.552 0.016 285.938);
566
+ --accent: oklch(0.967 0.001 286.375);
567
+ --accent-foreground: oklch(0.21 0.006 285.885);
568
+ --destructive: oklch(0.577 0.245 27.325);
569
+ --border: oklch(0.92 0.004 286.32);
570
+ --input: oklch(0.92 0.004 286.32);
571
+ --ring: oklch(0.723 0.219 149.579);
572
+ --chart-1: oklch(0.646 0.222 41.116);
573
+ --chart-2: oklch(0.6 0.118 184.704);
574
+ --chart-3: oklch(0.398 0.07 227.392);
575
+ --chart-4: oklch(0.828 0.189 84.429);
576
+ --chart-5: oklch(0.769 0.188 70.08);
577
+ --sidebar: oklch(0.985 0 0);
578
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
579
+ --sidebar-primary: oklch(0.723 0.219 149.579);
580
+ --sidebar-primary-foreground: oklch(0.982 0.018 155.826);
581
+ --sidebar-accent: oklch(0.967 0.001 286.375);
582
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
583
+ --sidebar-border: oklch(0.92 0.004 286.32);
584
+ --sidebar-ring: oklch(0.723 0.219 149.579);
585
+ }
586
+
587
+ .theme-green.dark {
588
+ --background: oklch(0.141 0.005 285.823);
589
+ --foreground: oklch(0.985 0 0);
590
+ --card: oklch(0.21 0.006 285.885);
591
+ --card-foreground: oklch(0.985 0 0);
592
+ --popover: oklch(0.21 0.006 285.885);
593
+ --popover-foreground: oklch(0.985 0 0);
594
+ --primary: oklch(0.696 0.17 162.48);
595
+ --primary-foreground: oklch(0.99 0.0147 158.26);
596
+ --secondary: oklch(0.274 0.006 286.033);
597
+ --secondary-foreground: oklch(0.985 0 0);
598
+ --muted: oklch(0.274 0.006 286.033);
599
+ --muted-foreground: oklch(0.705 0.015 286.067);
600
+ --accent: oklch(0.274 0.006 286.033);
601
+ --accent-foreground: oklch(0.985 0 0);
602
+ --destructive: oklch(0.704 0.191 22.216);
603
+ --border: oklch(1 0 0 / 10%);
604
+ --input: oklch(1 0 0 / 15%);
605
+ --ring: oklch(0.527 0.154 150.069);
606
+ --chart-1: oklch(0.488 0.243 264.376);
607
+ --chart-2: oklch(0.696 0.17 162.48);
608
+ --chart-3: oklch(0.769 0.188 70.08);
609
+ --chart-4: oklch(0.627 0.265 303.9);
610
+ --chart-5: oklch(0.645 0.246 16.439);
611
+ --sidebar: oklch(0.21 0.006 285.885);
612
+ --sidebar-foreground: oklch(0.985 0 0);
613
+ --sidebar-primary: oklch(0.696 0.17 162.48);
614
+ --sidebar-primary-foreground: oklch(0.393 0.095 152.535);
615
+ --sidebar-accent: oklch(0.274 0.006 286.033);
616
+ --sidebar-accent-foreground: oklch(0.985 0 0);
617
+ --sidebar-border: oklch(1 0 0 / 10%);
618
+ --sidebar-ring: oklch(0.527 0.154 150.069);
619
+ }
620
+
621
+ .theme-blue {
622
+ --radius: 0.65rem;
623
+ --background: oklch(1 0 0);
624
+ --foreground: oklch(0.141 0.005 285.823);
625
+ --card: oklch(1 0 0);
626
+ --card-foreground: oklch(0.141 0.005 285.823);
627
+ --popover: oklch(1 0 0);
628
+ --popover-foreground: oklch(0.141 0.005 285.823);
629
+ --primary: oklch(0.623 0.214 259.815);
630
+ --primary-foreground: oklch(0.97 0.014 254.604);
631
+ --secondary: oklch(0.967 0.001 286.375);
632
+ --secondary-foreground: oklch(0.21 0.006 285.885);
633
+ --muted: oklch(0.967 0.001 286.375);
634
+ --muted-foreground: oklch(0.552 0.016 285.938);
635
+ --accent: oklch(0.967 0.001 286.375);
636
+ --accent-foreground: oklch(0.21 0.006 285.885);
637
+ --destructive: oklch(0.577 0.245 27.325);
638
+ --border: oklch(0.92 0.004 286.32);
639
+ --input: oklch(0.92 0.004 286.32);
640
+ --ring: oklch(0.623 0.214 259.815);
641
+ --chart-1: oklch(0.646 0.222 41.116);
642
+ --chart-2: oklch(0.6 0.118 184.704);
643
+ --chart-3: oklch(0.398 0.07 227.392);
644
+ --chart-4: oklch(0.828 0.189 84.429);
645
+ --chart-5: oklch(0.769 0.188 70.08);
646
+ --sidebar: oklch(0.985 0 0);
647
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
648
+ --sidebar-primary: oklch(0.623 0.214 259.815);
649
+ --sidebar-primary-foreground: oklch(0.97 0.014 254.604);
650
+ --sidebar-accent: oklch(0.967 0.001 286.375);
651
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
652
+ --sidebar-border: oklch(0.92 0.004 286.32);
653
+ --sidebar-ring: oklch(0.623 0.214 259.815);
654
+ }
655
+
656
+ .theme-blue.dark {
657
+ --background: oklch(0.141 0.005 285.823);
658
+ --foreground: oklch(0.985 0 0);
659
+ --card: oklch(0.21 0.006 285.885);
660
+ --card-foreground: oklch(0.985 0 0);
661
+ --popover: oklch(0.21 0.006 285.885);
662
+ --popover-foreground: oklch(0.985 0 0);
663
+ --primary: oklch(0.546 0.245 262.881);
664
+ --primary-foreground: oklch(0.98 0.0067 277.16);
665
+ --secondary: oklch(0.274 0.006 286.033);
666
+ --secondary-foreground: oklch(0.985 0 0);
667
+ --muted: oklch(0.274 0.006 286.033);
668
+ --muted-foreground: oklch(0.705 0.015 286.067);
669
+ --accent: oklch(0.274 0.006 286.033);
670
+ --accent-foreground: oklch(0.985 0 0);
671
+ --destructive: oklch(0.704 0.191 22.216);
672
+ --border: oklch(1 0 0 / 10%);
673
+ --input: oklch(1 0 0 / 15%);
674
+ --ring: oklch(0.488 0.243 264.376);
675
+ --chart-1: oklch(0.488 0.243 264.376);
676
+ --chart-2: oklch(0.696 0.17 162.48);
677
+ --chart-3: oklch(0.769 0.188 70.08);
678
+ --chart-4: oklch(0.627 0.265 303.9);
679
+ --chart-5: oklch(0.645 0.246 16.439);
680
+ --sidebar: oklch(0.21 0.006 285.885);
681
+ --sidebar-foreground: oklch(0.985 0 0);
682
+ --sidebar-primary: oklch(0.546 0.245 262.881);
683
+ --sidebar-primary-foreground: oklch(0.98 0.0067 277.16);
684
+ --sidebar-accent: oklch(0.274 0.006 286.033);
685
+ --sidebar-accent-foreground: oklch(0.985 0 0);
686
+ --sidebar-border: oklch(1 0 0 / 10%);
687
+ --sidebar-ring: oklch(0.488 0.243 264.376);
688
+ }
689
+
690
+ .theme-yellow {
691
+ --radius: 0.65rem;
692
+ --background: oklch(1 0 0);
693
+ --foreground: oklch(0.141 0.005 285.823);
694
+ --card: oklch(1 0 0);
695
+ --card-foreground: oklch(0.141 0.005 285.823);
696
+ --popover: oklch(1 0 0);
697
+ --popover-foreground: oklch(0.141 0.005 285.823);
698
+ --primary: oklch(0.795 0.184 86.047);
699
+ --primary-foreground: oklch(0.421 0.095 57.708);
700
+ --secondary: oklch(0.967 0.001 286.375);
701
+ --secondary-foreground: oklch(0.21 0.006 285.885);
702
+ --muted: oklch(0.967 0.001 286.375);
703
+ --muted-foreground: oklch(0.552 0.016 285.938);
704
+ --accent: oklch(0.967 0.001 286.375);
705
+ --accent-foreground: oklch(0.21 0.006 285.885);
706
+ --destructive: oklch(0.577 0.245 27.325);
707
+ --border: oklch(0.92 0.004 286.32);
708
+ --input: oklch(0.92 0.004 286.32);
709
+ --ring: oklch(0.795 0.184 86.047);
710
+ --chart-1: oklch(0.646 0.222 41.116);
711
+ --chart-2: oklch(0.6 0.118 184.704);
712
+ --chart-3: oklch(0.398 0.07 227.392);
713
+ --chart-4: oklch(0.828 0.189 84.429);
714
+ --chart-5: oklch(0.769 0.188 70.08);
715
+ --sidebar: oklch(0.985 0 0);
716
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
717
+ --sidebar-primary: oklch(0.795 0.184 86.047);
718
+ --sidebar-primary-foreground: oklch(0.421 0.095 57.708);
719
+ --sidebar-accent: oklch(0.967 0.001 286.375);
720
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
721
+ --sidebar-border: oklch(0.92 0.004 286.32);
722
+ --sidebar-ring: oklch(0.795 0.184 86.047);
723
+ }
724
+
725
+ .theme-yellow.dark {
726
+ --background: oklch(0.141 0.005 285.823);
727
+ --foreground: oklch(0.985 0 0);
728
+ --card: oklch(0.21 0.006 285.885);
729
+ --card-foreground: oklch(0.985 0 0);
730
+ --popover: oklch(0.21 0.006 285.885);
731
+ --popover-foreground: oklch(0.985 0 0);
732
+ --primary: oklch(0.795 0.184 86.047);
733
+ --primary-foreground: oklch(0.421 0.095 57.708);
734
+ --secondary: oklch(0.274 0.006 286.033);
735
+ --secondary-foreground: oklch(0.985 0 0);
736
+ --muted: oklch(0.274 0.006 286.033);
737
+ --muted-foreground: oklch(0.705 0.015 286.067);
738
+ --accent: oklch(0.274 0.006 286.033);
739
+ --accent-foreground: oklch(0.985 0 0);
740
+ --destructive: oklch(0.704 0.191 22.216);
741
+ --border: oklch(1 0 0 / 10%);
742
+ --input: oklch(1 0 0 / 15%);
743
+ --ring: oklch(0.554 0.135 66.442);
744
+ --chart-1: oklch(0.488 0.243 264.376);
745
+ --chart-2: oklch(0.696 0.17 162.48);
746
+ --chart-3: oklch(0.769 0.188 70.08);
747
+ --chart-4: oklch(0.627 0.265 303.9);
748
+ --chart-5: oklch(0.645 0.246 16.439);
749
+ --sidebar: oklch(0.21 0.006 285.885);
750
+ --sidebar-foreground: oklch(0.985 0 0);
751
+ --sidebar-primary: oklch(0.795 0.184 86.047);
752
+ --sidebar-primary-foreground: oklch(0.421 0.095 57.708);
753
+ --sidebar-accent: oklch(0.274 0.006 286.033);
754
+ --sidebar-accent-foreground: oklch(0.985 0 0);
755
+ --sidebar-border: oklch(1 0 0 / 10%);
756
+ --sidebar-ring: oklch(0.554 0.135 66.442);
757
+ }
758
+
759
+ .theme-violet {
760
+ --radius: 0.65rem;
761
+ --background: oklch(1 0 0);
762
+ --foreground: oklch(0.141 0.005 285.823);
763
+ --card: oklch(1 0 0);
764
+ --card-foreground: oklch(0.141 0.005 285.823);
765
+ --popover: oklch(1 0 0);
766
+ --popover-foreground: oklch(0.141 0.005 285.823);
767
+ --primary: oklch(0.606 0.25 292.717);
768
+ --primary-foreground: oklch(0.969 0.016 293.756);
769
+ --secondary: oklch(0.967 0.001 286.375);
770
+ --secondary-foreground: oklch(0.21 0.006 285.885);
771
+ --muted: oklch(0.967 0.001 286.375);
772
+ --muted-foreground: oklch(0.552 0.016 285.938);
773
+ --accent: oklch(0.967 0.001 286.375);
774
+ --accent-foreground: oklch(0.21 0.006 285.885);
775
+ --destructive: oklch(0.577 0.245 27.325);
776
+ --border: oklch(0.92 0.004 286.32);
777
+ --input: oklch(0.92 0.004 286.32);
778
+ --ring: oklch(0.606 0.25 292.717);
779
+ --chart-1: oklch(0.646 0.222 41.116);
780
+ --chart-2: oklch(0.6 0.118 184.704);
781
+ --chart-3: oklch(0.398 0.07 227.392);
782
+ --chart-4: oklch(0.828 0.189 84.429);
783
+ --chart-5: oklch(0.769 0.188 70.08);
784
+ --sidebar: oklch(0.985 0 0);
785
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
786
+ --sidebar-primary: oklch(0.606 0.25 292.717);
787
+ --sidebar-primary-foreground: oklch(0.969 0.016 293.756);
788
+ --sidebar-accent: oklch(0.967 0.001 286.375);
789
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
790
+ --sidebar-border: oklch(0.92 0.004 286.32);
791
+ --sidebar-ring: oklch(0.606 0.25 292.717);
792
+ }
793
+
794
+ .theme-violet.dark {
795
+ --background: oklch(0.141 0.005 285.823);
796
+ --foreground: oklch(0.985 0 0);
797
+ --card: oklch(0.21 0.006 285.885);
798
+ --card-foreground: oklch(0.985 0 0);
799
+ --popover: oklch(0.21 0.006 285.885);
800
+ --popover-foreground: oklch(0.985 0 0);
801
+ --primary: oklch(0.541 0.281 293.009);
802
+ --primary-foreground: oklch(0.969 0.016 293.756);
803
+ --secondary: oklch(0.274 0.006 286.033);
804
+ --secondary-foreground: oklch(0.985 0 0);
805
+ --muted: oklch(0.274 0.006 286.033);
806
+ --muted-foreground: oklch(0.705 0.015 286.067);
807
+ --accent: oklch(0.274 0.006 286.033);
808
+ --accent-foreground: oklch(0.985 0 0);
809
+ --destructive: oklch(0.704 0.191 22.216);
810
+ --border: oklch(1 0 0 / 10%);
811
+ --input: oklch(1 0 0 / 15%);
812
+ --ring: oklch(0.541 0.281 293.009);
813
+ --chart-1: oklch(0.488 0.243 264.376);
814
+ --chart-2: oklch(0.696 0.17 162.48);
815
+ --chart-3: oklch(0.769 0.188 70.08);
816
+ --chart-4: oklch(0.627 0.265 303.9);
817
+ --chart-5: oklch(0.645 0.246 16.439);
818
+ --sidebar: oklch(0.21 0.006 285.885);
819
+ --sidebar-foreground: oklch(0.985 0 0);
820
+ --sidebar-primary: oklch(0.541 0.281 293.009);
821
+ --sidebar-primary-foreground: oklch(0.969 0.016 293.756);
822
+ --sidebar-accent: oklch(0.274 0.006 286.033);
823
+ --sidebar-accent-foreground: oklch(0.985 0 0);
824
+ --sidebar-border: oklch(1 0 0 / 10%);
825
+ --sidebar-ring: oklch(0.541 0.281 293.009);
826
+ }
827
+
828
+ .theme-nuxt {
829
+ --radius: 0.625rem;
830
+ --background: oklch(1 0 0);
831
+ --foreground: oklch(0.13 0.028 261.692);
832
+ --card: oklch(1 0 0);
833
+ --card-foreground: oklch(0.13 0.028 261.692);
834
+ --popover: oklch(1 0 0);
835
+ --popover-foreground: oklch(0.13 0.028 261.692);
836
+ --primary: oklch(0.79 0.19 155.63);
837
+ --primary-foreground: oklch(0.99 0.02 155.63);
838
+ --secondary: oklch(0.967 0.003 264.542);
839
+ --secondary-foreground: oklch(0.21 0.034 264.665);
840
+ --muted: oklch(0.967 0.003 264.542);
841
+ --muted-foreground: oklch(0.551 0.027 264.364);
842
+ --accent: oklch(0.967 0.003 264.542);
843
+ --accent-foreground: oklch(0.21 0.034 264.665);
844
+ --destructive: oklch(0.577 0.245 27.325);
845
+ --border: oklch(0.928 0.006 264.531);
846
+ --input: oklch(0.928 0.006 264.531);
847
+ --ring: oklch(0.79 0.19 155.63);
848
+ --chart-1: oklch(0.79 0.19 155.63);
849
+ --chart-2: oklch(0.6 0.118 184.704);
850
+ --chart-3: oklch(0.398 0.07 227.392);
851
+ --chart-4: oklch(0.828 0.189 84.429);
852
+ --chart-5: oklch(0.769 0.188 70.08);
853
+ --sidebar: oklch(0.985 0.002 247.839);
854
+ --sidebar-foreground: oklch(0.13 0.028 261.692);
855
+ --sidebar-primary: oklch(0.79 0.19 155.63);
856
+ --sidebar-primary-foreground: oklch(0.99 0.02 155.63);
857
+ --sidebar-accent: oklch(0.967 0.003 264.542);
858
+ --sidebar-accent-foreground: oklch(0.21 0.034 264.665);
859
+ --sidebar-border: oklch(0.928 0.006 264.531);
860
+ --sidebar-ring: oklch(0.79 0.19 155.63);
861
+ }
862
+
863
+ .theme-nuxt.dark {
864
+ --background: oklch(0.13 0.028 261.692);
865
+ --foreground: oklch(0.985 0.002 247.839);
866
+ --card: oklch(0.21 0.034 264.665);
867
+ --card-foreground: oklch(0.985 0.002 247.839);
868
+ --popover: oklch(0.21 0.034 264.665);
869
+ --popover-foreground: oklch(0.985 0.002 247.839);
870
+ --primary: oklch(0.79 0.19 155.63);
871
+ --primary-foreground: oklch(0.15 0.05 155.63);
872
+ --secondary: oklch(0.278 0.033 256.848);
873
+ --secondary-foreground: oklch(0.985 0.002 247.839);
874
+ --muted: oklch(0.278 0.033 256.848);
875
+ --muted-foreground: oklch(0.707 0.022 261.325);
876
+ --accent: oklch(0.278 0.033 256.848);
877
+ --accent-foreground: oklch(0.985 0.002 247.839);
878
+ --destructive: oklch(0.704 0.191 22.216);
879
+ --border: oklch(1 0 0 / 10%);
880
+ --input: oklch(1 0 0 / 15%);
881
+ --ring: oklch(0.79 0.19 155.63);
882
+ --chart-1: oklch(0.79 0.19 155.63);
883
+ --chart-2: oklch(0.696 0.17 162.48);
884
+ --chart-3: oklch(0.769 0.188 70.08);
885
+ --chart-4: oklch(0.627 0.265 303.9);
886
+ --chart-5: oklch(0.645 0.246 16.439);
887
+ --sidebar: oklch(0.21 0.034 264.665);
888
+ --sidebar-foreground: oklch(0.985 0.002 247.839);
889
+ --sidebar-primary: oklch(0.79 0.19 155.63);
890
+ --sidebar-primary-foreground: oklch(0.15 0.05 155.63);
891
+ --sidebar-accent: oklch(0.278 0.033 256.848);
892
+ --sidebar-accent-foreground: oklch(0.985 0.002 247.839);
893
+ --sidebar-border: oklch(1 0 0 / 10%);
894
+ --sidebar-ring: oklch(0.79 0.19 155.63);
895
+ }
896
+
897
+ .theme-mauve {
898
+ --radius: 0.625rem;
899
+ --background: oklch(1 0 0);
900
+ --foreground: oklch(0.212 0.019 322.12);
901
+ --card: oklch(1 0 0);
902
+ --card-foreground: oklch(0.212 0.019 322.12);
903
+ --popover: oklch(1 0 0);
904
+ --popover-foreground: oklch(0.212 0.019 322.12);
905
+ --primary: oklch(0.212 0.019 322.12);
906
+ --primary-foreground: oklch(0.985 0 0);
907
+ --secondary: oklch(0.96 0.003 325.6);
908
+ --secondary-foreground: oklch(0.212 0.019 322.12);
909
+ --muted: oklch(0.96 0.003 325.6);
910
+ --muted-foreground: oklch(0.542 0.034 322.5);
911
+ --accent: oklch(0.96 0.003 325.6);
912
+ --accent-foreground: oklch(0.212 0.019 322.12);
913
+ --destructive: oklch(0.577 0.245 27.325);
914
+ --border: oklch(0.922 0.005 325.62);
915
+ --input: oklch(0.922 0.005 325.62);
916
+ --ring: oklch(0.711 0.019 323.02);
917
+ --chart-1: oklch(0.646 0.222 41.116);
918
+ --chart-2: oklch(0.6 0.118 184.704);
919
+ --chart-3: oklch(0.398 0.07 227.392);
920
+ --chart-4: oklch(0.828 0.189 84.429);
921
+ --chart-5: oklch(0.769 0.188 70.08);
922
+ --sidebar: oklch(0.985 0 0);
923
+ --sidebar-foreground: oklch(0.212 0.019 322.12);
924
+ --sidebar-primary: oklch(0.212 0.019 322.12);
925
+ --sidebar-primary-foreground: oklch(0.985 0 0);
926
+ --sidebar-accent: oklch(0.96 0.003 325.6);
927
+ --sidebar-accent-foreground: oklch(0.212 0.019 322.12);
928
+ --sidebar-border: oklch(0.922 0.005 325.62);
929
+ --sidebar-ring: oklch(0.711 0.019 323.02);
930
+ }
931
+
932
+ .theme-mauve.dark {
933
+ --background: oklch(0.145 0.008 326);
934
+ --foreground: oklch(0.985 0 0);
935
+ --card: oklch(0.212 0.019 322.12);
936
+ --card-foreground: oklch(0.985 0 0);
937
+ --popover: oklch(0.212 0.019 322.12);
938
+ --popover-foreground: oklch(0.985 0 0);
939
+ --primary: oklch(0.922 0.005 325.62);
940
+ --primary-foreground: oklch(0.212 0.019 322.12);
941
+ --secondary: oklch(0.263 0.024 320.12);
942
+ --secondary-foreground: oklch(0.985 0 0);
943
+ --muted: oklch(0.263 0.024 320.12);
944
+ --muted-foreground: oklch(0.711 0.019 323.02);
945
+ --accent: oklch(0.263 0.024 320.12);
946
+ --accent-foreground: oklch(0.985 0 0);
947
+ --destructive: oklch(0.704 0.191 22.216);
948
+ --border: oklch(1 0 0 / 10%);
949
+ --input: oklch(1 0 0 / 15%);
950
+ --ring: oklch(0.542 0.034 322.5);
951
+ --chart-1: oklch(0.488 0.243 264.376);
952
+ --chart-2: oklch(0.696 0.17 162.48);
953
+ --chart-3: oklch(0.769 0.188 70.08);
954
+ --chart-4: oklch(0.627 0.265 303.9);
955
+ --chart-5: oklch(0.645 0.246 16.439);
956
+ --sidebar: oklch(0.212 0.019 322.12);
957
+ --sidebar-foreground: oklch(0.985 0 0);
958
+ --sidebar-primary: oklch(0.922 0.005 325.62);
959
+ --sidebar-primary-foreground: oklch(0.212 0.019 322.12);
960
+ --sidebar-accent: oklch(0.263 0.024 320.12);
961
+ --sidebar-accent-foreground: oklch(0.985 0 0);
962
+ --sidebar-border: oklch(1 0 0 / 10%);
963
+ --sidebar-ring: oklch(0.542 0.034 322.5);
964
+ }
965
+
966
+ .theme-olive {
967
+ --radius: 0.625rem;
968
+ --background: oklch(1 0 0);
969
+ --foreground: oklch(0.228 0.013 107.4);
970
+ --card: oklch(1 0 0);
971
+ --card-foreground: oklch(0.228 0.013 107.4);
972
+ --popover: oklch(1 0 0);
973
+ --popover-foreground: oklch(0.228 0.013 107.4);
974
+ --primary: oklch(0.228 0.013 107.4);
975
+ --primary-foreground: oklch(0.988 0.003 106.5);
976
+ --secondary: oklch(0.966 0.005 106.5);
977
+ --secondary-foreground: oklch(0.228 0.013 107.4);
978
+ --muted: oklch(0.966 0.005 106.5);
979
+ --muted-foreground: oklch(0.58 0.031 107.3);
980
+ --accent: oklch(0.966 0.005 106.5);
981
+ --accent-foreground: oklch(0.228 0.013 107.4);
982
+ --destructive: oklch(0.577 0.245 27.325);
983
+ --border: oklch(0.93 0.007 106.5);
984
+ --input: oklch(0.93 0.007 106.5);
985
+ --ring: oklch(0.737 0.021 106.9);
986
+ --chart-1: oklch(0.646 0.222 41.116);
987
+ --chart-2: oklch(0.6 0.118 184.704);
988
+ --chart-3: oklch(0.398 0.07 227.392);
989
+ --chart-4: oklch(0.828 0.189 84.429);
990
+ --chart-5: oklch(0.769 0.188 70.08);
991
+ --sidebar: oklch(0.988 0.003 106.5);
992
+ --sidebar-foreground: oklch(0.228 0.013 107.4);
993
+ --sidebar-primary: oklch(0.228 0.013 107.4);
994
+ --sidebar-primary-foreground: oklch(0.988 0.003 106.5);
995
+ --sidebar-accent: oklch(0.966 0.005 106.5);
996
+ --sidebar-accent-foreground: oklch(0.228 0.013 107.4);
997
+ --sidebar-border: oklch(0.93 0.007 106.5);
998
+ --sidebar-ring: oklch(0.737 0.021 106.9);
999
+ }
1000
+
1001
+ .theme-olive.dark {
1002
+ --background: oklch(0.153 0.006 107.1);
1003
+ --foreground: oklch(0.988 0.003 106.5);
1004
+ --card: oklch(0.228 0.013 107.4);
1005
+ --card-foreground: oklch(0.988 0.003 106.5);
1006
+ --popover: oklch(0.228 0.013 107.4);
1007
+ --popover-foreground: oklch(0.988 0.003 106.5);
1008
+ --primary: oklch(0.93 0.007 106.5);
1009
+ --primary-foreground: oklch(0.228 0.013 107.4);
1010
+ --secondary: oklch(0.286 0.016 107.4);
1011
+ --secondary-foreground: oklch(0.988 0.003 106.5);
1012
+ --muted: oklch(0.286 0.016 107.4);
1013
+ --muted-foreground: oklch(0.737 0.021 106.9);
1014
+ --accent: oklch(0.286 0.016 107.4);
1015
+ --accent-foreground: oklch(0.988 0.003 106.5);
1016
+ --destructive: oklch(0.704 0.191 22.216);
1017
+ --border: oklch(1 0 0 / 10%);
1018
+ --input: oklch(1 0 0 / 15%);
1019
+ --ring: oklch(0.58 0.031 107.3);
1020
+ --chart-1: oklch(0.488 0.243 264.376);
1021
+ --chart-2: oklch(0.696 0.17 162.48);
1022
+ --chart-3: oklch(0.769 0.188 70.08);
1023
+ --chart-4: oklch(0.627 0.265 303.9);
1024
+ --chart-5: oklch(0.645 0.246 16.439);
1025
+ --sidebar: oklch(0.228 0.013 107.4);
1026
+ --sidebar-foreground: oklch(0.988 0.003 106.5);
1027
+ --sidebar-primary: oklch(0.93 0.007 106.5);
1028
+ --sidebar-primary-foreground: oklch(0.228 0.013 107.4);
1029
+ --sidebar-accent: oklch(0.286 0.016 107.4);
1030
+ --sidebar-accent-foreground: oklch(0.988 0.003 106.5);
1031
+ --sidebar-border: oklch(1 0 0 / 10%);
1032
+ --sidebar-ring: oklch(0.58 0.031 107.3);
1033
+ }
1034
+
1035
+ .theme-mist {
1036
+ --radius: 0.625rem;
1037
+ --background: oklch(1 0 0);
1038
+ --foreground: oklch(0.218 0.008 223.9);
1039
+ --card: oklch(1 0 0);
1040
+ --card-foreground: oklch(0.218 0.008 223.9);
1041
+ --popover: oklch(1 0 0);
1042
+ --popover-foreground: oklch(0.218 0.008 223.9);
1043
+ --primary: oklch(0.218 0.008 223.9);
1044
+ --primary-foreground: oklch(0.987 0.002 197.1);
1045
+ --secondary: oklch(0.963 0.002 197.1);
1046
+ --secondary-foreground: oklch(0.218 0.008 223.9);
1047
+ --muted: oklch(0.963 0.002 197.1);
1048
+ --muted-foreground: oklch(0.56 0.021 213.5);
1049
+ --accent: oklch(0.963 0.002 197.1);
1050
+ --accent-foreground: oklch(0.218 0.008 223.9);
1051
+ --destructive: oklch(0.577 0.245 27.325);
1052
+ --border: oklch(0.925 0.005 214.3);
1053
+ --input: oklch(0.925 0.005 214.3);
1054
+ --ring: oklch(0.723 0.014 214.4);
1055
+ --chart-1: oklch(0.646 0.222 41.116);
1056
+ --chart-2: oklch(0.6 0.118 184.704);
1057
+ --chart-3: oklch(0.398 0.07 227.392);
1058
+ --chart-4: oklch(0.828 0.189 84.429);
1059
+ --chart-5: oklch(0.769 0.188 70.08);
1060
+ --sidebar: oklch(0.987 0.002 197.1);
1061
+ --sidebar-foreground: oklch(0.218 0.008 223.9);
1062
+ --sidebar-primary: oklch(0.218 0.008 223.9);
1063
+ --sidebar-primary-foreground: oklch(0.987 0.002 197.1);
1064
+ --sidebar-accent: oklch(0.963 0.002 197.1);
1065
+ --sidebar-accent-foreground: oklch(0.218 0.008 223.9);
1066
+ --sidebar-border: oklch(0.925 0.005 214.3);
1067
+ --sidebar-ring: oklch(0.723 0.014 214.4);
1068
+ }
1069
+
1070
+ .theme-mist.dark {
1071
+ --background: oklch(0.148 0.004 228.8);
1072
+ --foreground: oklch(0.987 0.002 197.1);
1073
+ --card: oklch(0.218 0.008 223.9);
1074
+ --card-foreground: oklch(0.987 0.002 197.1);
1075
+ --popover: oklch(0.218 0.008 223.9);
1076
+ --popover-foreground: oklch(0.987 0.002 197.1);
1077
+ --primary: oklch(0.925 0.005 214.3);
1078
+ --primary-foreground: oklch(0.218 0.008 223.9);
1079
+ --secondary: oklch(0.275 0.011 216.9);
1080
+ --secondary-foreground: oklch(0.987 0.002 197.1);
1081
+ --muted: oklch(0.275 0.011 216.9);
1082
+ --muted-foreground: oklch(0.723 0.014 214.4);
1083
+ --accent: oklch(0.275 0.011 216.9);
1084
+ --accent-foreground: oklch(0.987 0.002 197.1);
1085
+ --destructive: oklch(0.704 0.191 22.216);
1086
+ --border: oklch(1 0 0 / 10%);
1087
+ --input: oklch(1 0 0 / 15%);
1088
+ --ring: oklch(0.56 0.021 213.5);
1089
+ --chart-1: oklch(0.488 0.243 264.376);
1090
+ --chart-2: oklch(0.696 0.17 162.48);
1091
+ --chart-3: oklch(0.769 0.188 70.08);
1092
+ --chart-4: oklch(0.627 0.265 303.9);
1093
+ --chart-5: oklch(0.645 0.246 16.439);
1094
+ --sidebar: oklch(0.218 0.008 223.9);
1095
+ --sidebar-foreground: oklch(0.987 0.002 197.1);
1096
+ --sidebar-primary: oklch(0.925 0.005 214.3);
1097
+ --sidebar-primary-foreground: oklch(0.218 0.008 223.9);
1098
+ --sidebar-accent: oklch(0.275 0.011 216.9);
1099
+ --sidebar-accent-foreground: oklch(0.987 0.002 197.1);
1100
+ --sidebar-border: oklch(1 0 0 / 10%);
1101
+ --sidebar-ring: oklch(0.56 0.021 213.5);
1102
+ }
1103
+
1104
+ .theme-taupe {
1105
+ --radius: 0.625rem;
1106
+ --background: oklch(1 0 0);
1107
+ --foreground: oklch(0.214 0.009 43.1);
1108
+ --card: oklch(1 0 0);
1109
+ --card-foreground: oklch(0.214 0.009 43.1);
1110
+ --popover: oklch(1 0 0);
1111
+ --popover-foreground: oklch(0.214 0.009 43.1);
1112
+ --primary: oklch(0.214 0.009 43.1);
1113
+ --primary-foreground: oklch(0.986 0.002 67.8);
1114
+ --secondary: oklch(0.96 0.002 17.2);
1115
+ --secondary-foreground: oklch(0.214 0.009 43.1);
1116
+ --muted: oklch(0.96 0.002 17.2);
1117
+ --muted-foreground: oklch(0.547 0.021 43.1);
1118
+ --accent: oklch(0.96 0.002 17.2);
1119
+ --accent-foreground: oklch(0.214 0.009 43.1);
1120
+ --destructive: oklch(0.577 0.245 27.325);
1121
+ --border: oklch(0.922 0.005 34.3);
1122
+ --input: oklch(0.922 0.005 34.3);
1123
+ --ring: oklch(0.714 0.014 41.2);
1124
+ --chart-1: oklch(0.646 0.222 41.116);
1125
+ --chart-2: oklch(0.6 0.118 184.704);
1126
+ --chart-3: oklch(0.398 0.07 227.392);
1127
+ --chart-4: oklch(0.828 0.189 84.429);
1128
+ --chart-5: oklch(0.769 0.188 70.08);
1129
+ --sidebar: oklch(0.986 0.002 67.8);
1130
+ --sidebar-foreground: oklch(0.214 0.009 43.1);
1131
+ --sidebar-primary: oklch(0.214 0.009 43.1);
1132
+ --sidebar-primary-foreground: oklch(0.986 0.002 67.8);
1133
+ --sidebar-accent: oklch(0.96 0.002 17.2);
1134
+ --sidebar-accent-foreground: oklch(0.214 0.009 43.1);
1135
+ --sidebar-border: oklch(0.922 0.005 34.3);
1136
+ --sidebar-ring: oklch(0.714 0.014 41.2);
1137
+ }
1138
+
1139
+ .theme-taupe.dark {
1140
+ --background: oklch(0.147 0.004 49.3);
1141
+ --foreground: oklch(0.986 0.002 67.8);
1142
+ --card: oklch(0.214 0.009 43.1);
1143
+ --card-foreground: oklch(0.986 0.002 67.8);
1144
+ --popover: oklch(0.214 0.009 43.1);
1145
+ --popover-foreground: oklch(0.986 0.002 67.8);
1146
+ --primary: oklch(0.922 0.005 34.3);
1147
+ --primary-foreground: oklch(0.214 0.009 43.1);
1148
+ --secondary: oklch(0.268 0.011 36.5);
1149
+ --secondary-foreground: oklch(0.986 0.002 67.8);
1150
+ --muted: oklch(0.268 0.011 36.5);
1151
+ --muted-foreground: oklch(0.714 0.014 41.2);
1152
+ --accent: oklch(0.268 0.011 36.5);
1153
+ --accent-foreground: oklch(0.986 0.002 67.8);
1154
+ --destructive: oklch(0.704 0.191 22.216);
1155
+ --border: oklch(1 0 0 / 10%);
1156
+ --input: oklch(1 0 0 / 15%);
1157
+ --ring: oklch(0.547 0.021 43.1);
1158
+ --chart-1: oklch(0.488 0.243 264.376);
1159
+ --chart-2: oklch(0.696 0.17 162.48);
1160
+ --chart-3: oklch(0.769 0.188 70.08);
1161
+ --chart-4: oklch(0.627 0.265 303.9);
1162
+ --chart-5: oklch(0.645 0.246 16.439);
1163
+ --sidebar: oklch(0.214 0.009 43.1);
1164
+ --sidebar-foreground: oklch(0.986 0.002 67.8);
1165
+ --sidebar-primary: oklch(0.922 0.005 34.3);
1166
+ --sidebar-primary-foreground: oklch(0.214 0.009 43.1);
1167
+ --sidebar-accent: oklch(0.268 0.011 36.5);
1168
+ --sidebar-accent-foreground: oklch(0.986 0.002 67.8);
1169
+ --sidebar-border: oklch(1 0 0 / 10%);
1170
+ --sidebar-ring: oklch(0.547 0.021 43.1);
1171
+ }