@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --bg: #ffffff;
    --fg: #0f172a;
  }
  .dark {
    --bg: #0f172a;
    --fg: #f8fafc;
  }
  body {
    @apply bg-white dark:bg-slate-900 text-slate-900 dark:text-slate-100 transition-colors;
  }
}
