-
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
-
34
-
35
<!--
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>
#fill {
fill: black;
}
@media (prefers-color-scheme: dark) {
#fill {
fill: white;
}
}
</style>
<mask id="mask" mask-type="luminance">
<rect fill="white" x="0" y="0" width="100" height="100" />
<g transform="rotate(33 50 50)">
<line stroke="black" stroke-width="17" x1="50" y1="0" x2="50" y2="52" />
<ellipse fill="black" cx="50" cy="42" rx="30" ry="10" />
<rect fill="black" x="20" y="42" width="60" height="10" />
<path fill="black" d="M20,51 v26 l9,-5 v-21 Z" />
<path fill="black" d="M37,51 v26 l9,-5 v-21 Z" />
<path fill="black" d="M54,51 v26 l9,-5 v-21 Z" />
<path fill="black" d="M71,51 v26 l9,-5 v-21 Z" />
</g>
</mask>
<circle id="fill" cx="50" cy="50" r="49" mask="url(#mask)" />
</svg>