Files
GMW/frontend/src/styles.css
T

44 lines
1.0 KiB
CSS
Raw Normal View History

@import "tailwindcss";
@config "../tailwind.config.js";
2026-05-14 20:24:41 +07:00
@layer base {
:root {
--background: 222 47% 7%;
--foreground: 210 40% 98%;
--card: 222 47% 10%;
--card-foreground: 210 40% 98%;
--primary: 199 89% 48%;
--primary-foreground: 210 40% 98%;
--secondary: 217 33% 17%;
--secondary-foreground: 210 40% 98%;
--muted: 217 33% 17%;
--muted-foreground: 215 20% 65%;
--accent: 217 33% 17%;
--accent-foreground: 210 40% 98%;
--destructive: 0 72% 51%;
--destructive-foreground: 210 40% 98%;
--border: 217 33% 20%;
--input: 217 33% 20%;
--ring: 199 89% 48%;
--radius: 0.85rem;
}
2026-05-14 20:46:21 +07:00
* {
border-color: hsl(var(--border));
}
2026-05-14 20:24:41 +07:00
body {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
2026-05-14 20:24:41 +07:00
html,
body,
#root {
min-height: 100%;
}
2026-05-14 20:24:41 +07:00
}