2024-11-23 01:06:37 -05:00
|
|
|
import type { Config } from 'tailwindcss';
|
2024-10-16 16:58:05 -04:00
|
|
|
|
|
|
|
const config: Config = {
|
|
|
|
content: [
|
2024-11-23 01:06:37 -05:00
|
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
2024-10-16 16:58:05 -04:00
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2024-11-23 01:06:37 -05:00
|
|
|
background: 'var(--background)',
|
|
|
|
foreground: 'var(--foreground)',
|
2024-10-16 16:58:05 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|
|
|
|
export default config;
|