Slide 73
Slide 73 text
module.exports = {
theme: {
borderColor: theme => ({ 'green': theme('colors.green.300') }),
divideColor: theme => ({ 'green': theme('colors.green.300') }),
translate: { '1': '0.25rem' },
},
corePlugins: [
'placeholderColor', 'placeholderOpacity', 'textOpacity',
'skew', 'scale', 'rotate', 'gap',
'gridColumn', 'gridColumnStart', 'gridColumnEnd',
'gridRow', 'gridRowStart', 'gridRowEnd',
].reduce((list, plugin) => ({ [plugin]: false, ...list }), {}),
variants: {
textColor: ['hover', 'focus'],
backgroundColor: ['hover', 'focus'],
borderRadius: [], borderOpacity: ['hover', 'focus'],
transitionDuration: [], transitionDelay: [],
},
}
tailwind.config.js