Skip to content

Instantly share code, notes, and snippets.

@romanesko
Created April 11, 2026 17:50
Show Gist options
  • Select an option

  • Save romanesko/ff4f2bd73a5faf263de8da1b4250d055 to your computer and use it in GitHub Desktop.

Select an option

Save romanesko/ff4f2bd73a5faf263de8da1b4250d055 to your computer and use it in GitHub Desktop.
UNIBOT Logo
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
<defs>
<!-- Градиент фона -->
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#6C63FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#3F3D9E;stop-opacity:1" />
</linearGradient>
<!-- Градиент для буквы U -->
<linearGradient id="uGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.95" />
<stop offset="100%" style="stop-color:#E0E0FF;stop-opacity:0.8" />
</linearGradient>
<!-- Тень -->
<filter id="shadow" x="-10%" y="-10%" width="120%" height="120%">
<feDropShadow dx="0" dy="8" stdDeviation="12" flood-color="#2A2866" flood-opacity="0.4"/>
</filter>
</defs>
<!-- Круглая подложка -->
<circle cx="256" cy="256" r="230" fill="url(#bgGrad)" filter="url(#shadow)" />
<!-- Небольшой внутренний ободок для глубины -->
<circle cx="256" cy="256" r="215" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="4" />
<!-- Антенна робота (слева-вверх) -->
<g stroke="rgba(255,255,255,0.6)" stroke-width="12" stroke-linecap="round" fill="none">
<line x1="180" y1="140" x2="150" y2="100" />
<line x1="150" y1="100" x2="120" y2="110" />
<!-- Сигнал антенны -->
<circle cx="150" cy="100" r="8" fill="#FFD166" stroke="none" />
</g>
<!-- Основная буква U в форме подковы / динамика -->
<path d="M 180 170
C 180 120, 210 100, 256 100
C 302 100, 332 120, 332 170
L 332 280
C 332 340, 296 380, 256 380
C 216 380, 180 340, 180 280
Z"
fill="url(#uGrad)" stroke="rgba(255,255,255,0.5)" stroke-width="6" stroke-linejoin="round" />
<!-- Пересечение / акцент скорости в правой части U -->
<path d="M 332 170 L 360 140" stroke="#FFD166" stroke-width="12" stroke-linecap="round" />
<path d="M 332 210 L 370 190" stroke="#FFD166" stroke-width="12" stroke-linecap="round" />
<!-- Глаза-индикаторы бота (внутри U) -->
<g>
<!-- Левый глаз -->
<circle cx="226" cy="210" r="16" fill="#2A2866" />
<circle cx="226" cy="210" r="8" fill="#6C63FF" />
<circle cx="226" cy="210" r="3" fill="#FFFFFF" />
<!-- Правый глаз -->
<circle cx="286" cy="210" r="16" fill="#2A2866" />
<circle cx="286" cy="210" r="8" fill="#6C63FF" />
<circle cx="286" cy="210" r="3" fill="#FFFFFF" />
</g>
<!-- Динамическая дуга / орбита универсальности -->
<path d="M 100 330 C 130 420, 220 460, 340 420"
fill="none" stroke="rgba(255,209,102,0.5)" stroke-width="8" stroke-linecap="round" stroke-dasharray="10 10" />
<!-- Маленькие звёзды / частицы -->
<circle cx="120" cy="180" r="6" fill="#FFD166" opacity="0.8" />
<circle cx="390" cy="280" r="8" fill="#FFD166" opacity="0.7" />
<circle cx="400" cy="150" r="4" fill="#FFFFFF" opacity="0.6" />
<circle cx="100" cy="270" r="5" fill="#FFFFFF" opacity="0.5" />
<!-- Текст UNIBOT внизу (опционально) -->
<text x="256" y="460" font-family="'Segoe UI', Arial, Helvetica, sans-serif" font-size="42" font-weight="800"
fill="#FFFFFF" text-anchor="middle" letter-spacing="8" opacity="0.9">
UNIBOT
</text>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment