halfmoonui / halfmoon

Halfmoon is a highly customizable, drop-in Bootstrap replacement. It comes with three built-in core themes, with dark mode support for all themes and components.
https://www.gethalfmoon.com
MIT License
3.01k stars 118 forks source link

Added dark-mode event #133

Closed apps-caraga closed 5 months ago

apps-caraga commented 1 year ago

Added custom event to be triggered when the darkmode is toggled. Sample use:

document.body.addEventListener("darkmode-toggled", function(event) {
        if(event.detail.darkModeOn){
            //do something like adjust images to be more visible, or anything else you want to do in the darkmode 😁
        }else{
            //light-mode
        } 
   });