Initial Setup

This commit is contained in:
Sir Blob
2025-01-24 23:55:12 -05:00
parent 3cd9065178
commit 72d24a968e
19 changed files with 7071 additions and 123 deletions

21
src/app/globals.css Normal file
View File

@@ -0,0 +1,21 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}