Files
pangolin/src/app/globals.css
2024-10-12 18:21:31 -04:00

61 lines
1.6 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 37 0% 95%;
--foreground: 37 0% 10%;
--card: 37 0% 90%;
--card-foreground: 37 0% 15%;
--popover: 37 0% 95%;
--popover-foreground: 37 95% 10%;
--primary: 37 31% 25%;
--primary-foreground: 0 0% 100%;
--secondary: 37 10% 74%;
--secondary-foreground: 0 0% 0%;
--muted: -1 10% 85%;
--muted-foreground: 37 0% 40%;
--accent: -1 10% 80%;
--accent-foreground: 37 0% 15%;
--destructive: 0 50% 50%;
--destructive-foreground: 37 0% 90%;
--border: 37 20% 74%;
--input: 37 20% 50%;
--ring: 37 31% 25%;
--radius: 0.5rem;
}
.dark {
--background: 37 10% 10%;
--foreground: 37 0% 90%;
--card: 37 0% 10%;
--card-foreground: 37 0% 90%;
--popover: 37 10% 5%;
--popover-foreground: 37 0% 90%;
--primary: 37 31% 25%;
--primary-foreground: 0 0% 100%;
--secondary: 37 10% 20%;
--secondary-foreground: 0 0% 100%;
--muted: -1 10% 25%;
--muted-foreground: 37 0% 65%;
--accent: -1 10% 25%;
--accent-foreground: 37 0% 90%;
--destructive: 0 50% 50%;
--destructive-foreground: 37 0% 90%;
--border: 37 20% 50%;
--input: 37 20% 50%;
--ring: 37 31% 25%;
--radius: 0.5rem;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}