- From: Thomas Steiner <notifications@github.com>
- Date: Mon, 30 Sep 2024 15:25:41 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 30 September 2024 22:25:45 UTC
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