Setup tailwind with docspell build

This commit is contained in:
Eike Kettner
2021-01-29 20:44:36 +01:00
parent b3075cc6dc
commit 442b76c5af
7 changed files with 2965 additions and 3 deletions

21
tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
purge: false,
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
bluegray: colors.blueGray,
amber: colors.amber,
teal: colors.teal
}
}
},
variants: {},
plugins: [
]
// prefix: 'tw-'
}