20 lines
290 B
JavaScript
20 lines
290 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./_layouts/*.html",
|
|
"./_includes/*.html",
|
|
"./index.html",
|
|
"./developers.html",
|
|
"./posts.html",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'moxxy-purple': '#cf4aff',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|