blob: 0705d750e0a8801dc260344bf1c7f82e4513c2bc [file] [log] [blame]
const colors = require('tailwindcss/colors')
module.exports = {
jit: true,
// add '~tailwind.config` alias
exposeConfig: true,
theme: {
extend: {
colors: {
orange: colors.orange,
'blue-gray': colors.blueGray,
emerald: colors.emerald,
lime: colors.lime,
teal: colors.teal,
'light-blue': colors.lightBlue
}
}
}
}