-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
<!--
Copyright 2026 Shota FUJI
This source code and the design it expresses are licensed under
the Creative Commons Attribution 4.0 International License.
SPDX-License-Identifier: CC-BY-4.0
-->
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 100 100">
<style>
#graphics {
fill: black;
stroke: black;
@media (prefers-color-scheme: dark) {
fill: white;
stroke: white;
--color: white;
}
}
</style>
<mask id="mask" mask-type="luminance">
<rect fill="white" x="0" y="0" width="100" height="100" />
<path fill="none" stroke="black" stroke-width="7" d="M70,45 l10,-5 l10,5" />
<path fill="none" stroke="black" stroke-width="7" d="M0,45 l10,5 l10,-5" />
</mask>
<g id="graphics" stroke-width="10">
<circle mask="url(#mask)" fill="none" stroke-width="10" cx="47" cy="45" r="35" />
<line fill="none" x1="95" y1="93" x2="70" y2="68" />
<path fill="none" stroke-width="7" d="M67,53 l15,-8 l10,14" />
<path fill="none" stroke-width="7" d="M1,32 l10,14 l15,-8" />
</g>
</svg>