anycoder-dcd5a127 / styles /globals.css
BSJ2004's picture
Upload styles/globals.css with huggingface_hub
db00358 verified
raw
history blame contribute delete
366 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #0f172a;
--foreground: #f8fafc;
}
body {
color: var(--foreground);
background: var(--background);
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}