The predominant color of my app is black. You have no idea how annoying is to use Ionic Lab where the background is very dark as well. I am not capable to see when the app starts nor the app ends ! no boundaries !
This is driving me crazy ! any solution ?
It is super annoying, and I couldn’t find anything on the official documentation on how to turn it off (maybe with a flag in the command line?).
Anyway, as a work around, what I am doing is setting the iframe’s background to white in the browser’s console:
document.querySelectorAll('ionlab-device-frame .frame-container iframe')
.forEach(x=> x.style.background = 'white')
This is not an optimal solution, but at list works for now, I’ll keep investigating.