mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
14 lines
384 B
XML
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>
|