163 lines
4.4 KiB
CSS
163 lines
4.4 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
@import "shadcn/tailwind.css";
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
:root {
|
|
--font-display: "Iowan Old Style", "Palatino Linotype", "URW Palladio L",
|
|
Palatino, Georgia, serif;
|
|
--font-body: "Inter", "Aptos", "Segoe UI", "Helvetica Neue", Arial,
|
|
sans-serif;
|
|
--background: #f5f4ee;
|
|
--foreground: #0f172a;
|
|
--card: rgb(255 255 255 / 0.84);
|
|
--card-foreground: #0f172a;
|
|
--popover: #ffffff;
|
|
--popover-foreground: #0f172a;
|
|
--primary: #163a2b;
|
|
--primary-foreground: #effaf3;
|
|
--secondary: #e5ecde;
|
|
--secondary-foreground: #163a2b;
|
|
--muted: #eef2e6;
|
|
--muted-foreground: #51606f;
|
|
--accent: #dbe7d1;
|
|
--accent-foreground: #163a2b;
|
|
--destructive: #b91c1c;
|
|
--border: rgb(15 23 42 / 0.1);
|
|
--input: rgb(15 23 42 / 0.12);
|
|
--ring: #5d8a67;
|
|
--chart-1: #163a2b;
|
|
--chart-2: #5d8a67;
|
|
--chart-3: #90a955;
|
|
--chart-4: #b7c5a4;
|
|
--chart-5: #d7dfce;
|
|
--radius: 1rem;
|
|
--sidebar: #fbfaf5;
|
|
--sidebar-foreground: #0f172a;
|
|
--sidebar-primary: #163a2b;
|
|
--sidebar-primary-foreground: #effaf3;
|
|
--sidebar-accent: #dbe7d1;
|
|
--sidebar-accent-foreground: #163a2b;
|
|
--sidebar-border: rgb(15 23 42 / 0.08);
|
|
--sidebar-ring: #5d8a67;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: var(--font-body), sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@theme inline {
|
|
--font-heading: var(--font-display);
|
|
--font-sans: var(--font-body);
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-ring: var(--ring);
|
|
--color-input: var(--input);
|
|
--color-border: var(--border);
|
|
--color-destructive: var(--destructive);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-card: var(--card);
|
|
--color-foreground: var(--foreground);
|
|
--color-background: var(--background);
|
|
--radius-sm: calc(var(--radius) * 0.6);
|
|
--radius-md: calc(var(--radius) * 0.8);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) * 1.4);
|
|
--radius-2xl: calc(var(--radius) * 1.8);
|
|
--radius-3xl: calc(var(--radius) * 2.2);
|
|
--radius-4xl: calc(var(--radius) * 2.6);
|
|
}
|
|
|
|
.dark {
|
|
--background: #111927;
|
|
--foreground: #eef6f0;
|
|
--card: rgb(17 25 39 / 0.84);
|
|
--card-foreground: #eef6f0;
|
|
--popover: #152131;
|
|
--popover-foreground: #eef6f0;
|
|
--primary: #d9f2de;
|
|
--primary-foreground: #133225;
|
|
--secondary: #243244;
|
|
--secondary-foreground: #eef6f0;
|
|
--muted: #243244;
|
|
--muted-foreground: #b1bec8;
|
|
--accent: #31485b;
|
|
--accent-foreground: #eef6f0;
|
|
--destructive: #ef4444;
|
|
--border: rgb(255 255 255 / 0.12);
|
|
--input: rgb(255 255 255 / 0.14);
|
|
--ring: #88b593;
|
|
--chart-1: #d9f2de;
|
|
--chart-2: #88b593;
|
|
--chart-3: #90a955;
|
|
--chart-4: #51606f;
|
|
--chart-5: #243244;
|
|
--sidebar: #152131;
|
|
--sidebar-foreground: #eef6f0;
|
|
--sidebar-primary: #d9f2de;
|
|
--sidebar-primary-foreground: #133225;
|
|
--sidebar-accent: #243244;
|
|
--sidebar-accent-foreground: #eef6f0;
|
|
--sidebar-border: rgb(255 255 255 / 0.12);
|
|
--sidebar-ring: #88b593;
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
button:not(:disabled),
|
|
[role="button"]:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
html {
|
|
@apply font-sans;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
font-family: var(--font-body), sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
}
|