Implementing a Dark Mode Toggle in Laravel with Tailwind CSS 4
TailwindCSS 4 out the box supports prefers-color-scheme CSS media feature, I want class based dark mode support. To enable this add the following to your resources/css/app.css file
@custom-variant dark (&:where(.dark, .dark *));
This allows dark m...
dcblog.dev2 min read