@ziioapp/ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +47 -0
  3. package/THIRD_PARTY_NOTICES.md +3 -0
  4. package/dist/base.css +2 -0
  5. package/dist/hooks/use-mobile.d.ts +1 -0
  6. package/dist/hooks/use-mobile.js +15 -0
  7. package/dist/lib/official-themes.d.ts +76 -0
  8. package/dist/lib/official-themes.js +102 -0
  9. package/dist/lib/utils.d.ts +2 -0
  10. package/dist/lib/utils.js +5 -0
  11. package/dist/registry/registry.json +427 -0
  12. package/dist/registry/ziio-ui.json +421 -0
  13. package/dist/shadcn/components/accordion.d.ts +6 -0
  14. package/dist/shadcn/components/accordion.js +18 -0
  15. package/dist/shadcn/components/alert-dialog.d.ts +18 -0
  16. package/dist/shadcn/components/alert-dialog.js +44 -0
  17. package/dist/shadcn/components/alert.d.ts +10 -0
  18. package/dist/shadcn/components/alert.js +29 -0
  19. package/dist/shadcn/components/aspect-ratio.d.ts +4 -0
  20. package/dist/shadcn/components/aspect-ratio.js +9 -0
  21. package/dist/shadcn/components/attachment.d.ts +23 -0
  22. package/dist/shadcn/components/attachment.js +70 -0
  23. package/dist/shadcn/components/avatar.d.ts +11 -0
  24. package/dist/shadcn/components/avatar.js +25 -0
  25. package/dist/shadcn/components/badge.d.ts +7 -0
  26. package/dist/shadcn/components/badge.js +34 -0
  27. package/dist/shadcn/components/breadcrumb.d.ts +10 -0
  28. package/dist/shadcn/components/breadcrumb.js +38 -0
  29. package/dist/shadcn/components/bubble.d.ts +16 -0
  30. package/dist/shadcn/components/bubble.js +61 -0
  31. package/dist/shadcn/components/button-group.d.ts +10 -0
  32. package/dist/shadcn/components/button-group.js +37 -0
  33. package/dist/shadcn/components/button.d.ts +8 -0
  34. package/dist/shadcn/components/button.js +35 -0
  35. package/dist/shadcn/components/calendar.d.ts +10 -0
  36. package/dist/shadcn/components/calendar.js +77 -0
  37. package/dist/shadcn/components/card.d.ts +11 -0
  38. package/dist/shadcn/components/card.js +26 -0
  39. package/dist/shadcn/components/carousel.d.ts +28 -0
  40. package/dist/shadcn/components/carousel.js +92 -0
  41. package/dist/shadcn/components/chart.d.ts +44 -0
  42. package/dist/shadcn/components/chart.js +133 -0
  43. package/dist/shadcn/components/checkbox.d.ts +3 -0
  44. package/dist/shadcn/components/checkbox.js +10 -0
  45. package/dist/shadcn/components/collapsible.d.ts +5 -0
  46. package/dist/shadcn/components/collapsible.js +14 -0
  47. package/dist/shadcn/components/combobox.d.ts +24 -0
  48. package/dist/shadcn/components/combobox.js +59 -0
  49. package/dist/shadcn/components/command.d.ts +19 -0
  50. package/dist/shadcn/components/command.js +37 -0
  51. package/dist/shadcn/components/context-menu.d.ts +29 -0
  52. package/dist/shadcn/components/context-menu.js +53 -0
  53. package/dist/shadcn/components/dialog.d.ts +17 -0
  54. package/dist/shadcn/components/dialog.js +39 -0
  55. package/dist/shadcn/components/direction.d.ts +1 -0
  56. package/dist/shadcn/components/direction.js +3 -0
  57. package/dist/shadcn/components/drawer.d.ts +16 -0
  58. package/dist/shadcn/components/drawer.js +76 -0
  59. package/dist/shadcn/components/dropdown-menu.d.ts +29 -0
  60. package/dist/shadcn/components/dropdown-menu.js +53 -0
  61. package/dist/shadcn/components/empty.d.ts +11 -0
  62. package/dist/shadcn/components/empty.js +34 -0
  63. package/dist/shadcn/components/field.d.ts +24 -0
  64. package/dist/shadcn/components/field.js +69 -0
  65. package/dist/shadcn/components/hover-card.d.ts +5 -0
  66. package/dist/shadcn/components/hover-card.js +15 -0
  67. package/dist/shadcn/components/input-group.d.ts +18 -0
  68. package/dist/shadcn/components/input-group.js +59 -0
  69. package/dist/shadcn/components/input-otp.d.ts +11 -0
  70. package/dist/shadcn/components/input-otp.js +22 -0
  71. package/dist/shadcn/components/input.d.ts +3 -0
  72. package/dist/shadcn/components/input.js +9 -0
  73. package/dist/shadcn/components/item.d.ts +22 -0
  74. package/dist/shadcn/components/item.js +80 -0
  75. package/dist/shadcn/components/kbd.d.ts +3 -0
  76. package/dist/shadcn/components/kbd.js +10 -0
  77. package/dist/shadcn/components/label.d.ts +3 -0
  78. package/dist/shadcn/components/label.js +9 -0
  79. package/dist/shadcn/components/marker.d.ts +10 -0
  80. package/dist/shadcn/components/marker.js +36 -0
  81. package/dist/shadcn/components/menubar.d.ts +29 -0
  82. package/dist/shadcn/components/menubar.js +58 -0
  83. package/dist/shadcn/components/message-scroller.d.ts +10 -0
  84. package/dist/shadcn/components/message-scroller.js +27 -0
  85. package/dist/shadcn/components/message.d.ts +10 -0
  86. package/dist/shadcn/components/message.js +23 -0
  87. package/dist/shadcn/components/native-select.d.ts +8 -0
  88. package/dist/shadcn/components/native-select.js +15 -0
  89. package/dist/shadcn/components/navigation-menu.d.ts +11 -0
  90. package/dist/shadcn/components/navigation-menu.js +32 -0
  91. package/dist/shadcn/components/pagination.d.ts +17 -0
  92. package/dist/shadcn/components/pagination.js +28 -0
  93. package/dist/shadcn/components/popover.d.ts +9 -0
  94. package/dist/shadcn/components/popover.js +25 -0
  95. package/dist/shadcn/components/progress.d.ts +7 -0
  96. package/dist/shadcn/components/progress.js +21 -0
  97. package/dist/shadcn/components/questionnaire.d.ts +19 -0
  98. package/dist/shadcn/components/questionnaire.js +54 -0
  99. package/dist/shadcn/components/radio-group.d.ts +5 -0
  100. package/dist/shadcn/components/radio-group.js +13 -0
  101. package/dist/shadcn/components/resizable.d.ts +7 -0
  102. package/dist/shadcn/components/resizable.js +15 -0
  103. package/dist/shadcn/components/scroll-area.d.ts +4 -0
  104. package/dist/shadcn/components/scroll-area.js +12 -0
  105. package/dist/shadcn/components/select.d.ts +15 -0
  106. package/dist/shadcn/components/select.js +36 -0
  107. package/dist/shadcn/components/separator.d.ts +3 -0
  108. package/dist/shadcn/components/separator.js +9 -0
  109. package/dist/shadcn/components/sheet.d.ts +14 -0
  110. package/dist/shadcn/components/sheet.js +39 -0
  111. package/dist/shadcn/components/sidebar.d.ts +63 -0
  112. package/dist/shadcn/components/sidebar.js +257 -0
  113. package/dist/shadcn/components/skeleton.d.ts +2 -0
  114. package/dist/shadcn/components/skeleton.js +7 -0
  115. package/dist/shadcn/components/slider.d.ts +3 -0
  116. package/dist/shadcn/components/slider.js +13 -0
  117. package/dist/shadcn/components/sonner.d.ts +3 -0
  118. package/dist/shadcn/components/sonner.js +26 -0
  119. package/dist/shadcn/components/spinner.d.ts +2 -0
  120. package/dist/shadcn/components/spinner.js +8 -0
  121. package/dist/shadcn/components/switch.d.ts +5 -0
  122. package/dist/shadcn/components/switch.js +9 -0
  123. package/dist/shadcn/components/table.d.ts +10 -0
  124. package/dist/shadcn/components/table.js +30 -0
  125. package/dist/shadcn/components/tabs.d.ts +10 -0
  126. package/dist/shadcn/components/tabs.js +30 -0
  127. package/dist/shadcn/components/textarea.d.ts +3 -0
  128. package/dist/shadcn/components/textarea.js +8 -0
  129. package/dist/shadcn/components/toast.d.ts +15 -0
  130. package/dist/shadcn/components/toast.js +68 -0
  131. package/dist/shadcn/components/toggle-group.d.ts +10 -0
  132. package/dist/shadcn/components/toggle-group.js +26 -0
  133. package/dist/shadcn/components/toggle.d.ts +8 -0
  134. package/dist/shadcn/components/toggle.js +27 -0
  135. package/dist/shadcn/components/tooltip.d.ts +6 -0
  136. package/dist/shadcn/components/tooltip.js +18 -0
  137. package/dist/shadcn/hooks/use-mobile.d.ts +1 -0
  138. package/dist/shadcn/hooks/use-mobile.js +16 -0
  139. package/dist/size-report.json +80 -0
  140. package/dist/styles/app-loading.css +40 -0
  141. package/dist/styles/bases/base-mauve.css +71 -0
  142. package/dist/styles/bases/base-mist.css +71 -0
  143. package/dist/styles/bases/base-neutral.css +71 -0
  144. package/dist/styles/bases/base-olive.css +71 -0
  145. package/dist/styles/bases/base-stone.css +71 -0
  146. package/dist/styles/bases/base-taupe.css +71 -0
  147. package/dist/styles/bases/base-zinc.css +71 -0
  148. package/dist/styles/chart.css +18 -0
  149. package/dist/styles/charts/chart-amber.css +18 -0
  150. package/dist/styles/charts/chart-blue.css +18 -0
  151. package/dist/styles/charts/chart-rose.css +18 -0
  152. package/dist/styles/charts/chart-teal.css +18 -0
  153. package/dist/styles/compiled/luma.css +2 -0
  154. package/dist/styles/compiled/lyra.css +2 -0
  155. package/dist/styles/compiled/maia.css +2 -0
  156. package/dist/styles/compiled/mira.css +2 -0
  157. package/dist/styles/compiled/nova.css +2 -0
  158. package/dist/styles/compiled/rhea.css +2 -0
  159. package/dist/styles/compiled/sera.css +2 -0
  160. package/dist/styles/compiled/vega.css +2 -0
  161. package/dist/styles/index.css +52 -0
  162. package/dist/styles/official/bases/base-mauve.css +67 -0
  163. package/dist/styles/official/bases/base-mist.css +67 -0
  164. package/dist/styles/official/bases/base-neutral.css +67 -0
  165. package/dist/styles/official/bases/base-olive.css +67 -0
  166. package/dist/styles/official/bases/base-stone.css +67 -0
  167. package/dist/styles/official/bases/base-taupe.css +67 -0
  168. package/dist/styles/official/bases/base-zinc.css +67 -0
  169. package/dist/styles/official/charts/chart-amber.css +14 -0
  170. package/dist/styles/official/charts/chart-blue.css +14 -0
  171. package/dist/styles/official/charts/chart-cyan.css +14 -0
  172. package/dist/styles/official/charts/chart-emerald.css +14 -0
  173. package/dist/styles/official/charts/chart-fuchsia.css +14 -0
  174. package/dist/styles/official/charts/chart-green.css +14 -0
  175. package/dist/styles/official/charts/chart-indigo.css +14 -0
  176. package/dist/styles/official/charts/chart-lime.css +14 -0
  177. package/dist/styles/official/charts/chart-mauve.css +14 -0
  178. package/dist/styles/official/charts/chart-mist.css +14 -0
  179. package/dist/styles/official/charts/chart-neutral.css +14 -0
  180. package/dist/styles/official/charts/chart-olive.css +14 -0
  181. package/dist/styles/official/charts/chart-orange.css +14 -0
  182. package/dist/styles/official/charts/chart-pink.css +14 -0
  183. package/dist/styles/official/charts/chart-purple.css +14 -0
  184. package/dist/styles/official/charts/chart-red.css +14 -0
  185. package/dist/styles/official/charts/chart-rose.css +14 -0
  186. package/dist/styles/official/charts/chart-sky.css +14 -0
  187. package/dist/styles/official/charts/chart-stone.css +14 -0
  188. package/dist/styles/official/charts/chart-taupe.css +14 -0
  189. package/dist/styles/official/charts/chart-teal.css +14 -0
  190. package/dist/styles/official/charts/chart-violet.css +14 -0
  191. package/dist/styles/official/charts/chart-yellow.css +14 -0
  192. package/dist/styles/official/charts/chart-zinc.css +14 -0
  193. package/dist/styles/official/themes/theme-amber.css +26 -0
  194. package/dist/styles/official/themes/theme-blue.css +26 -0
  195. package/dist/styles/official/themes/theme-cyan.css +26 -0
  196. package/dist/styles/official/themes/theme-emerald.css +26 -0
  197. package/dist/styles/official/themes/theme-fuchsia.css +26 -0
  198. package/dist/styles/official/themes/theme-green.css +26 -0
  199. package/dist/styles/official/themes/theme-indigo.css +26 -0
  200. package/dist/styles/official/themes/theme-lime.css +26 -0
  201. package/dist/styles/official/themes/theme-mauve.css +67 -0
  202. package/dist/styles/official/themes/theme-mist.css +67 -0
  203. package/dist/styles/official/themes/theme-neutral.css +67 -0
  204. package/dist/styles/official/themes/theme-olive.css +67 -0
  205. package/dist/styles/official/themes/theme-orange.css +26 -0
  206. package/dist/styles/official/themes/theme-pink.css +26 -0
  207. package/dist/styles/official/themes/theme-purple.css +26 -0
  208. package/dist/styles/official/themes/theme-red.css +26 -0
  209. package/dist/styles/official/themes/theme-rose.css +27 -0
  210. package/dist/styles/official/themes/theme-sky.css +26 -0
  211. package/dist/styles/official/themes/theme-stone.css +67 -0
  212. package/dist/styles/official/themes/theme-taupe.css +67 -0
  213. package/dist/styles/official/themes/theme-teal.css +26 -0
  214. package/dist/styles/official/themes/theme-violet.css +26 -0
  215. package/dist/styles/official/themes/theme-yellow.css +26 -0
  216. package/dist/styles/official/themes/theme-zinc.css +67 -0
  217. package/dist/styles/runtime.css +6 -0
  218. package/dist/styles/shadcn-utilities.css +629 -0
  219. package/dist/styles/shadcn.css +169 -0
  220. package/dist/styles/source.css +1 -0
  221. package/dist/styles/styles/all.css +8 -0
  222. package/dist/styles/styles/style-luma.css +1744 -0
  223. package/dist/styles/styles/style-lyra.css +1723 -0
  224. package/dist/styles/styles/style-maia.css +1745 -0
  225. package/dist/styles/styles/style-mira.css +1750 -0
  226. package/dist/styles/styles/style-nova.css +1748 -0
  227. package/dist/styles/styles/style-rhea.css +1744 -0
  228. package/dist/styles/styles/style-sera.css +1735 -0
  229. package/dist/styles/styles/style-vega.css +1748 -0
  230. package/dist/styles/theme-base.css +102 -0
  231. package/dist/styles/themes/theme-atmosphere-coffee.css +72 -0
  232. package/dist/styles/themes/theme-atmosphere-halloween.css +72 -0
  233. package/dist/styles/themes/theme-atmosphere-literary.css +72 -0
  234. package/dist/styles/themes/theme-atmosphere-sakura.css +72 -0
  235. package/dist/styles/themes/theme-blue.css +20 -0
  236. package/dist/styles/themes/theme-indigo.css +20 -0
  237. package/dist/styles/themes/theme-morandi-dust.css +72 -0
  238. package/dist/styles/themes/theme-morandi-fog.css +72 -0
  239. package/dist/styles/themes/theme-morandi-sage.css +72 -0
  240. package/dist/styles/themes/theme-rose.css +20 -0
  241. package/dist/styles.css +2 -0
  242. package/package.json +108 -0
  243. package/upstream/components.json +870 -0
  244. package/upstream/lock.json +101 -0
