cordova-plugin-darkmode

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i cordova-plugin-darkmode

Homepage

openmove.com

Weekly Downloads

13

Version

1.0.0

License

Apache-2

Unpacked Size

5.05 kB

Total Files

5

Last publish

Collaborators

  • openmove