35 lines
560 B
CSS
35 lines
560 B
CSS
@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;
|
|
}
|