Files
apps-registry/workloads/ecommerce/app/globals.css
T
2026-07-19 19:37:41 -05:00

21 lines
845 B
CSS

@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; }