NPM Link: https://www.npmjs.com/package/tailwindcss-fluid-typography
import fluidType from 'https://esm.sh/tailwindcss-fluid-type';
export default {
theme: {
extend: {
colors: {
clifford: '#da373d',
}
}
},
plugins: [
fluidType ({
values: {
'base': 0,
'md': 2
}
})
]
}
Tip
fluidType is passing additional settings after you call it under plugin followed with:
({ values })