mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
22 lines
421 B
JavaScript
22 lines
421 B
JavaScript
module.exports = {
|
|
darkMode: 'class',
|
|
content: ["./site/**/*.{html,md}", "elm/**/*.elm"],
|
|
theme: {
|
|
fontFamily: {
|
|
'serif': ['Spectral', 'serif'],
|
|
'mono': ['"Source Code Pro"', 'mono'],
|
|
'sans': ['"Montserrat"', 'sans-serif']
|
|
},
|
|
extend: {
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
display: ['dark']
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')
|
|
],
|
|
}
|