File size: 523 Bytes
de886f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #09090b;
--foreground: #fafafa;
}
* { box-sizing: border-box; }
body {
background: var(--background);
color: var(--foreground);
font-family: 'Inter', system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111113; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; } |