2020-12-26 22:41:48 +00:00
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
2020-12-26 22:03:46 +00:00
|
|
|
module.exports = {
|
|
|
|
purge: {
|
|
|
|
content: ['templates/**/*.twig']
|
|
|
|
},
|
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
2020-12-26 22:41:48 +00:00
|
|
|
colors: {
|
|
|
|
blue: colors.lightBlue,
|
|
|
|
gray: colors.trueGray
|
|
|
|
},
|
2020-12-26 22:03:46 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|