Capital/tailwind.config.ts

19 lines
425 B
TypeScript
Raw Normal View History

2025-01-03 16:37:26 +00:00
import type { Config } from 'tailwindcss'
2025-01-01 12:10:22 +00:00
export default {
content: [
2025-01-03 16:37:26 +00: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 12:10:22 +00:00
],
theme: {
extend: {
colors: {
2025-01-03 16:37:26 +00:00
background: 'var(--background)',
foreground: 'var(--foreground)',
2025-01-01 12:10:22 +00:00
},
},
},
2025-01-03 16:37:26 +00:00
plugins: [require('@tailwindcss/typography')],
} satisfies Config