18 lines
744 B
XML
18 lines
744 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
<defs>
|
|
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#1a1a2e"/>
|
|
<stop offset="100%" style="stop-color:#0f0f1a"/>
|
|
</linearGradient>
|
|
<linearGradient id="playGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#e50914"/>
|
|
<stop offset="100%" style="stop-color:#b2070f"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Background -->
|
|
<rect width="512" height="512" rx="100" fill="url(#bgGrad)"/>
|
|
<!-- Play circle -->
|
|
<circle cx="256" cy="256" r="160" fill="url(#playGrad)"/>
|
|
<!-- Play triangle -->
|
|
<polygon points="210,170 210,342 370,256" fill="#141414"/>
|
|
</svg>
|