21 lines
548 B
TypeScript
21 lines
548 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.blue,
|
|
DEFAULT: colors.blue[300]
|
|
},
|
|
neutral: {
|
|
...colors.gray,
|
|
DEFAULT: colors.gray[300]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [tailwindTypography]
|
|
} |