2025-02-24 12:37:15 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
2025-03-03 14:52:15 +00:00
|
|
|
import plugin from "tailwindcss/plugin";
|
|
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
2025-02-24 12:37:15 +00:00
|
|
|
|
|
|
|
|
export default {
|
2025-03-03 14:52:15 +00:00
|
|
|
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)",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
plugin(({ addUtilities }) => {
|
|
|
|
|
addUtilities({
|
|
|
|
|
html: {
|
|
|
|
|
fontSize: "10px",
|
|
|
|
|
fontFamily: '"Inter", system-ui, sans-serif',
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}),
|
|
|
|
|
],
|
2025-02-24 12:37:15 +00:00
|
|
|
} satisfies Config;
|