2026-02-01 23:26:21 +05:30
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
darkMode: ["class"],
|
2026-02-04 02:28:51 +05:30
|
|
|
content: ["./src/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}"],
|
2026-02-01 23:26:21 +05:30
|
|
|
theme: {
|
|
|
|
|
extend: {
|
2026-02-04 02:28:51 +05:30
|
|
|
fontFamily: {
|
|
|
|
|
heading: ["var(--font-heading)", "sans-serif"],
|
|
|
|
|
body: ["var(--font-body)", "sans-serif"],
|
2026-02-01 23:26:21 +05:30
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [require("tailwindcss-animate")],
|
|
|
|
|
};
|