blob: 1f1b37471fa04b7c31e754969db2cc0e2f322311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="33">
<defs>
<linearGradient id="gradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#5c3e9a" />
<stop offset="1" stop-color="#461f99" />
</linearGradient>
</defs>
<rect x="0" y="0" width="256" height="33" stroke="none" fill="#ffffff" />
<rect x="0" y="0" width="256" height="31" stroke-width="1" stroke="none" fill="url(#gradient)" />
<line x1="0" x2="256" y1="32.5" y2="32.5" stroke="#461f99" stroke-width="1" />
</svg>
|