Use forms with or without client-side JavaScript--no code duplication required!
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

28 righe
538 B

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. --foreground-rgb: 0, 0, 0;
  6. --background-start-rgb: 214, 219, 220;
  7. --background-end-rgb: 255, 255, 255;
  8. }
  9. @media (prefers-color-scheme: dark) {
  10. :root {
  11. --foreground-rgb: 255, 255, 255;
  12. --background-start-rgb: 0, 0, 0;
  13. --background-end-rgb: 0, 0, 0;
  14. }
  15. }
  16. body {
  17. color: rgb(var(--foreground-rgb));
  18. background: linear-gradient(
  19. to bottom,
  20. transparent,
  21. rgb(var(--background-end-rgb))
  22. )
  23. rgb(var(--background-start-rgb));
  24. }