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.
 
 

36 line
717 B

  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-portal, 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: var(--font-portal, Arial, Helvetica, sans-serif);
  22. }
  23. /* Force native form controls to inherit the page font (Firefox/Chromium use the OS UI font for <option> otherwise). */
  24. select,
  25. option,
  26. input,
  27. textarea,
  28. button {
  29. font-family: inherit;
  30. }