manifold/web/tailwind.config.js

20 lines
458 B
JavaScript
Raw Normal View History

module.exports = {
2021-12-02 23:39:11 +00:00
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
2021-12-02 23:21:43 +00:00
fontFamily: {
2021-12-02 23:39:11 +00:00
"major-mono": ["Major Mono Display", "monospace"],
2021-12-02 23:21:43 +00:00
},
extend: {
backgroundImage: {
2021-12-02 23:39:11 +00:00
"world-trading": "url('/world-trading-background.jpg')",
},
},
},
variants: {
extend: {},
},
2021-12-02 23:39:11 +00:00
plugins: [require("@tailwindcss/forms")],
};