tailwind.config.js 875 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* eslint-disable @typescript-eslint/no-var-requires */
  2. const defaultTheme = require("tailwindcss/defaultTheme");
  3. const colors = require("tailwindcss/colors");
  4. module.exports = {
  5. content: [
  6. "./pages/**/*.{js,ts,jsx,tsx}",
  7. "./components/**/*.{js,ts,jsx,tsx}",
  8. ],
  9. theme: {
  10. colors: {
  11. white: colors.white,
  12. black: colors.black,
  13. red: colors.red,
  14. prisma: {
  15. 50: "#ebebeb",
  16. 100: "#d2d2d2",
  17. 200: "#bcbcbc",
  18. 300: "#a5a5a5",
  19. 400: "#8f8f8f",
  20. 500: "#797979",
  21. 600: "#626262",
  22. 700: "#4c4c4c",
  23. 800: "#353535",
  24. 900: "#1f1f1f",
  25. },
  26. },
  27. minHeight: {
  28. nav: "7rem",
  29. },
  30. gridTemplateColumns: {
  31. form: "1fr minmax(15rem, 2fr)",
  32. },
  33. screens: {
  34. xs: "475px",
  35. ...defaultTheme.screens,
  36. },
  37. extend: {},
  38. },
  39. plugins: [],
  40. };