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