dcbristol-2019-static/tailwind.js

21 lines
413 B
JavaScript

let defaultConfig = require('tailwindcss/defaultConfig')()
var colors = {
...defaultConfig.colors,
'black': '#000000',
}
module.exports = {
...defaultConfig,
colors: colors,
textColors: colors,
backgroundColors: colors,
borderColors: Object.assign({ default: colors['grey-light'] }, colors),
plugins: [],
options: {
...defaultConfig.options,
prefix: 'tw-',
important: true,
},
}