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.
skynet-webportal/packages/dashboard/tailwind.config.js

21 lines
407 B
JavaScript
Raw Normal View History

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:13:48 +00:00
orange: colors.green,
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-08 18:07:23 +00:00
plugins: [require("@tailwindcss/forms")],
2021-02-03 14:06:44 +00:00
};