@import "tailwindcss"; :root { --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); } @keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } body { background: var(--background); color: var(--foreground); font-family: var(--font-geist-sans), system-ui, sans-serif; }