next-cochise/src/app/globals.css
2025-02-03 17:09:38 +07:00

30 lines
538 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
.bg-gradient {
background: linear-gradient(135deg, #6ec2b6, #90d4c9);
position: relative;
border-bottom-left-radius: 50% 10%;
border-bottom-right-radius: 50% 10%;
padding: 60px 0;
}