19 lines
835 B
XML
19 lines
835 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="40" viewBox="0 0 120 40">
|
|
<defs>
|
|
<linearGradient id="neonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#0099ff;stop-opacity:1" />
|
|
</linearGradient>
|
|
<filter id="glow">
|
|
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
|
|
<feMerge>
|
|
<feMergeNode in="coloredBlur"/>
|
|
<feMergeNode in="SourceGraphic"/>
|
|
</feMerge>
|
|
</filter>
|
|
</defs>
|
|
<rect width="120" height="40" rx="4" fill="#000000" stroke="url(#neonGradient)" stroke-width="1"/>
|
|
<text x="60" y="26" font-family="Arial, sans-serif" font-size="18" font-weight="bold" fill="url(#neonGradient)" text-anchor="middle" filter="url(#glow)">100kmph</text>
|
|
</svg>
|
|
|