Skip to content

Instantly share code, notes, and snippets.

@lewebsimple
Created January 27, 2025 16:42
Show Gist options
  • Save lewebsimple/3d2b05bc0bc9219d858b1236c33323d3 to your computer and use it in GitHub Desktop.
Save lewebsimple/3d2b05bc0bc9219d858b1236c33323d3 to your computer and use it in GitHub Desktop.
Tailwind CSS reversible dark mode selector
import type { Config } from "tailwindcss";
export default {
darkMode: ["variant", "&:where(.dark, .dark *):not(.not-dark, .not-dark *)"],
theme: {
extend: {},
},
plugins: [],
content: [],
} satisfies Config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment