- From: Alex Gustafsson <notifications@github.com>
- Date: Sat, 17 May 2025 02:24:05 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 17 May 2025 09:24:09 UTC
AlexGustafsson left a comment (w3c/manifest#975) Sorry if this is just noise, but this issue is ranking high on Google. At least for iOS these days, you already get the desired behavior by using the mentioned meta tags and just not including them in the manifest. I'm not sure what the support is like on other platform. ```html <!-- index.html --> <meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" /> <meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000000" /> <link rel="manifest" href="manifest.json" /> ``` ```jsonc // manifest.json { "name": "Example", "icons": [ { "src": "/assets/icon.png", "sizes": "256x256", "type": "image/png" } ], "start_url": "/", "display": "standalone" } ``` -- Reply to this email directly or view it on GitHub: https://github.com/w3c/manifest/issues/975#issuecomment-2888247633 You are receiving this because you are subscribed to this thread. Message ID: <w3c/manifest/issues/975/2888247633@github.com>
Received on Saturday, 17 May 2025 09:24:09 UTC