Layout scaffolding for Web apps.
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.
 
 
 

13 lines
212 B

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. :root {
  6. --color-bg: 244 244 244;
  7. --color-fg: 34 34 34;
  8. background-color: rgb(var(--color-bg));
  9. color: rgb(var(--color-fg));
  10. }
  11. }