Re: [w3c/manifest] Web Manifest Overrides (Issue #1045)

Browser extensions now solve this via [`icon_variants`](https://github.com/w3c/webextensions/blob/main/proposals/dark_mode_extension_icons.md#examples): 

```json
"icon_variants": [
  {
    "any": "any.svg"
  },
  {
    "16": "16.png",
    "32": "32.png"
  },
  {
    "16": "dark16.png",
    "32": "dark32.png",
    "color_schemes": ["dark"],
  },
  {
    "16": "light16.png",
    "32": "light32.png",
    "color_schemes": ["dark", "light"]
  }
]
}
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/1045#issuecomment-2384286570
You are receiving this because you are subscribed to this thread.

Message ID: <w3c/manifest/issues/1045/2384286570@github.com>

Received on Monday, 30 September 2024 22:25:45 UTC