File size: 279 Bytes
3458306 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: dark;
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #020617; /* slate-950 */
color: #e5e7eb; /* slate-200 */
}
|