tailwind.config.js 610 B

1234567891011121314151617181920212223242526272829303132
  1. // Example `tailwind.config.js` file
  2. const colors = require("tailwindcss/colors");
  3. module.exports = {
  4. theme: {
  5. colors: {
  6. gray: colors.coolGray,
  7. blue: colors.lightBlue,
  8. red: colors.rose,
  9. pink: colors.fuchsia,
  10. },
  11. fontFamily: {
  12. sans: ["Graphik", "sans-serif"],
  13. serif: ["Merriweather", "serif"],
  14. },
  15. extend: {
  16. spacing: {
  17. 128: "32rem",
  18. 144: "36rem",
  19. },
  20. borderRadius: {
  21. "4xl": "2rem",
  22. },
  23. },
  24. },
  25. variants: {
  26. extend: {
  27. borderColor: ["focus-visible"],
  28. opacity: ["disabled"],
  29. },
  30. },
  31. };