florida-drupalcamp-tailwindcss/tailwind.config.js

31 lines
607 B
JavaScript
Raw Permalink 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: {
2020-12-27 12:28:00 +00:00
fontFamily: {
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif'],
sans: ['Helvetica', 'Arial', 'sans-serif']
},
2020-12-27 02:52:01 +00:00
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-27 12:28:00 +00:00
}
},
variants: {
extend: {},
},
plugins: [],
}