tailwind.config.js 731 B

12345678910111213141516171819202122232425262728293031323334
  1. const colors = require("tailwindcss/colors");
  2. const defaultTheme = require("tailwindcss/defaultTheme");
  3. module.exports = {
  4. purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
  5. darkMode: false, // or 'media' or 'class'
  6. theme: {
  7. colors: {
  8. primary: colors.yellow,
  9. secondary: colors.purple,
  10. },
  11. fontFamily: {
  12. default: ["Raleway", "sans-serif"],
  13. display: ["Lekton"],
  14. },
  15. letterSpacing: {
  16. tightest: "-.05em",
  17. tight: "-.05px",
  18. comfy: ".15px",
  19. wide: ".25px",
  20. wider: "1.25px",
  21. widest: "1.5px",
  22. },
  23. extend: {
  24. fontSize: {
  25. "7xl": "5rem",
  26. },
  27. },
  28. },
  29. variants: {
  30. extend: {},
  31. },
  32. plugins: [],
  33. };