60 lines
1.3 KiB
CSS
60 lines
1.3 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 35 20% 95%;
|
|
--foreground: 0 0% 4%;
|
|
--card: 35 20% 95%;
|
|
--card-foreground: 0 0% 4%;
|
|
--popover: 35 20% 95%;
|
|
--popover-foreground: 0 0% 4%;
|
|
--primary: 0 0% 4%;
|
|
--primary-foreground: 35 20% 95%;
|
|
--secondary: 35 15% 88%;
|
|
--secondary-foreground: 0 0% 4%;
|
|
--muted: 35 10% 90%;
|
|
--muted-foreground: 0 0% 40%;
|
|
--accent: 70 100% 50%;
|
|
--accent-foreground: 0 0% 4%;
|
|
--destructive: 0 80% 50%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
--border: 0 0% 4%;
|
|
--input: 0 0% 4%;
|
|
--ring: 70 100% 50%;
|
|
--radius: 0px;
|
|
}
|
|
|
|
.dark {
|
|
--background: 0 0% 8%;
|
|
--foreground: 35 20% 95%;
|
|
--card: 0 0% 12%;
|
|
--card-foreground: 35 20% 95%;
|
|
--popover: 0 0% 12%;
|
|
--popover-foreground: 35 20% 95%;
|
|
--primary: 35 20% 95%;
|
|
--primary-foreground: 0 0% 8%;
|
|
--secondary: 0 0% 15%;
|
|
--secondary-foreground: 35 20% 95%;
|
|
--muted: 0 0% 15%;
|
|
--muted-foreground: 0 0% 60%;
|
|
--accent: 70 100% 50%;
|
|
--accent-foreground: 0 0% 8%;
|
|
--destructive: 0 80% 50%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
--border: 35 20% 95%;
|
|
--input: 35 20% 95%;
|
|
--ring: 70 100% 50%;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|