kakawa/tailwind.config.ts

20 lines
407 B
TypeScript
Raw Normal View History

2024-09-23 17:35:32 +00:00
import type { Config } from 'tailwindcss';
2024-09-23 08:00:25 +00:00
const config: Config = {
content: [
2024-09-23 17:35:32 +00:00
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
2024-09-23 08:00:25 +00:00
],
theme: {
extend: {
colors: {
2024-09-23 17:35:32 +00:00
background: 'var(--background)',
foreground: 'var(--foreground)',
2024-09-23 08:00:25 +00:00
},
},
},
plugins: [],
};
export default config;