@import "tailwindcss"; @theme { --color-ari-cyan: #22d3ee; --color-ari-magenta: #ec4899; --color-ari-yellow: #fde047; --color-ari-blue: #0e7490; --animate-accordion-down: accordion-down .2s ease-out; --animate-accordion-up: accordion-up .2s ease-out; } @keyframes accordion-down { from { height: 0; } to { height: var(--radix-accordion-content-height); } } @keyframes accordion-up { from { height: var(--radix-accordion-content-height); } to { height: 0; } } :root { color-scheme: light; } * { border-color: rgb(226 232 240); } html { scroll-behavior: smooth; } body { margin: 0; background: #fff; color: #0f172a; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; } button, a { -webkit-tap-highlight-color: transparent; } ::selection { background: #fde047; color: #0f172a; }