21 lines
907 B
XML
21 lines
907 B
XML
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#0066cc;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#0056b3;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Фон -->
|
|
<rect width="200" height="200" rx="20" fill="url(#grad1)"/>
|
|
|
|
<!-- Текст DLE -->
|
|
<text x="100" y="120" font-family="Arial, sans-serif" font-size="48" font-weight="bold" text-anchor="middle" fill="white">DLE</text>
|
|
|
|
<!-- Дополнительные элементы -->
|
|
<circle cx="50" cy="50" r="8" fill="rgba(255,255,255,0.3)"/>
|
|
<circle cx="150" cy="50" r="8" fill="rgba(255,255,255,0.3)"/>
|
|
<circle cx="50" cy="150" r="8" fill="rgba(255,255,255,0.3)"/>
|
|
<circle cx="150" cy="150" r="8" fill="rgba(255,255,255,0.3)"/>
|
|
</svg>
|