@tailwind base; @tailwind components; @tailwind utilities; :root { --color-bg: #ffffff; --color-text: #1a1a1a; } .dark { --color-bg: #1a1a1a; --color-text: #ffffff; } body { background-color: var(--color-bg); color: var(--color-text); transition: background-color 0.3s, color 0.3s; }