Initial commit

This commit is contained in:
jessy-david-dev
2026-02-18 16:17:34 +01:00
parent fe4fdafa14
commit 83e3f4b303
9 changed files with 277 additions and 67 deletions
+16 -7
View File
@@ -1,26 +1,35 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--background: #09090b;
--foreground: #ffffff;
--muted: #a1a1aa;
--border: #27272a;
--surface: #18181b;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-muted: var(--muted);
--color-border: var(--border);
--color-surface: var(--surface);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
@keyframes shimmer {
0%,
100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: var(--font-geist-sans), system-ui, sans-serif;
}