File size: 417 Bytes
5e26aa6 b6b0a70 5e26aa6 b6b0a70 5e26aa6 b6b0a70 5e26aa6 22aa376 |
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 |
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 75, 75, 75;
--background-rgb: 255, 255, 255;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: 0, 0, 0;
}
}
body {
color: rgb(var(--foreground-rgb));
background: rgb(var(--background-rgb));
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
|