38 lines
827 B
CSS
38 lines
827 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 222 30% 6%;
|
|
--foreground: 180 10% 96%;
|
|
--card: 222 25% 8%;
|
|
--card-foreground: 180 10% 96%;
|
|
--popover: 222 25% 8%;
|
|
--popover-foreground: 180 10% 96%;
|
|
--primary: 195 80% 50%;
|
|
--primary-foreground: 0 0% 100%;
|
|
--secondary: 45 80% 55%;
|
|
--secondary-foreground: 180 10% 96%;
|
|
--muted: 222 20% 14%;
|
|
--muted-foreground: 215 20% 65%;
|
|
--accent: 222 20% 14%;
|
|
--accent-foreground: 180 10% 96%;
|
|
--destructive: 0 62.8% 30.6%;
|
|
--destructive-foreground: 210 40% 98%;
|
|
--border: 222 20% 16%;
|
|
--input: 222 20% 16%;
|
|
--ring: 195 80% 50%;
|
|
--radius: 0.625rem;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|