florida-drupalcamp-tailwindcss/tailwind.config.js

27 lines
469 B
JavaScript
Raw Normal View History

2020-12-26 22:41:48 +00:00
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: ['templates/**/*.twig']
},
darkMode: false, // or 'media' or 'class'
theme: {
2020-12-27 02:52:01 +00:00
extend: {
screens: {
sm: '700px'
}
},
2020-12-26 22:41:48 +00:00
colors: {
blue: colors.lightBlue,
gray: colors.trueGray
},
2020-12-26 22:42:09 +00:00
fontFamily: {
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif']
},
},
variants: {
extend: {},
},
plugins: [],
}