intial commit for event-manager

This commit is contained in:
2026-05-16 16:22:08 +02:00
parent 0d545c7510
commit d9fd8a46de
+20 -9
View File
@@ -1,8 +1,15 @@
@import "tailwindcss"; @import "tailwindcss";
:root { :root {
--background: #ffffff; --background: #0d0d12;
--foreground: #171717; --foreground: #f5f5f8;
--surface: #16161f;
--surface-elevated: #1f1f2a;
--border: #2d2d3d;
--muted-foreground: #a6a6b4;
--accent: #a875ff;
--accent-strong: #955fff;
--accent-foreground: #12081f;
} }
@theme inline { @theme inline {
@@ -12,15 +19,19 @@
--font-mono: var(--font-geist-mono); --font-mono: var(--font-geist-mono);
} }
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body { body {
background: var(--background); background: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: Arial, Helvetica, sans-serif; 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%
);
} }