28 lines
597 B
CSS
28 lines
597 B
CSS
@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;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
@apply border-border;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
@apply bg-background text-foreground antialiased;
|
||
|
|
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||
|
|
}
|
||
|
|
}
|