Files
GMW/frontend/src/styles.css
T

42 lines
919 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
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
* {
@apply border-border;
}
2026-05-14 20:24:41 +07:00
body {
@apply bg-background text-foreground antialiased;
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
}