noveria.org/tailwind.config.js
2023-12-20 14:10:40 +01:00

30 lines
506 B
JavaScript

module.exports = {
content: [
'content/**/*.md',
'layouts/**/*.html'
],
theme: {
extend: {
spacing: {
'13': '3.25rem',
'14': '3.50rem',
'15': '3.75rem',
'16': '4.00rem',
'17': '4.25rem',
'18': '4.50rem',
'19': '4.75rem'
},
colors: {
'red': {
950: '#520000'
}
},
borderWidth: {
'1': '1px'
},
},
},
plugins: [
require('@tailwindcss/typography')
],
}