Files
Sybil-2/web/src/index.css

37 lines
783 B
CSS
Raw Normal View History

2026-02-13 23:15:12 -08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
2026-02-13 23:20:57 -08:00
--background: 224 20% 10%;
--foreground: 210 40% 96%;
--muted: 223 18% 16%;
--muted-foreground: 217 15% 65%;
--border: 223 16% 22%;
--input: 223 16% 22%;
--ring: 215 85% 63%;
--primary: 210 40% 98%;
--primary-foreground: 224 24% 11%;
--secondary: 223 18% 18%;
--secondary-foreground: 210 40% 98%;
--accent: 223 18% 20%;
--accent-foreground: 210 40% 98%;
2026-02-13 23:15:12 -08:00
--radius: 0.65rem;
}
* {
@apply border-border;
}
html,
body,
#app {
height: 100%;
}
body {
2026-02-13 23:20:57 -08:00
@apply bg-background text-foreground antialiased;
background-image: radial-gradient(circle at top, hsl(222 30% 18%) 0%, hsl(224 21% 11%) 45%, hsl(224 20% 9%) 100%);
2026-02-13 23:15:12 -08:00
font-family: "Soehne", "Avenir Next", "Segoe UI", sans-serif;
}