I tried using different background images depending on the mode (default & dark). It seems that the dark variant isn't working as soon as I use a custom image. I added variants following Tailwind's instructions.
tailwind.config.js
module.exports = {
important: true,
// Active dark mode on class basis
darkMode: "class",
i18n: {
locales: ["en-US"],
defaultLocale: "en-US",
},
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
backgroundImage: theme => ({
'ysosb': "url('./images/y-so-serious.png')",
'ysosw': "url('./images/y-so-serious-white.png')",
})
}
},
variants: {
extend: {
backgroundColor: ["checked"],
backgroundImage: ["dark"],
borderColor: ["checked"],
inset: ["checked"],
zIndex: ["hover", "active"],
},
},
plugins: [],
future: {
purgeLayersByDefault: true,
},
};
JSX file
<section className="dark:bg-ysosb bg-ysosw shadow">
...
</section>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…