Files
ghost.sori.studio/tailwind.config.js

19 lines
337 B
JavaScript

module.exports = {
content: [
"./*.hbs",
"./partials/**/*.hbs",
"./assets/built/theme.js"
],
theme: {
extend: {
colors: {
brand: "#ff4400",
"brand-strong": "#e13b00"
}
}
},
corePlugins: {
preflight: false
}
}