website/tailwind.config.js

16 lines
218 B
JavaScript

module.exports = {
content: [
"./templates/*.html"
],
theme: {
extend: {
colors: {
'moxxy-purple': '#cf4aff',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}