import type { Config } from "tailwindcss";

export default {
  content: [
    "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  ],
  theme: {
    extend: {
      colors: {
        background: "var(--background)",
        foreground: "var(--foreground)",
        extColorPrimary: "var(--ext-color-primary-1)",
        extColorPrimary2: "var(--ext-color-primary-2)",
        extColorPrimary3: "var(--ext-color-primary-3)",
        extColorPrimary4: "var(--ext-color-primary-4)",
      },
    },
  },
  plugins: [],
} satisfies Config;