11 lines
624 B
XML
11 lines
624 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
|
|
<!-- Prussian blue (void) background -->
|
|
<rect width="512" height="512" fill="#001a2d"/>
|
|
<!-- Triangle (outer) -->
|
|
<polygon points="256,72 448,440 64,440" stroke="white" stroke-width="24" fill="none" stroke-linejoin="round"/>
|
|
<!-- Circle (inside triangle) -->
|
|
<circle cx="256" cy="300" r="140" stroke="white" stroke-width="24" fill="none"/>
|
|
<!-- Vertical split of circle -->
|
|
<line x1="256" y1="160" x2="256" y2="440" stroke="white" stroke-width="24" stroke-linecap="round"/>
|
|
</svg> |