DEV Community

Discussion on: How To Add Dark Mode Toggle in ReactJS + TailwindCSS + DaisyUI ⚛️🌼

Collapse
 
joepreludian profile image
Jonhnatha Trigueiro

Thank you a Mil! Worked like a charm.
If I would suggest you a small improvement about the line related to this code excerpt...

    document.querySelector("html").setAttribute("data-theme", localTheme);
Enter fullscreen mode Exit fullscreen mode

I would use this one instead;

    document.documentElement.setAttribute("data-theme", localTheme);
Enter fullscreen mode Exit fullscreen mode

Thank you!