Files
SIB/frontend/src/style.css

22 lines
376 B
CSS
Raw Normal View History

@import "tailwindcss";
@theme {
--color-primary: #fee715;
--color-primary-hover: #e5cf12;
--color-bg-hud: #0F1115;
--color-card-hud: #1C1F26;
--font-space: "Space Grotesk", sans-serif;
}
/* Global styles */
2026-02-21 09:53:31 -05:00
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #0F1115;
color: white;
font-family: "Space Grotesk", sans-serif;
}