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-09 10:13:48 +00:00
|
|
|
const colors = require("tailwindcss/colors");
|
|
|
|
|
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-08 18:07:23 +00:00
|
|
|
colors: {
|
2021-02-09 10:22:23 +00:00
|
|
|
orange: colors.orange,
|
2021-02-08 18:07:23 +00:00
|
|
|
},
|
2021-02-05 14:45:22 +00:00
|
|
|
},
|
2021-02-03 14:06:44 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2021-02-09 10:22:23 +00:00
|
|
|
plugins: [
|
|
|
|
// require("@tailwindcss/forms")
|
|
|
|
],
|
2021-02-03 14:06:44 +00:00
|
|
|
};
|