File size: 486 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
const plugin = require('tailwindcss/plugin')
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./app/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [
plugin(function ({ addVariant }) {
// this class is applied to `html` by `app/theme-efect.ts`, similar
// to how `dark:` gets enabled
addVariant('theme-system', '.theme-system &')
}),
],
future: {
hoverOnlyWhenSupported: true,
},
}
|