Files
zeavis-edu/apps/web/src/index.css
T

31 lines
717 B
CSS
Raw Normal View History

2026-05-22 12:41:55 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 48 60% 97%;
--foreground: 156 26% 12%;
--card: 0 0% 100%;
--card-foreground: 156 26% 12%;
--primary: 142 60% 32%;
--primary-foreground: 0 0% 100%;
--muted: 84 35% 90%;
--muted-foreground: 156 12% 35%;
--border: 84 24% 82%;
--radius: 1rem;
}
* {
border-color: hsl(var(--border));
2026-05-22 12:41:55 +00:00
}
body {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2026-05-22 12:41:55 +00:00
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
}