website/tailwind.config.js

16 lines
218 B
JavaScript
Raw Permalink Normal View History

2023-01-24 17:20:04 +00:00
module.exports = {
content: [
2024-01-13 12:25:00 +00:00
"./templates/*.html"
2023-01-24 17:20:04 +00:00
],
theme: {
2024-01-13 12:25:00 +00:00
extend: {
colors: {
'moxxy-purple': '#cf4aff',
},
},
2023-01-24 17:20:04 +00:00
},
plugins: [
require('@tailwindcss/typography'),
],
}