unset-tw-colors.css 614 B

12345678910111213141516171819202122
  1. /*
  2. * This file unsets all built-in Tailwind CSS colors for which we have overrides. Some of them might not exist in
  3. * Tailwind's default theme.
  4. */
  5. @theme {
  6. --color-amber-*: initial;
  7. --color-blue-*: initial;
  8. --color-crimson-*: initial;
  9. --color-gold-*: initial;
  10. --color-gray-*: initial;
  11. --color-green-*: initial;
  12. --color-indigo-*: initial;
  13. --color-orange-*: initial;
  14. --color-pink-*: initial;
  15. --color-purple-*: initial;
  16. --color-red-*: initial;
  17. --color-slate-*: initial;
  18. --color-tomato-*: initial;
  19. --color-violet-*: initial;
  20. --color-yellow-*: initial;
  21. --color-scale-*: initial;
  22. }