You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

globals.css 488B

1234567891011121314151617181920212223242526
  1. @import "tailwindcss";
  2. :root {
  3. --background: #ffffff;
  4. --foreground: #171717;
  5. }
  6. @theme inline {
  7. --color-background: var(--background);
  8. --color-foreground: var(--foreground);
  9. --font-sans: var(--font-geist-sans);
  10. --font-mono: var(--font-geist-mono);
  11. }
  12. @media (prefers-color-scheme: dark) {
  13. :root {
  14. --background: #0a0a0a;
  15. --foreground: #ededed;
  16. }
  17. }
  18. body {
  19. background: var(--background);
  20. color: var(--foreground);
  21. font-family: Arial, Helvetica, sans-serif;
  22. }