Files
sass-mohfarawati/app/globals.css
T
2026-03-06 13:53:57 +01:00

25 lines
320 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
.dark {
--background: #0a0a0a;
--foreground: #ededed;
}
body {
color: var(--foreground);
background: var(--background);
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}