26 lines
1009 B
XML
26 lines
1009 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<defs>
|
|
<linearGradient id="txt" x1="0" y1="0" x2="0" y2="1">
|
|
<stop offset="0%" stop-color="#ffdd44"/>
|
|
<stop offset="30%" stop-color="#ff9900"/>
|
|
<stop offset="65%" stop-color="#dd4400"/>
|
|
<stop offset="100%" stop-color="#881100"/>
|
|
</linearGradient>
|
|
<filter id="glow" x="-40%" y="-40%" width="180%" height="180%">
|
|
<feGaussianBlur in="SourceGraphic" stdDeviation="1.2" result="blur"/>
|
|
<feColorMatrix in="blur" type="matrix"
|
|
values="1 0 0 0 0.2
|
|
0 0.3 0 0 0
|
|
0 0 0 0 0
|
|
0 0 0 0.6 0" result="colored"/>
|
|
<feMerge>
|
|
<feMergeNode in="colored"/>
|
|
<feMergeNode in="SourceGraphic"/>
|
|
</feMerge>
|
|
</filter>
|
|
</defs>
|
|
<text x="16" y="24" font-family="'Segoe UI','Helvetica','Arial',sans-serif" font-size="21"
|
|
font-weight="700" fill="url(#txt)" text-anchor="middle" letter-spacing="0"
|
|
filter="url(#glow)">KA</text>
|
|
</svg>
|