2024-11-28 14:50:17 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
|
|
|
|
export default {
|
2024-12-09 15:36:17 +00:00
|
|
|
content: [
|
|
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./layouts/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
background: "var(--background)",
|
|
|
|
foreground: "var(--foreground)",
|
|
|
|
},
|
|
|
|
},
|
2024-11-28 14:50:17 +00:00
|
|
|
},
|
2024-12-09 15:36:17 +00:00
|
|
|
plugins: [],
|
|
|
|
darkMode: "class",
|
2024-11-28 14:50:17 +00:00
|
|
|
} satisfies Config;
|