tailwind.config.js 1005 B

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