You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"> |
|
<!-- Fog gradient background --> |
|
<defs> |
|
<linearGradient id="fogGradient" x1="0%" y1="0%" x2="100%" y2="100%"> |
|
<stop offset="0%" style="stop-color:#f8fafc;stop-opacity:1" /> |
|
<stop offset="50%" style="stop-color:#e2e8f0;stop-opacity:1" /> |
|
<stop offset="100%" style="stop-color:#cbd5e1;stop-opacity:1" /> |
|
</linearGradient> |
|
<filter id="fogBlur"> |
|
<feGaussianBlur in="SourceGraphic" stdDeviation="1.5"/> |
|
</filter> |
|
</defs> |
|
|
|
<!-- Background with fog effect --> |
|
<rect width="64" height="64" fill="url(#fogGradient)"/> |
|
|
|
<!-- Misty layers --> |
|
<ellipse cx="20" cy="25" rx="18" ry="12" fill="#f8fafc" opacity="0.6" filter="url(#fogBlur)"/> |
|
<ellipse cx="44" cy="35" rx="20" ry="14" fill="#e2e8f0" opacity="0.5" filter="url(#fogBlur)"/> |
|
<ellipse cx="32" cy="45" rx="16" ry="10" fill="#cbd5e1" opacity="0.4" filter="url(#fogBlur)"/> |
|
|
|
<!-- Letter A in fog style --> |
|
<text x="32" y="42" font-family="system-ui, sans-serif" font-size="28" font-weight="300" text-anchor="middle" fill="#64748b" opacity="0.8">A</text> |
|
</svg>
|
|
|