Capital/tailwind.config.ts

19 lines
425 B
TypeScript
Raw Normal View History

2025-01-04 00:37:26 +08:00
import type { Config } from 'tailwindcss'
2025-01-01 20:10:22 +08:00
export default {
content: [
2025-01-04 00:37:26 +08:00
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
2025-01-01 20:10:22 +08:00
],
theme: {
extend: {
colors: {
2025-01-04 00:37:26 +08:00
background: 'var(--background)',
foreground: 'var(--foreground)',
2025-01-01 20:10:22 +08:00
},
},
},
2025-01-04 00:37:26 +08:00
plugins: [require('@tailwindcss/typography')],
} satisfies Config