1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?xml version="1.0" standalone="no"?>
<svg width="150" height="150" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<linearGradient id="wgradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#814F92" />
<stop offset="100%" stop-color="#41285C" />
</linearGradient>
<linearGradient id="ngradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#3CD2CC" />
<stop offset="100%" stop-color="#176361" />
</linearGradient>
</defs>
<style type="text/css"><![CDATA[
.path {
stroke-width: 1;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
}
]]></style>
<path id="n" stroke="url(#ngradient)" class="path" d="M5,9 L1,5 9,5 5,1" />
<path id="w" stroke="url(#wgradient)" class="path" d="M5,1 L1,5 5,5 5,9 9,5" />
</svg>
|