mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Move webapp related build files into the webapp directory
This commit is contained in:
30
modules/webapp/tailwind.config.js
Normal file
30
modules/webapp/tailwind.config.js
Normal 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-'
|
||||
}
|
Reference in New Issue
Block a user