@tailwind base; @tailwind components; @tailwind utilities; :root { --foreground-rgb: 0, 0, 0; --background-rgb: 255, 255, 255; } @media (prefers-color-scheme: dark) { :root { --foreground-rgb: 255, 255, 255; --background-rgb: 10, 10, 10; } } body { color: rgb(var(--foreground-rgb)); background: rgb(var(--background-rgb)); }