docspell/modules/webapp/tailwind.config.js

31 lines
686 B
JavaScript
Raw Normal View History

2021-01-29 19:44:36 +00:00
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
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,
warmgray: colors.warmGray,
2021-01-29 19:44:36 +00:00
amber: colors.amber,
orange: colors.orange,
teal: colors.teal,
lime: colors.lime,
lightblue: colors.lightBlue
2021-01-29 19:44:36 +00:00
}
}
},
plugins: [
require('@tailwindcss/forms')
2021-01-29 19:44:36 +00:00
]
// prefix: 'tw-'
}