import type { Config } from 'tailwindcss' import colors from 'tailwindcss/colors' import tailwindTypography from '@tailwindcss/typography' export default >{ theme: { extend: { colors: { primary: { ...colors.blue, DEFAULT: colors.blue[300] }, neutral: { ...colors.gray, DEFAULT: colors.gray[300] } } } }, plugins: [tailwindTypography] }