16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
import colors from 'tailwindcss/colors'
|
|
import tailwindTypography from '@tailwindcss/typography'
|
|
|
|
export default <Partial<Config>>{
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: colors.green
|
|
}
|
|
}
|
|
},
|
|
config: {
|
|
plugins: [tailwindTypography]
|
|
}
|
|
} |