This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-02-03 14:06:44 +00:00
|
|
|
module.exports = {
|
2021-02-05 11:38:22 +00:00
|
|
|
purge: ["./src/**/*.js"],
|
2021-02-03 14:06:44 +00:00
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
2021-02-05 14:45:22 +00:00
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Metropolis", "Helvetica", "Arial", "Sans-Serif"],
|
|
|
|
},
|
|
|
|
},
|
2021-02-03 14:06:44 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|