rswag-online/frontend/app/globals.css

60 lines
1.5 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--primary: 195 80% 45%;
--primary-foreground: 0 0% 100%;
--secondary: 45 80% 55%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 210 40% 98%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--ring: 195 80% 45%;
--radius: 0.625rem;
}
.dark {
--background: 264 30% 6%;
--foreground: 180 10% 96%;
--card: 264 30% 6%;
--card-foreground: 180 10% 96%;
--popover: 264 30% 6%;
--popover-foreground: 180 10% 96%;
--primary: 195 80% 50%;
--primary-foreground: 264 30% 6%;
--secondary: 45 80% 55%;
--secondary-foreground: 180 10% 96%;
--muted: 264 20% 15%;
--muted-foreground: 215 20.2% 65.1%;
--accent: 264 20% 15%;
--accent-foreground: 180 10% 96%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--border: 264 20% 15%;
--input: 264 20% 15%;
--ring: 195 80% 50%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}