2021-01-29 19:44:36 +00:00
|
|
|
// tailwind.config.js
|
|
|
|
|
|
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
|
|
|
|
module.exports = {
|
2021-12-20 22:03:05 +00:00
|
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
|
|
content: [ "./src/main/elm/**/*.elm",
|
|
|
|
"./src/main/styles/keep.txt",
|
|
|
|
"../restserver/src/main/templates/*.html"
|
|
|
|
],
|
2022-02-21 21:52:39 +00:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
screens: {
|
|
|
|
'3xl': '1792px',
|
|
|
|
'4xl': '2048px',
|
|
|
|
'5xl': '2560px',
|
|
|
|
'6xl': '3072px',
|
|
|
|
'7xl': '3584px'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-01-29 19:48:27 +00:00
|
|
|
variants: {
|
|
|
|
extend: {
|
|
|
|
backgroundOpacity: ['dark']
|
|
|
|
}
|
|
|
|
},
|
2021-01-29 19:44:36 +00:00
|
|
|
purge: false,
|
|
|
|
plugins: [
|
2021-01-29 19:48:27 +00:00
|
|
|
require('@tailwindcss/forms')
|
2021-01-29 19:44:36 +00:00
|
|
|
]
|
|
|
|
// prefix: 'tw-'
|
|
|
|
}
|