/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,ts,jsx,tsx}", "./src/app/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { background: "var(--background)", foreground: "var(--foreground)", }, fontFamily: { sans: ["var(--font-geist-sans)", "Arial", "sans-serif"], mono: ["var(--font-geist-mono)", "monospace"], }, }, }, plugins: [], };