mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 11:39:29 -07:00
18 lines
347 B
XML
18 lines
347 B
XML
<!-- icon.svg -->
|
|
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
<style>
|
|
circle {
|
|
fill: white;
|
|
stroke: black;
|
|
stroke-width: 5px;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
circle {
|
|
fill: black;
|
|
stroke: white;
|
|
}
|
|
}
|
|
</style>
|
|
<circle cx="50" cy="50" r="45" />
|
|
</svg>
|