presentations/tailwind.config.js

19 lines
325 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: ['templates/**/*.twig']
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
colors: {
blue: colors.lightBlue,
gray: colors.trueGray
},
},
variants: {
extend: {},
},
plugins: [],
}