halfmoon icon indicating copy to clipboard operation
halfmoon copied to clipboard

Added dark-mode event

Open apps-caraga opened this issue 3 years ago • 0 comments

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
		} 
   });

apps-caraga avatar Feb 09 '23 01:02 apps-caraga