Layout scaffolding for Web apps.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  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. }