Move webapp related build files into the webapp directory

This commit is contained in:
eikek
2021-06-22 23:40:42 +02:00
parent 6a4f1c148d
commit 9e552d2ac1
11 changed files with 12 additions and 6 deletions

View File

@ -0,0 +1,30 @@
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
variants: {
extend: {
backgroundOpacity: ['dark']
}
},
purge: false,
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
bluegray: colors.blueGray,
warmgray: colors.warmGray,
amber: colors.amber,
orange: colors.orange,
teal: colors.teal,
lime: colors.lime,
lightblue: colors.lightBlue
}
}
},
plugins: [
require('@tailwindcss/forms')
]
// prefix: 'tw-'
}