12 lines
494 B
XML
12 lines
494 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="1000" viewBox="0 0 750 750" height="1000" version="1.0">
|
|
<defs>
|
|
<mask id="circle-cutout">
|
|
<rect width="750" height="750" fill="white"/>
|
|
<circle cx="375" cy="375" r="300" fill="black"/>
|
|
</mask>
|
|
</defs>
|
|
<circle cx="375" cy="375" r="300" fill="#ffcc00"/>
|
|
<circle cx="375" cy="375" r="286" fill="none" stroke="#997700" stroke-width="12"/>
|
|
<rect width="750" height="750" fill="#004aad" mask="url(#circle-cutout)"/>
|
|
</svg>
|