blob: ddb4c58bcf5fe27a0d251a348e22af7da728dfb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<defs>
<linearGradient id="brass" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#DCC79E"></stop>
<stop offset="55%" stop-color="#C2AA7A"></stop>
<stop offset="100%" stop-color="#8F7A50"></stop>
</linearGradient>
</defs>
<circle cx="100" cy="100" r="92" fill="none" stroke="url(#brass)" stroke-width="2"></circle>
<circle cx="100" cy="100" r="86" fill="none" stroke="url(#brass)" stroke-width="0.75" opacity="0.55"></circle>
<g fill="url(#brass)" font-family="'EB Garamond', 'Source Serif Pro', Georgia, serif" font-style="italic" font-weight="500" text-anchor="middle">
<text x="100" y="128" font-size="110" letter-spacing="-6">TH</text>
</g>
<g stroke="url(#brass)" stroke-width="1.2">
<line x1="100" y1="6" x2="100" y2="14"></line>
<line x1="100" y1="186" x2="100" y2="194"></line>
<line x1="6" y1="100" x2="14" y2="100"></line>
<line x1="186" y1="100" x2="194" y2="100"></line>
</g>
</svg>
|