Format icons SVG files for better readability

This commit is contained in:
2026-02-03 12:03:25 +01:00
parent 759b4c4007
commit aae235e81f
2 changed files with 51 additions and 23 deletions

View File

@@ -1,22 +1,39 @@
<svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
<svg
width="128"
height="128"
viewBox="0 0 128 128"
xmlns="http://www.w3.org/2000/svg"
>
<defs>
<linearGradient id="circle-bg" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#5E5C64"/>
<stop offset="100%" stop-color="#3D3846"/>
<stop offset="0%" stop-color="#5E5C64" />
<stop offset="100%" stop-color="#3D3846" />
</linearGradient>
</defs>
<!-- Background circle (dark gray) -->
<circle cx="64" cy="64" r="56" fill="url(#circle-bg)"/>
<!-- Yellow rings (GNOME yellow) -->
<circle cx="64" cy="64" r="40" fill="none" stroke="#F6D32D" stroke-width="8"
stroke-dasharray="75 25" stroke-linecap="round" opacity="0.9"/>
<!-- Inner ring -->
<circle cx="64" cy="64" r="28" fill="none" stroke="#F5C211" stroke-width="4"
stroke-dasharray="45 20" stroke-linecap="round" opacity="0.8"/>
<!-- Center dot -->
<circle cx="64" cy="64" r="10" fill="#F6D32D"/>
</svg>
<circle cx="64" cy="64" r="56" fill="url(#circle-bg)" />
<circle
cx="64"
cy="64"
r="40"
fill="none"
stroke="#F6D32D"
stroke-width="8"
stroke-dasharray="75 25"
stroke-linecap="round"
opacity="0.9"
/>
<circle
cx="64"
cy="64"
r="28"
fill="none"
stroke="#F5C211"
stroke-width="4"
stroke-dasharray="45 20"
stroke-linecap="round"
opacity="0.8"
/>
<circle cx="64" cy="64" r="10" fill="#F6D32D" />
</svg>

Before

Width:  |  Height:  |  Size: 853 B

After

Width:  |  Height:  |  Size: 871 B