@tailwind base; @tailwind components; @tailwind utilities; :root { --background: #ffffff; --foreground: #0a0a0a; } @media (prefers-color-scheme: dark) { :root { --background: #0a0a0a; --foreground: #ededed; } } body { background: var(--background); color: var(--foreground); }