const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./index.html', './example/**/*.{vue,js,ts,jsx,tsx}', './lib/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false,
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
colors: {
gray: colors.gray,
green: colors.green,
blue: colors.blue,
red: colors.rose,
yellow: colors.yellow,
pink: colors.fuchsia,
white: colors.white,
amber: colors.amber,
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
extend: {
spacing: {
128: '32rem',
144: '36rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
variants: {
extend: {},
},
plugins: [],
}