@@ -0,0 +1,27 @@
1
+ // Generated from locked shadcn upstream; edit scripts/sync-upstream.mjs, not this file.
2
+ "use client";
3
+ import { jsx as _jsx } from "react/jsx-runtime";
4
+ import { Toggle as TogglePrimitive } from "@base-ui/react/toggle";
5
+ import { cva } from "class-variance-authority";
6
+ import { cn } from "@ziioapp/ui/lib/utils";
7
+ const toggleVariants = cva("cn-toggle group/toggle inline-flex items-center justify-center whitespace-nowrap outline-none hover:bg-muted focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0", {
8
+ variants: {
9
+ variant: {
10
+ default: "cn-toggle-variant-default",
11
+ outline: "cn-toggle-variant-outline",
12
+ },
13
+ size: {
14
+ default: "cn-toggle-size-default",
15
+ sm: "cn-toggle-size-sm",
16
+ lg: "cn-toggle-size-lg",
17
+ },
18
+ },
19
+ defaultVariants: {
20
+ variant: "default",
21
+ size: "default",
22
+ },
23
+ });
24
+ function Toggle({ className, variant = "default", size = "default", ...props }) {
25
+ return (_jsx(TogglePrimitive, { "data-slot": "toggle", className: cn(toggleVariants({ variant, size, className })), ...props }));
26
+ }
27
+ export { Toggle, toggleVariants };
@@ -0,0 +1,6 @@
1
+ import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip";
2
+ declare function TooltipProvider({ delay, ...props }: TooltipPrimitive.Provider.Props): import("react/jsx-runtime").JSX.Element;
3
+ declare function Tooltip({ ...props }: TooltipPrimitive.Root.Props): import("react/jsx-runtime").JSX.Element;
4
+ declare function TooltipTrigger({ ...props }: TooltipPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
5
+ declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: TooltipPrimitive.Popup.Props & Pick<TooltipPrimitive.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): import("react/jsx-runtime").JSX.Element;
6
+ export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
@@ -0,0 +1,18 @@
1
+ // Generated from locked shadcn upstream; edit scripts/sync-upstream.mjs, not this file.
2
+ "use client";
3
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
4
+ import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip";
5
+ import { cn } from "@ziioapp/ui/lib/utils";
6
+ function TooltipProvider({ delay = 0, ...props }) {
7
+ return (_jsx(TooltipPrimitive.Provider, { "data-slot": "tooltip-provider", delay: delay, ...props }));
8
+ }
9
+ function Tooltip({ ...props }) {
10
+ return _jsx(TooltipPrimitive.Root, { "data-slot": "tooltip", ...props });
11
+ }
12
+ function TooltipTrigger({ ...props }) {
13
+ return _jsx(TooltipPrimitive.Trigger, { "data-slot": "tooltip-trigger", ...props });
14
+ }
15
+ function TooltipContent({ className, side = "top", sideOffset = 4, align = "center", alignOffset = 0, children, ...props }) {
16
+ return (_jsx(TooltipPrimitive.Portal, { children: _jsx(TooltipPrimitive.Positioner, { align: align, alignOffset: alignOffset, side: side, sideOffset: sideOffset, className: "isolate z-50", children: _jsxs(TooltipPrimitive.Popup, { "data-slot": "tooltip-content", className: cn("cn-tooltip-content cn-tooltip-content-logical z-50 w-fit max-w-xs origin-(--transform-origin) bg-foreground text-background", className), ...props, children: [children, _jsx(TooltipPrimitive.Arrow, { className: "cn-tooltip-arrow cn-tooltip-arrow-logical z-50 bg-foreground fill-foreground data-[side=bottom]:top-1 data-[side=left]:top-1/2! data-[side=left]:-right-1 data-[side=left]:-translate-y-1/2 data-[side=right]:top-1/2! data-[side=right]:-left-1 data-[side=right]:-translate-y-1/2 data-[side=top]:-bottom-2.5" })] }) }) }));
17
+ }
18
+ export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
@@ -0,0 +1 @@
1
+ export declare function useIsMobile(): boolean;
@@ -0,0 +1,16 @@
1
+ // Generated from locked shadcn upstream; edit scripts/sync-upstream.mjs, not this file.
2
+ import * as React from "react";
3
+ const MOBILE_BREAKPOINT = 768;
4
+ export function useIsMobile() {
5
+ const [isMobile, setIsMobile] = React.useState(undefined);
6
+ React.useEffect(() => {
7
+ const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
8
+ const onChange = () => {
9
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
10
+ };
11
+ mql.addEventListener("change", onChange);
12
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
13
+ return () => mql.removeEventListener("change", onChange);
14
+ }, []);
15
+ return !!isMobile;
16
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "styles": [
3
+ "vega",
4
+ "nova",
5
+ "maia",
6
+ "lyra",
7
+ "mira",
8
+ "luma",
9
+ "sera",
10
+ "rhea"
11
+ ],
12
+ "colors": [
13
+ "neutral",
14
+ "stone",
15
+ "zinc",
16
+ "mauve",
17
+ "olive",
18
+ "mist",
19
+ "taupe",
20
+ "amber",
21
+ "blue",
22
+ "cyan",
23
+ "emerald",
24
+ "fuchsia",
25
+ "green",
26
+ "indigo",
27
+ "lime",
28
+ "orange",
29
+ "pink",
30
+ "purple",
31
+ "red",
32
+ "rose",
33
+ "sky",
34
+ "teal",
35
+ "violet",
36
+ "yellow"
37
+ ],
38
+ "sizes": {
39
+ "styles.css": {
40
+ "bytes": 2081999,
41
+ "gzipBytes": 166083
42
+ },
43
+ "base.css": {
44
+ "bytes": 147111,
45
+ "gzipBytes": 20998
46
+ },
47
+ "styles/compiled/vega.css": {
48
+ "bytes": 259629,
49
+ "gzipBytes": 20737
50
+ },
51
+ "styles/compiled/nova.css": {
52
+ "bytes": 261459,
53
+ "gzipBytes": 20790
54
+ },
55
+ "styles/compiled/maia.css": {
56
+ "bytes": 254714,
57
+ "gzipBytes": 20527
58
+ },
59
+ "styles/compiled/lyra.css": {
60
+ "bytes": 250458,
61
+ "gzipBytes": 19781
62
+ },
63
+ "styles/compiled/mira.css": {
64
+ "bytes": 254050,
65
+ "gzipBytes": 20378
66
+ },
67
+ "styles/compiled/luma.css": {
68
+ "bytes": 261821,
69
+ "gzipBytes": 20047
70
+ },
71
+ "styles/compiled/sera.css": {
72
+ "bytes": 246391,
73
+ "gzipBytes": 19909
74
+ },
75
+ "styles/compiled/rhea.css": {
76
+ "bytes": 261387,
77
+ "gzipBytes": 20074
78
+ }
79
+ }
80
+ }
@@ -0,0 +1,40 @@
1
+ .app-loading {
2
+ position: fixed;
3
+ inset: 0 0 0 0;
4
+ z-index: 500;
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
8
+ background-color: #eee;
9
+ }
10
+
11
+ .app-loading-text {
12
+ font-size: 0.875rem;
13
+ color: #222;
14
+ }
15
+
16
+ .dark .app-loading {
17
+ background-color: #222;
18
+ }
19
+
20
+ .dark .app-loading-text {
21
+ color: #eee;
22
+ }
23
+
24
+ @media (prefers-color-scheme: dark) {
25
+ .app-loading {
26
+ background-color: #222;
27
+ }
28
+
29
+ .app-loading-text {
30
+ color: #eee;
31
+ }
32
+ }
33
+
34
+ .electron.app-loading {
35
+ background-color: #222;
36
+ }
37
+
38
+ .electron.app-loading .app-loading-text {
39
+ color: #eee;
40
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-mauve {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.145 0.008 326);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.145 0.008 326);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.145 0.008 326);
8
+ --primary: oklch(0.212 0.019 322.12);
9
+ --primary-foreground: oklch(0.985 0 0);
10
+ --secondary: oklch(0.96 0.003 325.6);
11
+ --secondary-foreground: oklch(0.212 0.019 322.12);
12
+ --muted: oklch(0.96 0.003 325.6);
13
+ --muted-foreground: oklch(0.542 0.034 322.5);
14
+ --accent: oklch(0.96 0.003 325.6);
15
+ --accent-foreground: oklch(0.212 0.019 322.12);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.922 0.005 325.62);
18
+ --input: oklch(0.922 0.005 325.62);
19
+ --ring: oklch(0.711 0.019 323.02);
20
+ --chart-1: oklch(0.865 0.012 325.68);
21
+ --chart-2: oklch(0.542 0.034 322.5);
22
+ --chart-3: oklch(0.435 0.029 321.78);
23
+ --chart-4: oklch(0.364 0.029 323.89);
24
+ --chart-5: oklch(0.263 0.024 320.12);
25
+ --radius: 0.625rem;
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.145 0.008 326);
28
+ --sidebar-primary: oklch(0.212 0.019 322.12);
29
+ --sidebar-primary-foreground: oklch(0.985 0 0);
30
+ --sidebar-accent: oklch(0.96 0.003 325.6);
31
+ --sidebar-accent-foreground: oklch(0.212 0.019 322.12);
32
+ --sidebar-border: oklch(0.922 0.005 325.62);
33
+ --sidebar-ring: oklch(0.711 0.019 323.02);
34
+ }
35
+
36
+ .base-color-mauve.dark,
37
+ .dark.base-color-mauve,
38
+ .base-color-mauve .dark,
39
+ .dark .base-color-mauve {
40
+ --background: oklch(0.145 0.008 326);
41
+ --foreground: oklch(0.985 0 0);
42
+ --card: oklch(0.212 0.019 322.12);
43
+ --card-foreground: oklch(0.985 0 0);
44
+ --popover: oklch(0.212 0.019 322.12);
45
+ --popover-foreground: oklch(0.985 0 0);
46
+ --primary: oklch(0.922 0.005 325.62);
47
+ --primary-foreground: oklch(0.212 0.019 322.12);
48
+ --secondary: oklch(0.263 0.024 320.12);
49
+ --secondary-foreground: oklch(0.985 0 0);
50
+ --muted: oklch(0.263 0.024 320.12);
51
+ --muted-foreground: oklch(0.711 0.019 323.02);
52
+ --accent: oklch(0.263 0.024 320.12);
53
+ --accent-foreground: oklch(0.985 0 0);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.542 0.034 322.5);
58
+ --chart-1: oklch(0.865 0.012 325.68);
59
+ --chart-2: oklch(0.542 0.034 322.5);
60
+ --chart-3: oklch(0.435 0.029 321.78);
61
+ --chart-4: oklch(0.364 0.029 323.89);
62
+ --chart-5: oklch(0.263 0.024 320.12);
63
+ --sidebar: oklch(0.212 0.019 322.12);
64
+ --sidebar-foreground: oklch(0.985 0 0);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.985 0 0);
67
+ --sidebar-accent: oklch(0.263 0.024 320.12);
68
+ --sidebar-accent-foreground: oklch(0.985 0 0);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.542 0.034 322.5);
71
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-mist {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.148 0.004 228.8);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.148 0.004 228.8);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.148 0.004 228.8);
8
+ --primary: oklch(0.218 0.008 223.9);
9
+ --primary-foreground: oklch(0.987 0.002 197.1);
10
+ --secondary: oklch(0.963 0.002 197.1);
11
+ --secondary-foreground: oklch(0.218 0.008 223.9);
12
+ --muted: oklch(0.963 0.002 197.1);
13
+ --muted-foreground: oklch(0.56 0.021 213.5);
14
+ --accent: oklch(0.963 0.002 197.1);
15
+ --accent-foreground: oklch(0.218 0.008 223.9);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.925 0.005 214.3);
18
+ --input: oklch(0.925 0.005 214.3);
19
+ --ring: oklch(0.723 0.014 214.4);
20
+ --chart-1: oklch(0.872 0.007 219.6);
21
+ --chart-2: oklch(0.56 0.021 213.5);
22
+ --chart-3: oklch(0.45 0.017 213.2);
23
+ --chart-4: oklch(0.378 0.015 216);
24
+ --chart-5: oklch(0.275 0.011 216.9);
25
+ --radius: 0.625rem;
26
+ --sidebar: oklch(0.987 0.002 197.1);
27
+ --sidebar-foreground: oklch(0.148 0.004 228.8);
28
+ --sidebar-primary: oklch(0.218 0.008 223.9);
29
+ --sidebar-primary-foreground: oklch(0.987 0.002 197.1);
30
+ --sidebar-accent: oklch(0.963 0.002 197.1);
31
+ --sidebar-accent-foreground: oklch(0.218 0.008 223.9);
32
+ --sidebar-border: oklch(0.925 0.005 214.3);
33
+ --sidebar-ring: oklch(0.723 0.014 214.4);
34
+ }
35
+
36
+ .base-color-mist.dark,
37
+ .dark.base-color-mist,
38
+ .base-color-mist .dark,
39
+ .dark .base-color-mist {
40
+ --background: oklch(0.148 0.004 228.8);
41
+ --foreground: oklch(0.987 0.002 197.1);
42
+ --card: oklch(0.218 0.008 223.9);
43
+ --card-foreground: oklch(0.987 0.002 197.1);
44
+ --popover: oklch(0.218 0.008 223.9);
45
+ --popover-foreground: oklch(0.987 0.002 197.1);
46
+ --primary: oklch(0.925 0.005 214.3);
47
+ --primary-foreground: oklch(0.218 0.008 223.9);
48
+ --secondary: oklch(0.275 0.011 216.9);
49
+ --secondary-foreground: oklch(0.987 0.002 197.1);
50
+ --muted: oklch(0.275 0.011 216.9);
51
+ --muted-foreground: oklch(0.723 0.014 214.4);
52
+ --accent: oklch(0.275 0.011 216.9);
53
+ --accent-foreground: oklch(0.987 0.002 197.1);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.56 0.021 213.5);
58
+ --chart-1: oklch(0.872 0.007 219.6);
59
+ --chart-2: oklch(0.56 0.021 213.5);
60
+ --chart-3: oklch(0.45 0.017 213.2);
61
+ --chart-4: oklch(0.378 0.015 216);
62
+ --chart-5: oklch(0.275 0.011 216.9);
63
+ --sidebar: oklch(0.218 0.008 223.9);
64
+ --sidebar-foreground: oklch(0.987 0.002 197.1);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.987 0.002 197.1);
67
+ --sidebar-accent: oklch(0.275 0.011 216.9);
68
+ --sidebar-accent-foreground: oklch(0.987 0.002 197.1);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.56 0.021 213.5);
71
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-neutral {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.145 0 0);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.145 0 0);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.145 0 0);
8
+ --primary: oklch(0.205 0 0);
9
+ --primary-foreground: oklch(0.985 0 0);
10
+ --secondary: oklch(0.97 0 0);
11
+ --secondary-foreground: oklch(0.205 0 0);
12
+ --muted: oklch(0.97 0 0);
13
+ --muted-foreground: oklch(0.556 0 0);
14
+ --accent: oklch(0.97 0 0);
15
+ --accent-foreground: oklch(0.205 0 0);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.922 0 0);
18
+ --input: oklch(0.922 0 0);
19
+ --ring: oklch(0.708 0 0);
20
+ --chart-1: oklch(0.87 0 0);
21
+ --chart-2: oklch(0.556 0 0);
22
+ --chart-3: oklch(0.439 0 0);
23
+ --chart-4: oklch(0.371 0 0);
24
+ --chart-5: oklch(0.269 0 0);
25
+ --radius: 0.625rem;
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.145 0 0);
28
+ --sidebar-primary: oklch(0.205 0 0);
29
+ --sidebar-primary-foreground: oklch(0.985 0 0);
30
+ --sidebar-accent: oklch(0.97 0 0);
31
+ --sidebar-accent-foreground: oklch(0.205 0 0);
32
+ --sidebar-border: oklch(0.922 0 0);
33
+ --sidebar-ring: oklch(0.708 0 0);
34
+ }
35
+
36
+ .base-color-neutral.dark,
37
+ .dark.base-color-neutral,
38
+ .base-color-neutral .dark,
39
+ .dark .base-color-neutral {
40
+ --background: oklch(0.145 0 0);
41
+ --foreground: oklch(0.985 0 0);
42
+ --card: oklch(0.205 0 0);
43
+ --card-foreground: oklch(0.985 0 0);
44
+ --popover: oklch(0.205 0 0);
45
+ --popover-foreground: oklch(0.985 0 0);
46
+ --primary: oklch(0.922 0 0);
47
+ --primary-foreground: oklch(0.205 0 0);
48
+ --secondary: oklch(0.269 0 0);
49
+ --secondary-foreground: oklch(0.985 0 0);
50
+ --muted: oklch(0.269 0 0);
51
+ --muted-foreground: oklch(0.708 0 0);
52
+ --accent: oklch(0.269 0 0);
53
+ --accent-foreground: oklch(0.985 0 0);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.556 0 0);
58
+ --chart-1: oklch(0.87 0 0);
59
+ --chart-2: oklch(0.556 0 0);
60
+ --chart-3: oklch(0.439 0 0);
61
+ --chart-4: oklch(0.371 0 0);
62
+ --chart-5: oklch(0.269 0 0);
63
+ --sidebar: oklch(0.205 0 0);
64
+ --sidebar-foreground: oklch(0.985 0 0);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.985 0 0);
67
+ --sidebar-accent: oklch(0.269 0 0);
68
+ --sidebar-accent-foreground: oklch(0.985 0 0);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.556 0 0);
71
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-olive {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.153 0.006 107.1);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.153 0.006 107.1);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.153 0.006 107.1);
8
+ --primary: oklch(0.228 0.013 107.4);
9
+ --primary-foreground: oklch(0.988 0.003 106.5);
10
+ --secondary: oklch(0.966 0.005 106.5);
11
+ --secondary-foreground: oklch(0.228 0.013 107.4);
12
+ --muted: oklch(0.966 0.005 106.5);
13
+ --muted-foreground: oklch(0.58 0.031 107.3);
14
+ --accent: oklch(0.966 0.005 106.5);
15
+ --accent-foreground: oklch(0.228 0.013 107.4);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.93 0.007 106.5);
18
+ --input: oklch(0.93 0.007 106.5);
19
+ --ring: oklch(0.737 0.021 106.9);
20
+ --chart-1: oklch(0.88 0.011 106.6);
21
+ --chart-2: oklch(0.58 0.031 107.3);
22
+ --chart-3: oklch(0.466 0.025 107.3);
23
+ --chart-4: oklch(0.394 0.023 107.4);
24
+ --chart-5: oklch(0.286 0.016 107.4);
25
+ --radius: 0.625rem;
26
+ --sidebar: oklch(0.988 0.003 106.5);
27
+ --sidebar-foreground: oklch(0.153 0.006 107.1);
28
+ --sidebar-primary: oklch(0.228 0.013 107.4);
29
+ --sidebar-primary-foreground: oklch(0.988 0.003 106.5);
30
+ --sidebar-accent: oklch(0.966 0.005 106.5);
31
+ --sidebar-accent-foreground: oklch(0.228 0.013 107.4);
32
+ --sidebar-border: oklch(0.93 0.007 106.5);
33
+ --sidebar-ring: oklch(0.737 0.021 106.9);
34
+ }
35
+
36
+ .base-color-olive.dark,
37
+ .dark.base-color-olive,
38
+ .base-color-olive .dark,
39
+ .dark .base-color-olive {
40
+ --background: oklch(0.153 0.006 107.1);
41
+ --foreground: oklch(0.988 0.003 106.5);
42
+ --card: oklch(0.228 0.013 107.4);
43
+ --card-foreground: oklch(0.988 0.003 106.5);
44
+ --popover: oklch(0.228 0.013 107.4);
45
+ --popover-foreground: oklch(0.988 0.003 106.5);
46
+ --primary: oklch(0.93 0.007 106.5);
47
+ --primary-foreground: oklch(0.228 0.013 107.4);
48
+ --secondary: oklch(0.286 0.016 107.4);
49
+ --secondary-foreground: oklch(0.988 0.003 106.5);
50
+ --muted: oklch(0.286 0.016 107.4);
51
+ --muted-foreground: oklch(0.737 0.021 106.9);
52
+ --accent: oklch(0.286 0.016 107.4);
53
+ --accent-foreground: oklch(0.988 0.003 106.5);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.58 0.031 107.3);
58
+ --chart-1: oklch(0.88 0.011 106.6);
59
+ --chart-2: oklch(0.58 0.031 107.3);
60
+ --chart-3: oklch(0.466 0.025 107.3);
61
+ --chart-4: oklch(0.394 0.023 107.4);
62
+ --chart-5: oklch(0.286 0.016 107.4);
63
+ --sidebar: oklch(0.228 0.013 107.4);
64
+ --sidebar-foreground: oklch(0.988 0.003 106.5);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.988 0.003 106.5);
67
+ --sidebar-accent: oklch(0.286 0.016 107.4);
68
+ --sidebar-accent-foreground: oklch(0.988 0.003 106.5);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.58 0.031 107.3);
71
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-stone {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.147 0.004 49.25);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.147 0.004 49.25);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.147 0.004 49.25);
8
+ --primary: oklch(0.216 0.006 56.043);
9
+ --primary-foreground: oklch(0.985 0.001 106.423);
10
+ --secondary: oklch(0.97 0.001 106.424);
11
+ --secondary-foreground: oklch(0.216 0.006 56.043);
12
+ --muted: oklch(0.97 0.001 106.424);
13
+ --muted-foreground: oklch(0.553 0.013 58.071);
14
+ --accent: oklch(0.97 0.001 106.424);
15
+ --accent-foreground: oklch(0.216 0.006 56.043);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.923 0.003 48.717);
18
+ --input: oklch(0.923 0.003 48.717);
19
+ --ring: oklch(0.709 0.01 56.259);
20
+ --chart-1: oklch(0.869 0.005 56.366);
21
+ --chart-2: oklch(0.553 0.013 58.071);
22
+ --chart-3: oklch(0.444 0.011 73.639);
23
+ --chart-4: oklch(0.374 0.01 67.558);
24
+ --chart-5: oklch(0.268 0.007 34.298);
25
+ --radius: 0.625rem;
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
+
36
+ .base-color-stone.dark,
37
+ .dark.base-color-stone,
38
+ .base-color-stone .dark,
39
+ .dark .base-color-stone {
40
+ --background: oklch(0.147 0.004 49.25);
41
+ --foreground: oklch(0.985 0.001 106.423);
42
+ --card: oklch(0.216 0.006 56.043);
43
+ --card-foreground: oklch(0.985 0.001 106.423);
44
+ --popover: oklch(0.216 0.006 56.043);
45
+ --popover-foreground: oklch(0.985 0.001 106.423);
46
+ --primary: oklch(0.923 0.003 48.717);
47
+ --primary-foreground: oklch(0.216 0.006 56.043);
48
+ --secondary: oklch(0.268 0.007 34.298);
49
+ --secondary-foreground: oklch(0.985 0.001 106.423);
50
+ --muted: oklch(0.268 0.007 34.298);
51
+ --muted-foreground: oklch(0.709 0.01 56.259);
52
+ --accent: oklch(0.268 0.007 34.298);
53
+ --accent-foreground: oklch(0.985 0.001 106.423);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.553 0.013 58.071);
58
+ --chart-1: oklch(0.869 0.005 56.366);
59
+ --chart-2: oklch(0.553 0.013 58.071);
60
+ --chart-3: oklch(0.444 0.011 73.639);
61
+ --chart-4: oklch(0.374 0.01 67.558);
62
+ --chart-5: oklch(0.268 0.007 34.298);
63
+ --sidebar: oklch(0.216 0.006 56.043);
64
+ --sidebar-foreground: oklch(0.985 0.001 106.423);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.985 0.001 106.423);
67
+ --sidebar-accent: oklch(0.268 0.007 34.298);
68
+ --sidebar-accent-foreground: oklch(0.985 0.001 106.423);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.553 0.013 58.071);
71
+ }
@@ -0,0 +1,71 @@
1
+ .base-color-taupe {
2
+ --background: oklch(1 0 0);
3
+ --foreground: oklch(0.147 0.004 49.3);
4
+ --card: oklch(1 0 0);
5
+ --card-foreground: oklch(0.147 0.004 49.3);
6
+ --popover: oklch(1 0 0);
7
+ --popover-foreground: oklch(0.147 0.004 49.3);
8
+ --primary: oklch(0.214 0.009 43.1);
9
+ --primary-foreground: oklch(0.986 0.002 67.8);
10
+ --secondary: oklch(0.96 0.002 17.2);
11
+ --secondary-foreground: oklch(0.214 0.009 43.1);
12
+ --muted: oklch(0.96 0.002 17.2);
13
+ --muted-foreground: oklch(0.547 0.021 43.1);
14
+ --accent: oklch(0.96 0.002 17.2);
15
+ --accent-foreground: oklch(0.214 0.009 43.1);
16
+ --destructive: oklch(0.577 0.245 27.325);
17
+ --border: oklch(0.922 0.005 34.3);
18
+ --input: oklch(0.922 0.005 34.3);
19
+ --ring: oklch(0.714 0.014 41.2);
20
+ --chart-1: oklch(0.868 0.007 39.5);
21
+ --chart-2: oklch(0.547 0.021 43.1);
22
+ --chart-3: oklch(0.438 0.017 39.3);
23
+ --chart-4: oklch(0.367 0.016 35.7);
24
+ --chart-5: oklch(0.268 0.011 36.5);
25
+ --radius: 0.625rem;
26
+ --sidebar: oklch(0.986 0.002 67.8);
27
+ --sidebar-foreground: oklch(0.147 0.004 49.3);
28
+ --sidebar-primary: oklch(0.214 0.009 43.1);
29
+ --sidebar-primary-foreground: oklch(0.986 0.002 67.8);
30
+ --sidebar-accent: oklch(0.96 0.002 17.2);
31
+ --sidebar-accent-foreground: oklch(0.214 0.009 43.1);
32
+ --sidebar-border: oklch(0.922 0.005 34.3);
33
+ --sidebar-ring: oklch(0.714 0.014 41.2);
34
+ }
35
+
36
+ .base-color-taupe.dark,
37
+ .dark.base-color-taupe,
38
+ .base-color-taupe .dark,
39
+ .dark .base-color-taupe {
40
+ --background: oklch(0.147 0.004 49.3);
41
+ --foreground: oklch(0.986 0.002 67.8);
42
+ --card: oklch(0.214 0.009 43.1);
43
+ --card-foreground: oklch(0.986 0.002 67.8);
44
+ --popover: oklch(0.214 0.009 43.1);
45
+ --popover-foreground: oklch(0.986 0.002 67.8);
46
+ --primary: oklch(0.922 0.005 34.3);
47
+ --primary-foreground: oklch(0.214 0.009 43.1);
48
+ --secondary: oklch(0.268 0.011 36.5);
49
+ --secondary-foreground: oklch(0.986 0.002 67.8);
50
+ --muted: oklch(0.268 0.011 36.5);
51
+ --muted-foreground: oklch(0.714 0.014 41.2);
52
+ --accent: oklch(0.268 0.011 36.5);
53
+ --accent-foreground: oklch(0.986 0.002 67.8);
54
+ --destructive: oklch(0.704 0.191 22.216);
55
+ --border: oklch(1 0 0 / 10%);
56
+ --input: oklch(1 0 0 / 15%);
57
+ --ring: oklch(0.547 0.021 43.1);
58
+ --chart-1: oklch(0.868 0.007 39.5);
59
+ --chart-2: oklch(0.547 0.021 43.1);
60
+ --chart-3: oklch(0.438 0.017 39.3);
61
+ --chart-4: oklch(0.367 0.016 35.7);
62
+ --chart-5: oklch(0.268 0.011 36.5);
63
+ --sidebar: oklch(0.214 0.009 43.1);
64
+ --sidebar-foreground: oklch(0.986 0.002 67.8);
65
+ --sidebar-primary: oklch(0.488 0.243 264.376);
66
+ --sidebar-primary-foreground: oklch(0.986 0.002 67.8);
67
+ --sidebar-accent: oklch(0.268 0.011 36.5);
68
+ --sidebar-accent-foreground: oklch(0.986 0.002 67.8);
69
+ --sidebar-border: oklch(1 0 0 / 10%);
70
+ --sidebar-ring: oklch(0.547 0.021 43.1);
71
+ }