Skip to content

Instantly share code, notes, and snippets.

@vuldin
Last active March 6, 2020 01:43
Show Gist options
  • Save vuldin/16d024d4c3fd689352fb9bbb2c5f4a24 to your computer and use it in GitHub Desktop.
Save vuldin/16d024d4c3fd689352fb9bbb2c5f4a24 to your computer and use it in GitHub Desktop.
Simple logo in svg format
Display the source blob
Display the rendered blob
Raw
<svg
viewBox="-110 -110 220 220"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<clipPath id="circle">
<circle r="107"></circle>
</clipPath>
</defs>
<g clip-path="url(#circle)">
<circle
r="100"
fill-opacity="0"
stroke="#DD6B20"
stroke-width="14"
></circle>
<line
x1="0"
y1="-100"
x2="0"
y2="100"
stroke="#DD6B20"
stroke-width="14"
></line>
<line
x1="-70.71"
y1="-70.71"
x2="70.71"
y2="70.71"
stroke="#DD6B20"
stroke-width="14"
></line>
<line
x1="-70.71"
y1="70.71"
x2="70.71"
y2="-70.71"
stroke="#DD6B20"
stroke-width="14"
></line>
<polyline
points="-70.71,-70.71 0,0 70.71,-70.71"
fill="none"
stroke="#DD6B20"
stroke-width="14"
transform="translate(0,-43)"
/>
<polyline
points="-70.71,70.71 0,0 70.71,70.71"
fill="none"
stroke="#DD6B20"
stroke-width="14"
transform="translate(0,43)"
/>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment