This relates to #655
Overview
By exposing access to resolved configuration file users will be able to extend default theme in a more intuitive way.
const defaultConfig = require('tailwindcss/defaultConfig')
module.exports = {
// ...
theme: {
borderWidths: {
...defaultConfig.theme.borderWidths,
'10': '10px',
'12': '12px',
},
}
}
Please see #756 for implementation details.