wire up pages

This commit is contained in:
2025-04-29 21:06:13 +01:00
parent b62cf74e2a
commit 874e8b8958
11 changed files with 791 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--card: #ffffff;
--card-foreground: #171717;
--primary: #3b82f6;
--primary-foreground: #ffffff;
--secondary: #f3f4f6;
--secondary-foreground: #171717;
--muted: #f3f4f6;
--muted-foreground: #6b7280;
--border: #e5e7eb;
--ring: #3b82f6;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
--card: #171717;
--card-foreground: #ededed;
--primary: #3b82f6;
--primary-foreground: #ffffff;
--secondary: #262626;
--secondary-foreground: #ededed;
--muted: #262626;
--muted-foreground: #a3a3a3;
--border: #262626;
--ring: #3b82f6;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
}