merakiui/tailwind.config.js
khatab Wedaa ce79c7f31a
Dark Mode (#33)
* Add dark mode to webiste

* wip

* wip

* wip

* wip

* wip

* Add dark mode to all components and fix some style
2020-12-26 12:35:46 +02:00

22 lines
467 B
JavaScript

module.exports = {
purge: ["./src/**/*.vue"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
roboto: ["Roboto"],
},
spacing: {
80: "20rem",
96: "24rem",
112: "28rem",
128: "32rem",
},
},
},
variants: {
transitionProperty: ({ after }) => after(["motion-reduce"]),
},
plugins: [],
};