I am using apache plugin : "cordova-plugin-statusbar" to color the status bar to my app theme.
Following is the code snippet for changing status bar color :
if(!StatusBar.isVisible){
StatusBar.show();
}
StatusBar.overlaysWebView(false);
StatusBar.backgroundColorByHexString(pinkColor); //pinkColor is defined
But this adds an extra padding below status bar.