Firstly, I do not mean changing the color on ion-header/ion-toolbar.

I would like to change the app bar/header color of my Ionic 4 app from the default blue to white. Is there a way to change this using only the config.xml?
I have previously tried
In app.component.ts initializeApp()
// let status bar overlay webview
this.statusBar.overlaysWebView(true);
// set status bar to white
this.statusBar.backgroundColorByHexString('#ffffff');
but this just changes the status bar (obviously). I was told to try it and I did...
Lastly, I would rather not install another cordova plugin (like cordova-plugin-headercolor).
Thank you guys for your time.