mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-05 10:35:18 +02:00
57 lines
1.6 KiB
CSS
57 lines
1.6 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@layer base {
|
|
:root {
|
|
--background: 37 100% 100%;
|
|
--foreground: 37 5% 10%;
|
|
--card: 37 50% 100%;
|
|
--card-foreground: 37 5% 15%;
|
|
--popover: 37 100% 100%;
|
|
--popover-foreground: 37 100% 10%;
|
|
--primary: 37 8% 51%;
|
|
--primary-foreground: 0 0% 100%;
|
|
--secondary: 37 30% 90%;
|
|
--secondary-foreground: 0 0% 0%;
|
|
--muted: -1 30% 95%;
|
|
--muted-foreground: 37 5% 40%;
|
|
--accent: -1 30% 90%;
|
|
--accent-foreground: 37 5% 15%;
|
|
--destructive: 0 100% 50%;
|
|
--destructive-foreground: 37 5% 100%;
|
|
--border: 37 30% 82%;
|
|
--input: 37 30% 50%;
|
|
--ring: 37 8% 51%;
|
|
--radius: 0rem;
|
|
}
|
|
.dark {
|
|
--background: 37 50% 10%;
|
|
--foreground: 37 5% 100%;
|
|
--card: 37 50% 10%;
|
|
--card-foreground: 37 5% 100%;
|
|
--popover: 37 50% 5%;
|
|
--popover-foreground: 37 5% 100%;
|
|
--primary: 37 8% 51%;
|
|
--primary-foreground: 0 0% 100%;
|
|
--secondary: 37 30% 20%;
|
|
--secondary-foreground: 0 0% 100%;
|
|
--muted: -1 30% 25%;
|
|
--muted-foreground: 37 5% 65%;
|
|
--accent: -1 30% 25%;
|
|
--accent-foreground: 37 5% 95%;
|
|
--destructive: 0 100% 50%;
|
|
--destructive-foreground: 37 5% 100%;
|
|
--border: 37 30% 50%;
|
|
--input: 37 30% 50%;
|
|
--ring: 37 8% 51%;
|
|
--radius: 0rem;
|
|
}
|
|
}
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|