44 lines
1003 B
CSS
44 lines
1003 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 98%;
|
|
--foreground: 0 0% 10%;
|
|
--card: 0 0% 100%;
|
|
--card-foreground: 0 0% 10%;
|
|
--popover: 0 0% 100%;
|
|
--popover-foreground: 0 0% 10%;
|
|
--primary: 0 0% 15%;
|
|
--primary-foreground: 0 0% 98%;
|
|
--secondary: 0 0% 94%;
|
|
--secondary-foreground: 0 0% 15%;
|
|
--muted: 220 10% 95%;
|
|
--muted-foreground: 0 0% 45%;
|
|
--accent: 220 10% 95%;
|
|
--accent-foreground: 0 0% 15%;
|
|
--destructive: 0 84% 60%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
--border: 0 0% 88%;
|
|
--input: 0 0% 88%;
|
|
--ring: 0 0% 70%;
|
|
--chart-1: 12 76% 61%;
|
|
--chart-2: 173 58% 39%;
|
|
--chart-3: 197 37% 24%;
|
|
--chart-4: 43 74% 66%;
|
|
--chart-5: 27 87% 67%;
|
|
--radius: 0.625rem;
|
|
}
|
|
|
|
* {
|
|
border-color: hsl(var(--border));
|
|
}
|
|
|
|
body {
|
|
background-color: hsl(var(--background));
|
|
color: hsl(var(--foreground));
|
|
font-feature-settings: "rlig" 1, "calt" 1;
|
|
}
|
|
}
|