mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
26 lines
606 B
JavaScript
26 lines
606 B
JavaScript
// tailwind.config.js
|
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
content: [ "./src/main/elm/**/*.elm",
|
|
"./src/main/styles/keep.txt",
|
|
"../restserver/src/main/templates/*.html"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
'3xl': '1792px',
|
|
'4xl': '2048px',
|
|
'5xl': '2560px',
|
|
'6xl': '3072px',
|
|
'7xl': '3584px'
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')
|
|
]
|
|
}
|