TypeScript · 395 bytes Raw Blame History
1 import type { Config } from "tailwindcss";
2
3 const config: Config = {
4 content: [
5 "./pages/**/*.{js,ts,jsx,tsx,mdx}",
6 "./components/**/*.{js,ts,jsx,tsx,mdx}",
7 "./app/**/*.{js,ts,jsx,tsx,mdx}",
8 ],
9 theme: {
10 extend: {
11 colors: {
12 background: "var(--background)",
13 foreground: "var(--foreground)",
14 },
15 },
16 },
17 plugins: [],
18 };
19 export default config;