Keep capacitor StatusBar dark regardless of phones theme

How do I make it so that the status bar stays black? at the moment is changes to white when the phone is on dark mode, but I haven’t added a dark mode to my app yet so it goes white on a white background.

Use Statusbar plugin https://capacitorjs.com/docs/apis/status-bar

Capacitor.Plugins.StatusBar.setStyle({ style: StatusBarStyle.Light });

Thank you, I knew it would be something simple I missed! :+1: