Files
webextensions-examples/themed-icons/prefers-color-scheme-icon.svg
rebloor f4d0193956 Bug-2001318 example showing SVG icon reacting to theme (#620)
* Bug-2001318 example showing SVG icon reacting to theme

* Updates for feedback
2026-03-12 04:42:31 +13:00

14 lines
384 B
XML

<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<style>
#outside { fill: black; }
#inside { fill: red; }
@media (prefers-color-scheme: dark) {
#outside { fill: white; }
#inside { fill: black; }
}
</style>
<rect id="outside" width="16" height="16" />
<rect id="inside" x="4" y="4" width="8" height="8" />
</svg>