globals.css 345 B

123456789101112131415161718192021
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. --background: #ffffff;
  6. --foreground: #171717;
  7. }
  8. @media (prefers-color-scheme: dark) {
  9. :root {
  10. --background: #0a0a0a;
  11. --foreground: #ededed;
  12. }
  13. }
  14. body {
  15. color: var(--foreground);
  16. background: var(--background);
  17. font-family: Arial, Helvetica, sans-serif;
  18. }