tailwind.config.js 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. green: colors.green,
  15. prisma: {
  16. 50: "#ebebeb",
  17. 100: "#d2d2d2",
  18. 200: "#bcbcbc",
  19. 300: "#a5a5a5",
  20. 400: "#8f8f8f",
  21. 500: "#797979",
  22. 600: "#626262",
  23. 700: "#4c4c4c",
  24. 800: "#353535",
  25. 900: "#1f1f1f",
  26. },
  27. },
  28. minHeight: {
  29. nav: "7rem",
  30. },
  31. gridTemplateColumns: {
  32. form: "1fr minmax(15rem, 2fr)",
  33. },
  34. screens: {
  35. xs: "475px",
  36. ...defaultTheme.screens,
  37. },
  38. extend: {},
  39. },
  40. plugins: [],
  41. };