You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
510 B

  1. import type { Config } from "tailwindcss";
  2. const config: Config = {
  3. content: [
  4. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  7. ],
  8. theme: {
  9. extend: {
  10. backgroundImage: {
  11. "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
  12. "gradient-conic":
  13. "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
  14. },
  15. },
  16. },
  17. plugins: [],
  18. };
  19. export default config;