saas-forge 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 (145) hide show
  1. package/.eslintrc.js +10 -0
  2. package/.vscode/settings.json +3 -0
  3. package/README.md +31 -0
  4. package/apps/web/.env.example +1 -0
  5. package/apps/web/app/favicon.ico +0 -0
  6. package/apps/web/app/layout.tsx +23 -0
  7. package/apps/web/app/page.tsx +12 -0
  8. package/apps/web/components.json +20 -0
  9. package/apps/web/eslint.config.js +4 -0
  10. package/apps/web/hooks/.gitkeep +0 -0
  11. package/apps/web/next-env.d.ts +5 -0
  12. package/apps/web/next.config.mjs +6 -0
  13. package/apps/web/package.json +32 -0
  14. package/apps/web/postcss.config.mjs +1 -0
  15. package/apps/web/tsconfig.json +23 -0
  16. package/docs/CODE_OF_CONDUCT.md +128 -0
  17. package/docs/CONTRIBUTING.md +45 -0
  18. package/docs/ISSUE_TEMPLATE/bug_report.md +31 -0
  19. package/docs/ISSUE_TEMPLATE/feature_request.md +17 -0
  20. package/docs/SECURITY.md +9 -0
  21. package/docs/pull_request_template.md +24 -0
  22. package/package.json +38 -0
  23. package/packages/eslint-config/README.md +3 -0
  24. package/packages/eslint-config/base.js +32 -0
  25. package/packages/eslint-config/next.js +51 -0
  26. package/packages/eslint-config/package.json +26 -0
  27. package/packages/eslint-config/react-internal.js +41 -0
  28. package/packages/typescript-config/README.md +3 -0
  29. package/packages/typescript-config/base.json +20 -0
  30. package/packages/typescript-config/nextjs.json +13 -0
  31. package/packages/typescript-config/package.json +9 -0
  32. package/packages/typescript-config/react-library.json +8 -0
  33. package/packages/ui/components.json +20 -0
  34. package/packages/ui/eslint.config.js +4 -0
  35. package/packages/ui/package.json +86 -0
  36. package/packages/ui/postcss.config.mjs +6 -0
  37. package/packages/ui/src/components/.gitkeep +0 -0
  38. package/packages/ui/src/components/aceternity/3d-card.tsx +155 -0
  39. package/packages/ui/src/components/aceternity/3d-marquee.tsx +142 -0
  40. package/packages/ui/src/components/aceternity/Spotlight.tsx +57 -0
  41. package/packages/ui/src/components/aceternity/animated-testimonials.tsx +165 -0
  42. package/packages/ui/src/components/aceternity/animated-tooltip.tsx +92 -0
  43. package/packages/ui/src/components/aceternity/aurora-background.tsx +61 -0
  44. package/packages/ui/src/components/aceternity/background-beams.tsx +141 -0
  45. package/packages/ui/src/components/aceternity/background-gradient.tsx +72 -0
  46. package/packages/ui/src/components/aceternity/card-hover-effect.tsx +111 -0
  47. package/packages/ui/src/components/aceternity/compare.tsx +244 -0
  48. package/packages/ui/src/components/aceternity/container-scroll-animation.tsx +95 -0
  49. package/packages/ui/src/components/aceternity/lamp.tsx +104 -0
  50. package/packages/ui/src/components/aceternity/sparkles.tsx +434 -0
  51. package/packages/ui/src/components/aceternity/spotlight-new.tsx +128 -0
  52. package/packages/ui/src/components/mdx/Alert.tsx +14 -0
  53. package/packages/ui/src/components/mdx/Badge.tsx +10 -0
  54. package/packages/ui/src/components/mdx/blockquote.tsx +11 -0
  55. package/packages/ui/src/components/mdx/code.tsx +16 -0
  56. package/packages/ui/src/components/mdx/h1.tsx +18 -0
  57. package/packages/ui/src/components/mdx/h2.tsx +18 -0
  58. package/packages/ui/src/components/mdx/h3.tsx +18 -0
  59. package/packages/ui/src/components/mdx/hr.tsx +7 -0
  60. package/packages/ui/src/components/mdx/li.tsx +7 -0
  61. package/packages/ui/src/components/mdx/mdxComponents.tsx +25 -0
  62. package/packages/ui/src/components/mdx/ol.tsx +7 -0
  63. package/packages/ui/src/components/mdx/pre.tsx +13 -0
  64. package/packages/ui/src/components/mdx/tableOfContents.tsx +23 -0
  65. package/packages/ui/src/components/mdx/ul.tsx +7 -0
  66. package/packages/ui/src/components/mdx/ulNumbered.tsx +7 -0
  67. package/packages/ui/src/components/shadcn/accordion.tsx +66 -0
  68. package/packages/ui/src/components/shadcn/alert-dialog.tsx +157 -0
  69. package/packages/ui/src/components/shadcn/alert.tsx +66 -0
  70. package/packages/ui/src/components/shadcn/aspect-ratio.tsx +11 -0
  71. package/packages/ui/src/components/shadcn/avatar.tsx +53 -0
  72. package/packages/ui/src/components/shadcn/badge.tsx +46 -0
  73. package/packages/ui/src/components/shadcn/breadcrumb.tsx +109 -0
  74. package/packages/ui/src/components/shadcn/button-group.tsx +83 -0
  75. package/packages/ui/src/components/shadcn/button.tsx +60 -0
  76. package/packages/ui/src/components/shadcn/calendar.tsx +216 -0
  77. package/packages/ui/src/components/shadcn/card.tsx +92 -0
  78. package/packages/ui/src/components/shadcn/carousel.tsx +241 -0
  79. package/packages/ui/src/components/shadcn/chart.tsx +357 -0
  80. package/packages/ui/src/components/shadcn/checkbox.tsx +32 -0
  81. package/packages/ui/src/components/shadcn/collapsible.tsx +33 -0
  82. package/packages/ui/src/components/shadcn/command.tsx +184 -0
  83. package/packages/ui/src/components/shadcn/context-menu.tsx +252 -0
  84. package/packages/ui/src/components/shadcn/dialog.tsx +143 -0
  85. package/packages/ui/src/components/shadcn/drawer.tsx +135 -0
  86. package/packages/ui/src/components/shadcn/dropdown-menu.tsx +257 -0
  87. package/packages/ui/src/components/shadcn/empty.tsx +104 -0
  88. package/packages/ui/src/components/shadcn/field.tsx +248 -0
  89. package/packages/ui/src/components/shadcn/form.tsx +167 -0
  90. package/packages/ui/src/components/shadcn/hover-card.tsx +44 -0
  91. package/packages/ui/src/components/shadcn/input-group.tsx +170 -0
  92. package/packages/ui/src/components/shadcn/input-otp.tsx +77 -0
  93. package/packages/ui/src/components/shadcn/input.tsx +21 -0
  94. package/packages/ui/src/components/shadcn/item.tsx +193 -0
  95. package/packages/ui/src/components/shadcn/kbd.tsx +28 -0
  96. package/packages/ui/src/components/shadcn/label.tsx +24 -0
  97. package/packages/ui/src/components/shadcn/menubar.tsx +276 -0
  98. package/packages/ui/src/components/shadcn/native-select.tsx +48 -0
  99. package/packages/ui/src/components/shadcn/navigation-menu.tsx +168 -0
  100. package/packages/ui/src/components/shadcn/pagination.tsx +127 -0
  101. package/packages/ui/src/components/shadcn/popover.tsx +48 -0
  102. package/packages/ui/src/components/shadcn/progress.tsx +31 -0
  103. package/packages/ui/src/components/shadcn/radio-group.tsx +45 -0
  104. package/packages/ui/src/components/shadcn/resizable.tsx +56 -0
  105. package/packages/ui/src/components/shadcn/scroll-area.tsx +58 -0
  106. package/packages/ui/src/components/shadcn/select.tsx +187 -0
  107. package/packages/ui/src/components/shadcn/separator.tsx +28 -0
  108. package/packages/ui/src/components/shadcn/sheet.tsx +139 -0
  109. package/packages/ui/src/components/shadcn/sidebar.tsx +726 -0
  110. package/packages/ui/src/components/shadcn/skeleton.tsx +13 -0
  111. package/packages/ui/src/components/shadcn/slider.tsx +63 -0
  112. package/packages/ui/src/components/shadcn/sonner.tsx +40 -0
  113. package/packages/ui/src/components/shadcn/spinner.tsx +16 -0
  114. package/packages/ui/src/components/shadcn/switch.tsx +31 -0
  115. package/packages/ui/src/components/shadcn/table.tsx +116 -0
  116. package/packages/ui/src/components/shadcn/tabs.tsx +66 -0
  117. package/packages/ui/src/components/shadcn/textarea.tsx +18 -0
  118. package/packages/ui/src/components/shadcn/toggle-group.tsx +83 -0
  119. package/packages/ui/src/components/shadcn/toggle.tsx +47 -0
  120. package/packages/ui/src/components/shadcn/tooltip.tsx +61 -0
  121. package/packages/ui/src/hooks/.gitkeep +0 -0
  122. package/packages/ui/src/hooks/use-device.tsx +29 -0
  123. package/packages/ui/src/hooks/use-mobile.tsx +19 -0
  124. package/packages/ui/src/hooks/use-outside-click.tsx +23 -0
  125. package/packages/ui/src/lib/utils.ts +6 -0
  126. package/packages/ui/src/providers/theme-provider.tsx +18 -0
  127. package/packages/ui/src/styles/globals.css +65 -0
  128. package/packages/ui/src/styles/shadcn-blue.css +69 -0
  129. package/packages/ui/src/styles/shadcn-green.css +68 -0
  130. package/packages/ui/src/styles/shadcn-neutral.css +69 -0
  131. package/packages/ui/src/styles/shadcn-orange.css +68 -0
  132. package/packages/ui/src/styles/shadcn-red.css +68 -0
  133. package/packages/ui/src/styles/shadcn-rose.css +68 -0
  134. package/packages/ui/src/styles/shadcn-violet.css +68 -0
  135. package/packages/ui/src/styles/shadcn-yellow.css +68 -0
  136. package/packages/ui/src/typography/font.tsx +19 -0
  137. package/packages/ui/src/typography/fontFiles/Cyberdyne.woff2 +0 -0
  138. package/packages/ui/src/typography/fontFiles/GeistMonoVF.woff +0 -0
  139. package/packages/ui/src/typography/fontFiles/GeistVF.woff +0 -0
  140. package/packages/ui/tsconfig.json +11 -0
  141. package/packages/ui/tsconfig.lint.json +8 -0
  142. package/pnpm-workspace.yaml +3 -0
  143. package/scripts/cli.js +44 -0
  144. package/tsconfig.json +4 -0
  145. package/turbo.json +21 -0
