Files

35 lines
560 B
CSS
Raw Permalink Normal View History

2026-09-13 20:20:06 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primeira-red: #E42518;
--primeira-green: #006600;
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: linear-gradient(to bottom, #f5f5f5, #ffffff);
min-height: 100vh;
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
/* Suppress hydration errors */
[data-hydration-error] {
display: none !important;
}