RSS icon changed to a single path (#79)

* Use arcs to save space on path arcs and be more true to original geometry

* Use single path for equal width rectangles

* Deleted unneeded commas

* reduce path count by using stroke linecap

* use single path instead of 4 rects, use fill rule to forego entering M for every rect

* Using arcs

* Fix typos

* Changed side for OSI icon

* Changed size for windows logo

* Changed size for ghost logo

* Shrunk digidentity to two paths. Some times an arc is cheaper on bytes than a circle element

* Concatenated paths

* RSS icon shrunk to a single path of 4 arcs

* An incomparably more geometrically correct version that is just few bytes longer and GZIP friendly

* Forgot aria label
This commit is contained in:
baybal
2017-11-29 18:12:48 +08:00
committed by Terence Eden
parent 3f92bce44e
commit 7328a061d6
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" aria-label="RSS" role="img" viewBox="0 0 512 512"><rect width="512" height="512" fill="orange" rx="15%"/><circle cx="123" cy="389" r="67" fill="#fff"/><path fill="none" stroke="#fff" stroke-width="68" d="M56 89c203 0 367 164 367 367m-133 0c0-128-105-234-234-234"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" aria-label="RSS" role="img" viewBox="0 0 512 512"><rect width="512" height="512" fill="orange" rx="15%"/><path fill="none" stroke="#fff" stroke-width="68" d="M56 89a367 367 0 0 1 367 367m-133 0A235 235 0 0 0 56 222m34 167a32 32 0 0 1 66 0 32 32 0 0 1-66 0"/></svg>

Before

Width:  |  Height:  |  Size: 310 B

After

Width:  |  Height:  |  Size: 304 B

View File

@@ -1 +1 @@
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" aria-label="Twitter" role="img"><rect fill="#1da1f3" height="512" rx="15%" width="512"/><path d="m465 135c-14 7-31 11-47 13 17-10 30-27 37-46-15 10-34 16-52 20a83 83 0 0 0 -141 75c-68-3-129-35-169-85a80 80 0 0 0 26 109c-13 0-26-4-37-9 0 39 28 72 65 80-12 3-25 4-37 2 10 33 41 57 77 57-42 30-77 38-122 34 170 111 378-32 359-208 16-11 30-25 41-42z" fill="#fff"/></svg>
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" aria-label="Twitter" role="img"><rect fill="#1da1f3" height="512" rx="15%" width="512"/><path fill="#fff" d="M465 135a150 150 0 0 1-47 13 83 83 0 0 0 37-46 150 150 0 0 1-52 20 83 83 0 0 0-141 75 230 230 0 0 1-169-85 80 80 0 0 0 26 109 83 83 0 0 1-37-9 83 83 0 0 0 65 80 83 83 0 0 1-37 2 83 83 0 0 0 77 57 150 150 0 0 1-122 34 230 230 0 0 0 359-208 150 150 0 0 0 41-42"/></svg>

Before

Width:  |  Height:  |  Size: 428 B

After

Width:  |  Height:  |  Size: 438 B