2022-03-16 21:02:34 +00:00
|
|
|
module.exports = {
|
2022-03-26 00:36:50 +00:00
|
|
|
content: ["./src/web/**/*.tsx", "./src/pages/**/*.tsx"],
|
2022-03-16 21:02:34 +00:00
|
|
|
darkMode: "media", // or 'media' or 'class'
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
backgroundImage: {
|
|
|
|
quri: "url('/icons/logo.svg')",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
margin: ["responsive", "hover"],
|
|
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
|
|
|
|
};
|