@@ -0,0 +1,65 @@
1
+ @import "tailwindcss";
2
+ @source "../../../apps/**/*.{ts,tsx}";
3
+ @source "../../../components/**/*.{ts,tsx}";
4
+ @source "../**/*.{ts,tsx}";
5
+
6
+ @import "tw-animate-css";
7
+
8
+ @custom-variant dark (&:is(.dark *));
9
+
10
+ @import "./shadcn-blue.css";
11
+ @import "./shadcn-neutral.css";
12
+ @import "./shadcn-red.css";
13
+ @import "./shadcn-violet.css";
14
+ @import "./shadcn-yellow.css";
15
+ @import "./shadcn-green.css";
16
+ @import "./shadcn-orange.css";
17
+ @import "./shadcn-rose.css";
18
+
19
+ @theme inline {
20
+ --color-background: var(--background);
21
+ --color-foreground: var(--foreground);
22
+ --color-card: var(--card);
23
+ --color-card-foreground: var(--card-foreground);
24
+ --color-popover: var(--popover);
25
+ --color-popover-foreground: var(--popover-foreground);
26
+ --color-primary: var(--primary);
27
+ --color-primary-foreground: var(--primary-foreground);
28
+ --color-secondary: var(--secondary);
29
+ --color-secondary-foreground: var(--secondary-foreground);
30
+ --color-muted: var(--muted);
31
+ --color-muted-foreground: var(--muted-foreground);
32
+ --color-accent: var(--accent);
33
+ --color-accent-foreground: var(--accent-foreground);
34
+ --color-destructive: var(--destructive);
35
+ --color-destructive-foreground: var(--destructive-foreground);
36
+ --color-border: var(--border);
37
+ --color-input: var(--input);
38
+ --color-ring: var(--ring);
39
+ --color-chart-1: var(--chart-1);
40
+ --color-chart-2: var(--chart-2);
41
+ --color-chart-3: var(--chart-3);
42
+ --color-chart-4: var(--chart-4);
43
+ --color-chart-5: var(--chart-5);
44
+ --radius-sm: calc(var(--radius) - 4px);
45
+ --radius-md: calc(var(--radius) - 2px);
46
+ --radius-lg: var(--radius);
47
+ --radius-xl: calc(var(--radius) + 4px);
48
+ --color-sidebar: var(--sidebar);
49
+ --color-sidebar-foreground: var(--sidebar-foreground);
50
+ --color-sidebar-primary: var(--sidebar-primary);
51
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
52
+ --color-sidebar-accent: var(--sidebar-accent);
53
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
54
+ --color-sidebar-border: var(--sidebar-border);
55
+ --color-sidebar-ring: var(--sidebar-ring);
56
+ }
57
+
58
+ @layer base {
59
+ * {
60
+ @apply border-border outline-ring/50;
61
+ }
62
+ body {
63
+ @apply bg-background text-foreground;
64
+ }
65
+ }
@@ -0,0 +1,69 @@
1
+ :root,.theme-blue {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.145 0 0);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.145 0 0);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.145 0 0);
9
+ --primary: oklch(0.205 0 0);
10
+ --primary-foreground: oklch(0.985 0 0);
11
+ --secondary: oklch(0.97 0 0);
12
+ --secondary-foreground: oklch(0.205 0 0);
13
+ --muted: oklch(0.97 0 0);
14
+ --muted-foreground: oklch(0.556 0 0);
15
+ --accent: oklch(0.97 0 0);
16
+ --accent-foreground: oklch(0.205 0 0);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.922 0 0);
19
+ --input: oklch(0.922 0 0);
20
+ --ring: oklch(0.708 0 0);
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
+ --radius: 0.625rem;
27
+ --sidebar: oklch(0.985 0 0);
28
+ --sidebar-foreground: oklch(0.145 0 0);
29
+ --sidebar-primary: oklch(0.205 0 0);
30
+ --sidebar-primary-foreground: oklch(0.985 0 0);
31
+ --sidebar-accent: oklch(0.97 0 0);
32
+ --sidebar-accent-foreground: oklch(0.205 0 0);
33
+ --sidebar-border: oklch(0.922 0 0);
34
+ --sidebar-ring: oklch(0.708 0 0);
35
+ }
36
+
37
+ .dark, .theme-blue-dark {
38
+ --background: oklch(0.145 0 0);
39
+ --foreground: oklch(0.985 0 0);
40
+ --card: oklch(0.205 0 0);
41
+ --card-foreground: oklch(0.985 0 0);
42
+ --popover: oklch(0.205 0 0);
43
+ --popover-foreground: oklch(0.985 0 0);
44
+ --primary: oklch(0.922 0 0);
45
+ --primary-foreground: oklch(0.205 0 0);
46
+ --secondary: oklch(0.269 0 0);
47
+ --secondary-foreground: oklch(0.985 0 0);
48
+ --muted: oklch(0.269 0 0);
49
+ --muted-foreground: oklch(0.708 0 0);
50
+ --accent: oklch(0.269 0 0);
51
+ --accent-foreground: oklch(0.985 0 0);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --border: oklch(1 0 0 / 10%);
54
+ --input: oklch(1 0 0 / 15%);
55
+ --ring: oklch(0.556 0 0);
56
+ --chart-1: oklch(0.488 0.243 264.376);
57
+ --chart-2: oklch(0.696 0.17 162.48);
58
+ --chart-3: oklch(0.769 0.188 70.08);
59
+ --chart-4: oklch(0.627 0.265 303.9);
60
+ --chart-5: oklch(0.645 0.246 16.439);
61
+ --sidebar: oklch(0.205 0 0);
62
+ --sidebar-foreground: oklch(0.985 0 0);
63
+ --sidebar-primary: oklch(0.488 0.243 264.376);
64
+ --sidebar-primary-foreground: oklch(0.985 0 0);
65
+ --sidebar-accent: oklch(0.269 0 0);
66
+ --sidebar-accent-foreground: oklch(0.985 0 0);
67
+ --sidebar-border: oklch(1 0 0 / 10%);
68
+ --sidebar-ring: oklch(0.556 0 0);
69
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-green {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.648 0.2 131.684);
10
+ --primary-foreground: oklch(0.986 0.031 120.757);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.841 0.238 128.85);
21
+ --chart-1: oklch(0.871 0.15 154.449);
22
+ --chart-2: oklch(0.723 0.219 149.579);
23
+ --chart-3: oklch(0.627 0.194 149.214);
24
+ --chart-4: oklch(0.527 0.154 150.069);
25
+ --chart-5: oklch(0.448 0.119 151.328);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.648 0.2 131.684);
29
+ --sidebar-primary-foreground: oklch(0.986 0.031 120.757);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.841 0.238 128.85);
34
+ }
35
+
36
+ .dark, .theme-green-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.648 0.2 131.684);
44
+ --primary-foreground: oklch(0.986 0.031 120.757);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.405 0.101 131.063);
55
+ --chart-1: oklch(0.871 0.15 154.449);
56
+ --chart-2: oklch(0.723 0.219 149.579);
57
+ --chart-3: oklch(0.627 0.194 149.214);
58
+ --chart-4: oklch(0.527 0.154 150.069);
59
+ --chart-5: oklch(0.448 0.119 151.328);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.768 0.233 130.85);
63
+ --sidebar-primary-foreground: oklch(0.986 0.031 120.757);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.405 0.101 131.063);
68
+ }
@@ -0,0 +1,69 @@
1
+ :root, .theme-neutral {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.145 0 0);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.145 0 0);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.145 0 0);
9
+ --primary: oklch(0.205 0 0);
10
+ --primary-foreground: oklch(0.985 0 0);
11
+ --secondary: oklch(0.97 0 0);
12
+ --secondary-foreground: oklch(0.205 0 0);
13
+ --muted: oklch(0.97 0 0);
14
+ --muted-foreground: oklch(0.556 0 0);
15
+ --accent: oklch(0.97 0 0);
16
+ --accent-foreground: oklch(0.205 0 0);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.922 0 0);
19
+ --input: oklch(0.922 0 0);
20
+ --ring: oklch(0.708 0 0);
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
+ --radius: 0.625rem;
27
+ --sidebar: oklch(0.985 0 0);
28
+ --sidebar-foreground: oklch(0.145 0 0);
29
+ --sidebar-primary: oklch(0.205 0 0);
30
+ --sidebar-primary-foreground: oklch(0.985 0 0);
31
+ --sidebar-accent: oklch(0.97 0 0);
32
+ --sidebar-accent-foreground: oklch(0.205 0 0);
33
+ --sidebar-border: oklch(0.922 0 0);
34
+ --sidebar-ring: oklch(0.708 0 0);
35
+ }
36
+
37
+ .dark, .theme-neutral-dark {
38
+ --background: oklch(0.145 0 0);
39
+ --foreground: oklch(0.985 0 0);
40
+ --card: oklch(0.205 0 0);
41
+ --card-foreground: oklch(0.985 0 0);
42
+ --popover: oklch(0.205 0 0);
43
+ --popover-foreground: oklch(0.985 0 0);
44
+ --primary: oklch(0.922 0 0);
45
+ --primary-foreground: oklch(0.205 0 0);
46
+ --secondary: oklch(0.269 0 0);
47
+ --secondary-foreground: oklch(0.985 0 0);
48
+ --muted: oklch(0.269 0 0);
49
+ --muted-foreground: oklch(0.708 0 0);
50
+ --accent: oklch(0.269 0 0);
51
+ --accent-foreground: oklch(0.985 0 0);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --border: oklch(1 0 0 / 10%);
54
+ --input: oklch(1 0 0 / 15%);
55
+ --ring: oklch(0.556 0 0);
56
+ --chart-1: oklch(0.488 0.243 264.376);
57
+ --chart-2: oklch(0.696 0.17 162.48);
58
+ --chart-3: oklch(0.769 0.188 70.08);
59
+ --chart-4: oklch(0.627 0.265 303.9);
60
+ --chart-5: oklch(0.645 0.246 16.439);
61
+ --sidebar: oklch(0.205 0 0);
62
+ --sidebar-foreground: oklch(0.985 0 0);
63
+ --sidebar-primary: oklch(0.488 0.243 264.376);
64
+ --sidebar-primary-foreground: oklch(0.985 0 0);
65
+ --sidebar-accent: oklch(0.269 0 0);
66
+ --sidebar-accent-foreground: oklch(0.985 0 0);
67
+ --sidebar-border: oklch(1 0 0 / 10%);
68
+ --sidebar-ring: oklch(0.556 0 0);
69
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-orange {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.646 0.222 41.116);
10
+ --primary-foreground: oklch(0.98 0.016 73.684);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.75 0.183 55.934);
21
+ --chart-1: oklch(0.837 0.128 66.29);
22
+ --chart-2: oklch(0.705 0.213 47.604);
23
+ --chart-3: oklch(0.646 0.222 41.116);
24
+ --chart-4: oklch(0.553 0.195 38.402);
25
+ --chart-5: oklch(0.47 0.157 37.304);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.646 0.222 41.116);
29
+ --sidebar-primary-foreground: oklch(0.98 0.016 73.684);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.75 0.183 55.934);
34
+ }
35
+
36
+ .dark, .theme-orange-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.705 0.213 47.604);
44
+ --primary-foreground: oklch(0.98 0.016 73.684);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.408 0.123 38.172);
55
+ --chart-1: oklch(0.837 0.128 66.29);
56
+ --chart-2: oklch(0.705 0.213 47.604);
57
+ --chart-3: oklch(0.646 0.222 41.116);
58
+ --chart-4: oklch(0.553 0.195 38.402);
59
+ --chart-5: oklch(0.47 0.157 37.304);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.705 0.213 47.604);
63
+ --sidebar-primary-foreground: oklch(0.98 0.016 73.684);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.408 0.123 38.172);
68
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-red {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.577 0.245 27.325);
10
+ --primary-foreground: oklch(0.971 0.013 17.38);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.704 0.191 22.216);
21
+ --chart-1: oklch(0.808 0.114 19.571);
22
+ --chart-2: oklch(0.637 0.237 25.331);
23
+ --chart-3: oklch(0.577 0.245 27.325);
24
+ --chart-4: oklch(0.505 0.213 27.518);
25
+ --chart-5: oklch(0.444 0.177 26.899);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.577 0.245 27.325);
29
+ --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.704 0.191 22.216);
34
+ }
35
+
36
+ .dark, .theme-red-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.637 0.237 25.331);
44
+ --primary-foreground: oklch(0.971 0.013 17.38);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.396 0.141 25.723);
55
+ --chart-1: oklch(0.808 0.114 19.571);
56
+ --chart-2: oklch(0.637 0.237 25.331);
57
+ --chart-3: oklch(0.577 0.245 27.325);
58
+ --chart-4: oklch(0.505 0.213 27.518);
59
+ --chart-5: oklch(0.444 0.177 26.899);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.637 0.237 25.331);
63
+ --sidebar-primary-foreground: oklch(0.971 0.013 17.38);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.396 0.141 25.723);
68
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-rose {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.586 0.253 17.585);
10
+ --primary-foreground: oklch(0.969 0.015 12.422);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.712 0.194 13.428);
21
+ --chart-1: oklch(0.81 0.117 11.638);
22
+ --chart-2: oklch(0.645 0.246 16.439);
23
+ --chart-3: oklch(0.586 0.253 17.585);
24
+ --chart-4: oklch(0.514 0.222 16.935);
25
+ --chart-5: oklch(0.455 0.188 13.697);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.586 0.253 17.585);
29
+ --sidebar-primary-foreground: oklch(0.969 0.015 12.422);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.712 0.194 13.428);
34
+ }
35
+
36
+ .dark, .theme-rose-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.645 0.246 16.439);
44
+ --primary-foreground: oklch(0.969 0.015 12.422);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.41 0.159 10.272);
55
+ --chart-1: oklch(0.81 0.117 11.638);
56
+ --chart-2: oklch(0.645 0.246 16.439);
57
+ --chart-3: oklch(0.586 0.253 17.585);
58
+ --chart-4: oklch(0.514 0.222 16.935);
59
+ --chart-5: oklch(0.455 0.188 13.697);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.645 0.246 16.439);
63
+ --sidebar-primary-foreground: oklch(0.969 0.015 12.422);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.41 0.159 10.272);
68
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-violet {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.541 0.281 293.009);
10
+ --primary-foreground: oklch(0.969 0.016 293.756);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.702 0.183 293.541);
21
+ --chart-1: oklch(0.811 0.111 293.571);
22
+ --chart-2: oklch(0.606 0.25 292.717);
23
+ --chart-3: oklch(0.541 0.281 293.009);
24
+ --chart-4: oklch(0.491 0.27 292.581);
25
+ --chart-5: oklch(0.432 0.232 292.759);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.541 0.281 293.009);
29
+ --sidebar-primary-foreground: oklch(0.969 0.016 293.756);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.702 0.183 293.541);
34
+ }
35
+
36
+ .dark, .theme-violet-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.606 0.25 292.717);
44
+ --primary-foreground: oklch(0.969 0.016 293.756);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.38 0.189 293.745);
55
+ --chart-1: oklch(0.811 0.111 293.571);
56
+ --chart-2: oklch(0.606 0.25 292.717);
57
+ --chart-3: oklch(0.541 0.281 293.009);
58
+ --chart-4: oklch(0.491 0.27 292.581);
59
+ --chart-5: oklch(0.432 0.232 292.759);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.606 0.25 292.717);
63
+ --sidebar-primary-foreground: oklch(0.969 0.016 293.756);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.38 0.189 293.745);
68
+ }
@@ -0,0 +1,68 @@
1
+ :root, .theme-yellow {
2
+ --radius: 0.65rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.852 0.199 91.936);
10
+ --primary-foreground: oklch(0.421 0.095 57.708);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --border: oklch(0.92 0.004 286.32);
19
+ --input: oklch(0.92 0.004 286.32);
20
+ --ring: oklch(0.852 0.199 91.936);
21
+ --chart-1: oklch(0.905 0.182 98.111);
22
+ --chart-2: oklch(0.795 0.184 86.047);
23
+ --chart-3: oklch(0.681 0.162 75.834);
24
+ --chart-4: oklch(0.554 0.135 66.442);
25
+ --chart-5: oklch(0.476 0.114 61.907);
26
+ --sidebar: oklch(0.985 0 0);
27
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
28
+ --sidebar-primary: oklch(0.681 0.162 75.834);
29
+ --sidebar-primary-foreground: oklch(0.987 0.026 102.212);
30
+ --sidebar-accent: oklch(0.967 0.001 286.375);
31
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
32
+ --sidebar-border: oklch(0.92 0.004 286.32);
33
+ --sidebar-ring: oklch(0.852 0.199 91.936);
34
+ }
35
+
36
+ .dark, .theme-yellow-dark {
37
+ --background: oklch(0.141 0.005 285.823);
38
+ --foreground: oklch(0.985 0 0);
39
+ --card: oklch(0.21 0.006 285.885);
40
+ --card-foreground: oklch(0.985 0 0);
41
+ --popover: oklch(0.21 0.006 285.885);
42
+ --popover-foreground: oklch(0.985 0 0);
43
+ --primary: oklch(0.795 0.184 86.047);
44
+ --primary-foreground: oklch(0.421 0.095 57.708);
45
+ --secondary: oklch(0.274 0.006 286.033);
46
+ --secondary-foreground: oklch(0.985 0 0);
47
+ --muted: oklch(0.274 0.006 286.033);
48
+ --muted-foreground: oklch(0.705 0.015 286.067);
49
+ --accent: oklch(0.274 0.006 286.033);
50
+ --accent-foreground: oklch(0.985 0 0);
51
+ --destructive: oklch(0.704 0.191 22.216);
52
+ --border: oklch(1 0 0 / 10%);
53
+ --input: oklch(1 0 0 / 15%);
54
+ --ring: oklch(0.421 0.095 57.708);
55
+ --chart-1: oklch(0.905 0.182 98.111);
56
+ --chart-2: oklch(0.795 0.184 86.047);
57
+ --chart-3: oklch(0.681 0.162 75.834);
58
+ --chart-4: oklch(0.554 0.135 66.442);
59
+ --chart-5: oklch(0.476 0.114 61.907);
60
+ --sidebar: oklch(0.21 0.006 285.885);
61
+ --sidebar-foreground: oklch(0.985 0 0);
62
+ --sidebar-primary: oklch(0.795 0.184 86.047);
63
+ --sidebar-primary-foreground: oklch(0.987 0.026 102.212);
64
+ --sidebar-accent: oklch(0.274 0.006 286.033);
65
+ --sidebar-accent-foreground: oklch(0.985 0 0);
66
+ --sidebar-border: oklch(1 0 0 / 10%);
67
+ --sidebar-ring: oklch(0.421 0.095 57.708);
68
+ }
@@ -0,0 +1,19 @@
1
+ import localFont from "next/font/local";
2
+
3
+ export const geistSans = localFont({
4
+ src: "./fontFiles/GeistVF.woff",
5
+ variable: "--font-geist-sans",
6
+ weight: "100 900",
7
+ });
8
+
9
+ export const geistMono = localFont({
10
+ src: "./fontFiles/GeistMonoVF.woff",
11
+ variable: "--font-geist-mono",
12
+ weight: "100 900",
13
+ });
14
+
15
+ export const cyberdyne = localFont({
16
+ src: "./fontFiles/Cyberdyne.woff2",
17
+ variable: "--font-cyberdyne",
18
+ weight: "100 900",
19
+ });
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "@workspace/typescript-config/react-library.json",
3
+ "compilerOptions": {
4
+ "baseUrl": ".",
5
+ "paths": {
6
+ "@workspace/ui/*": ["./src/*"]
7
+ }
8
+ },
9
+ "include": ["."],
10
+ "exclude": ["node_modules", "dist"]
11
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "@workspace/typescript-config/react-library.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist"
5
+ },
6
+ "include": ["src", "turbo"],
7
+ "exclude": ["node_modules", "dist"]
8
+ }
@@ -0,0 +1,3 @@
1
+ packages:
2
+ - "apps/*"
3
+ - "packages/*"