florida-drupalcamp-tailwindcss/tailwind.config.js

30 lines
550 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: {
2020-12-27 04:03:37 +00:00
'hit-pink': '#FBA786',
2020-12-26 22:41:48 +00:00
blue: colors.lightBlue,
2020-12-27 04:03:37 +00:00
dandelion: '#FFDC67',
gray: colors.trueGray,
white: '#ffffff'
2020-12-26 22:41:48 +00:00
},
2020-12-26 22:42:09 +00:00
fontFamily: {
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif']
},
},
variants: {
extend: {},
},
plugins: [],
}