added neon auth

This commit is contained in:
2026-05-16 17:32:23 +02:00
parent d9fd8a46de
commit 02e10a8b8a
12 changed files with 4698 additions and 106 deletions
+28 -27
View File
@@ -1,37 +1,38 @@
@import "tailwindcss";
@import "@neondatabase/auth/ui/tailwind";
:root {
--background: #0d0d12;
--foreground: #f5f5f8;
--surface: #16161f;
--surface-elevated: #1f1f2a;
--border: #2d2d3d;
--muted-foreground: #a6a6b4;
--accent: #a875ff;
--accent-strong: #955fff;
--accent-foreground: #12081f;
--background: #0d0d12;
--foreground: #f5f5f8;
--surface: #16161f;
--surface-elevated: #1f1f2a;
--border: #2d2d3d;
--muted-foreground: #a6a6b4;
--accent: #a875ff;
--accent-strong: #955fff;
--accent-foreground: #12081f;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
background-image:
radial-gradient(
1200px circle at 20% -10%,
rgb(168 117 255 / 0.2),
transparent 40%
),
radial-gradient(
1000px circle at 120% 10%,
rgb(149 95 255 / 0.15),
transparent 38%
);
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
background-image:
radial-gradient(
1200px circle at 20% -10%,
rgb(168 117 255 / 0.2),
transparent 40%
),
radial-gradient(
1000px circle at 120% 10%,
rgb(149 95 255 / 0.15),
transparent 38%
);
}