@tailwind base;
@tailwind components;
@tailwind utilities;

.fade-enter-active, .fade-leave-active { transition: opacity .2s; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

:root {
  --color-primary: 59 130 246;     /* Tailwind blue-500 -> rgb(59,130,246) -> "59 130 246" */
  --color-secondary: 217 70 239;   /* fuchsia-500 */
  --color-foreground: 17 24 39;    /* gray-900 */
  --color-background: 255 255 255; /* white */
}