36 lines
1.8 KiB
XML
36 lines
1.8 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
|
|
<defs>
|
|
<radialGradient id="bg-grad" cx="50%" cy="50%" r="50%">
|
|
<stop offset="0%" stop-color="#3d3530"/>
|
|
<stop offset="100%" stop-color="#262220"/>
|
|
</radialGradient>
|
|
<filter id="soft-glow">
|
|
<feGaussianBlur stdDeviation="3" result="blur"/>
|
|
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>
|
|
</filter>
|
|
</defs>
|
|
<!-- Outer ring -->
|
|
<circle cx="100" cy="100" r="96" fill="none" stroke="#c8b89a" stroke-width="1.2" opacity="0.35"/>
|
|
<!-- Main circle -->
|
|
<circle cx="100" cy="100" r="90" fill="url(#bg-grad)"/>
|
|
<!-- Snowflake: 6 arms -->
|
|
<g stroke="#d4c8b0" stroke-width="2.2" fill="none" stroke-linecap="round" filter="url(#soft-glow)">
|
|
<line x1="100" y1="42" x2="100" y2="158"/>
|
|
<line x1="50" y1="71" x2="150" y2="129"/>
|
|
<line x1="50" y1="129" x2="150" y2="71"/>
|
|
<!-- Branches vertical -->
|
|
<line x1="100" y1="52" x2="87" y2="59"/><line x1="100" y1="52" x2="113" y2="59"/>
|
|
<line x1="100" y1="148" x2="87" y2="141"/><line x1="100" y1="148" x2="113" y2="141"/>
|
|
<!-- Branches right -->
|
|
<line x1="142" y1="77" x2="150" y2="67"/><line x1="142" y1="77" x2="132" y2="74"/>
|
|
<line x1="58" y1="123" x2="50" y2="133"/><line x1="58" y1="123" x2="68" y2="126"/>
|
|
<!-- Branches left -->
|
|
<line x1="58" y1="77" x2="50" y2="67"/><line x1="58" y1="77" x2="68" y2="74"/>
|
|
<line x1="142" y1="123" x2="150" y2="133"/><line x1="142" y1="123" x2="132" y2="126"/>
|
|
</g>
|
|
<!-- Center dot -->
|
|
<circle cx="100" cy="100" r="4.5" fill="#c8b89a"/>
|
|
<!-- S.A. text -->
|
|
<text x="100" y="108" text-anchor="middle" font-family="'Segoe UI',system-ui,sans-serif" font-size="22" font-weight="700" fill="#d4c8b0" letter-spacing="3">S.A.</text>
|
|
</svg>
|