How can i change the Android Status Bar Color when using Vuetify PWA Template

Viewed 2740

I am using the predefined PWA Template from VuetifyJS and i want to change/set the Android Status Bar BackgroundColor that will be used when the PWA is installed on my Android Phone.

1 Answers

Add this somewhere in your head element with the colour of your choice as the content:

<meta name="theme-color" content="#ffffff">

More info if you need it.

Related