Initial Push

Inititial project state
This commit is contained in:
SinusFox
2024-09-13 21:16:46 +02:00
parent f451676f5f
commit bfca38fcdd
14 changed files with 5664 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
@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;
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}