23 lines
419 B
JavaScript
23 lines
419 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
|
|
},
|
|
fontFamily: {
|
|
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif']
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|