Background Color on PWA

The code below will do exaclty what you are looking for. I have spent a long time on
this issue and from my tests, it is instant loading of the desired color.

Add the following into your Native Libraries.

<meta name="theme-color" content="#000000">
  
<script defer>
        document.querySelector('meta[name="theme-color"]').setAttribute('content', '#000000');
</script>
4 Likes