blob: 5523ff39fa4983e4cf42d0c6f4cb1ac8cef3fe9d (
plain)
1
2
3
4
5
6
7
8
9
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<style>
:root { color: blue }
@media (prefers-color-scheme: dark) {
:root { color: purple }
}
</style>
<rect fill="currentColor" width="32" height="32"/>
</svg>
|