22 lines
416 B
JavaScript
22 lines
416 B
JavaScript
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
|
|
darkMode: 'media', // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
boxSizing: ['hover'],
|
|
},
|
|
container: {
|
|
center: true,
|
|
},
|
|
fontFamily: {
|
|
'body': ['Ubuntu', 'sans-serif'],
|
|
}
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|