1.0.0 • Published 5 years ago

cordova-plugin-darkmode v1.0.0

Weekly downloads
21
License
Apache-2
Repository
github
Last release
5 years ago

Cordova plugin DarkMode

!! Android only !!

This plugin only detects if dark (also called night) mode is enable or disable on Android. It can tell you if inverted color mode is enabled, too.

This is usefull in case Android WebView on user device is not updated or you are using Crosswalk, otherwise you should use prefer-color-scheme in css.

Install

cordova plugin add cordova-plugin-darkmode

Example

darkmode.isDarkModeEnabled(
    function(res){
        //true/false
        alert("Dark Mode: "+res);
    }, function(err){
        console.err(err);
    });

darkmode.isInversionEnabled(
    function(res){
        //true/false
        alert("Inverted Colors: "+res);
    },
    function(err){
        console.err(err);
    });