File size: 1,159 Bytes
0a0a57b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
/* Rovin Design System (Professional Matte) */
--bg-dark: #0A0A0A;
/* Deepest Black */
--bg-card: #161617;
/* Matte Dark Grey */
--bg-card-hover: #1C1C1E;
/* Slightly Lighter */
--accent-primary: #FF4D00;
/* Burned Orange (Matte) */
--accent-secondary: #E64600;
--accent-gradient: #FF4D00;
/* NO GRADIENT - Solid */
--text-primary: #F5F5F7;
/* Off-white for less eye strain */
--text-secondary: #86868B;
/* Apple-style grey */
--text-muted: #6E6E73;
--border-color: rgba(255, 255, 255, 0.08);
--border-hover: rgba(255, 77, 0, 0.3);
--success: #32D74B;
--warning: #FF9F0A;
--error: #FF453A;
--radius: 12px;
/* Professional curve, not too round */
--radius-sm: 6px;
--font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
background-color: var(--bg-dark);
color: var(--text-primary);
font-family: var(--font-display);
-webkit-font-smoothing: antialiased;
letter-spacing: -0.01em;
}
body {
margin: 0;
min-height: 100vh;
}
#root {
min-height: 100vh;
} |