Format icons SVG files for better readability
This commit is contained in:
@@ -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 |
Reference in New Issue
Block a user