You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hippo4j/docs/tailwind.config.js

11 lines
285 B

module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
corePlugins: { preflight: false },
// set dark mode. example <h1 className="text-black dark:text-white">Hello, World!</h1>
darkMode: ["class", '[data-theme="dark"]'],
};