fosrl.pangolin/tailwind.config.ts

20 lines
465 B
TypeScript
Raw Normal View History

2024-09-27 19:48:49 -04:00
import type { Config } from "tailwindcss";
const config: Config = {
2024-09-27 21:39:03 -04: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)",
},
},
2024-09-27 19:48:49 -04:00
},
2024-09-27 21:39:03 -04:00
plugins: [],
2024-09-27 19:48:49 -04:00
};
export default config;