Files
estimation-flow/src/app/globals.css
T

60 lines
1.4 KiB
CSS
Raw Normal View History

2025-07-16 17:57:52 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
2025-07-17 11:27:37 +00:00
--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%;
2025-07-17 10:06:15 +00:00
--primary: 221 100% 58%;
2025-07-17 11:27:37 +00:00
--primary-foreground: 0 0% 9%;
--secondary: 222 25% 20%;
--secondary-foreground: 0 0% 98%;
--muted: 222 25% 20%;
--muted-foreground: 222 10% 63.9%;
2025-07-17 10:06:15 +00:00
--accent: 263 47% 53%;
--accent-foreground: 0 0% 98%;
2025-07-16 17:57:52 +00:00
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
2025-07-17 11:27:37 +00:00
--border: 224 35% 20%;
--input: 222 25% 20%;
2025-07-17 10:06:15 +00:00
--ring: 221 100% 58%;
2025-07-17 11:27:37 +00:00
--radius: 0.5rem;
2025-07-16 17:57:52 +00:00
}
2025-07-17 10:06:15 +00:00
2025-07-16 17:57:52 +00:00
.dark {
2025-07-17 10:06:15 +00:00
--background: 222 47% 11%;
2025-07-16 17:57:52 +00:00
--foreground: 0 0% 98%;
--card: 224 35% 15%;
2025-07-16 17:57:52 +00:00
--card-foreground: 0 0% 98%;
2025-07-17 10:06:15 +00:00
--popover: 222 47% 11%;
2025-07-16 17:57:52 +00:00
--popover-foreground: 0 0% 98%;
2025-07-17 10:06:15 +00:00
--primary: 221 100% 58%;
2025-07-16 17:57:52 +00:00
--primary-foreground: 0 0% 9%;
2025-07-17 10:06:15 +00:00
--secondary: 222 25% 20%;
2025-07-16 17:57:52 +00:00
--secondary-foreground: 0 0% 98%;
2025-07-17 10:06:15 +00:00
--muted: 222 25% 20%;
--muted-foreground: 222 10% 63.9%;
--accent: 263 47% 53%;
2025-07-16 17:57:52 +00:00
--accent-foreground: 0 0% 98%;
2025-07-17 11:27:37 +00:00
--destructive: 0 72.2% 50.6%;
2025-07-16 17:57:52 +00:00
--destructive-foreground: 0 0% 98%;
--border: 224 35% 20%;
2025-07-17 10:06:15 +00:00
--input: 222 25% 20%;
--ring: 221 100% 58%;
2025-07-16 17:57:52 +00:00
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}