Files
estimation-flow/src/app/globals.css
T
Leon Serfaty G 2cb510f038 Updated app
2025-07-17 11:27:37 +00:00

60 lines
1.4 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 222 47% 11%;
--foreground: 0 0% 98%;
--card: 224 35% 15%;
--card-foreground: 0 0% 98%;
--popover: 222 47% 11%;
--popover-foreground: 0 0% 98%;
--primary: 221 100% 58%;
--primary-foreground: 0 0% 9%;
--secondary: 222 25% 20%;
--secondary-foreground: 0 0% 98%;
--muted: 222 25% 20%;
--muted-foreground: 222 10% 63.9%;
--accent: 263 47% 53%;
--accent-foreground: 0 0% 98%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 224 35% 20%;
--input: 222 25% 20%;
--ring: 221 100% 58%;
--radius: 0.5rem;
}
.dark {
--background: 222 47% 11%;
--foreground: 0 0% 98%;
--card: 224 35% 15%;
--card-foreground: 0 0% 98%;
--popover: 222 47% 11%;
--popover-foreground: 0 0% 98%;
--primary: 221 100% 58%;
--primary-foreground: 0 0% 9%;
--secondary: 222 25% 20%;
--secondary-foreground: 0 0% 98%;
--muted: 222 25% 20%;
--muted-foreground: 222 10% 63.9%;
--accent: 263 47% 53%;
--accent-foreground: 0 0% 98%;
--destructive: 0 72.2% 50.6%;
--destructive-foreground: 0 0% 98%;
--border: 224 35% 20%;
--input: 222 25% 20%;
--ring: 221 100% 58%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}