2021-01-29 19:44:36 +00:00
|
|
|
// tailwind.config.js
|
|
|
|
|
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
|
|
|
module.exports = {
|
2021-01-29 19:48:27 +00:00
|
|
|
variants: {
|
|
|
|
extend: {
|
|
|
|
backgroundOpacity: ['dark']
|
|
|
|
}
|
|
|
|
},
|
2021-01-29 19:44:36 +00:00
|
|
|
purge: false,
|
|
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
bluegray: colors.blueGray,
|
2021-01-29 19:48:27 +00:00
|
|
|
warmgray: colors.warmGray,
|
2021-01-29 19:44:36 +00:00
|
|
|
amber: colors.amber,
|
2021-01-29 19:48:27 +00:00
|
|
|
orange: colors.orange,
|
|
|
|
teal: colors.teal,
|
|
|
|
lime: colors.lime,
|
|
|
|
lightblue: colors.lightBlue
|
2021-01-29 19:44:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [
|
2021-01-29 19:48:27 +00:00
|
|
|
require('@tailwindcss/forms')
|
2021-01-29 19:44:36 +00:00
|
|
|
]
|
|
|
|
// prefix: 'tw-'
|
|
|
|
}
|