47 lines
1.1 KiB
CSS
47 lines
1.1 KiB
CSS
@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 */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #0F1115;
|
|
color: white;
|
|
font-family: "Space Grotesk", sans-serif;
|
|
}
|
|
|
|
/* Modernize Iconography (2026 Trends) */
|
|
.material-icons {
|
|
font-family: 'Material Symbols Rounded' !important;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px;
|
|
line-height: 1;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
direction: ltr;
|
|
-webkit-font-feature-settings: 'liga';
|
|
font-feature-settings: 'liga';
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Thick Rounded Outlines - Hyper-modern & Accessible */
|
|
font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24;
|
|
}
|
|
|
|
/* Utilities for solid versions when needed */
|
|
.icon-filled {
|
|
font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
|
|
} |