cross-posted from: https://piefed.world/c/shit/p/1244008/reasons-why-i-update-software

SVG Code

<svg xmlns=“http://www.w3.org/2000/svg” viewBox=“0 0 760 450” width=“100%” height=“100%”> <!-- Background --> <rect width=“100%” height=“100%” fill=“#ffffff” />

<!-- Pie Chart --> <g transform=“translate(20, 0)”> <!-- Large Blue Slice (Majority) --> <circle cx=“220” cy=“225” r=“180” fill=“#2b72b5” />

<!-- Small Grey Slice (Minority) -->
<path d="M 220 225 L 201.2 46.0 A 180 180 0 0 1 220 45 Z" fill="#464646" />

</g>

<!-- Legend --> <g transform=“translate(20, 0)”> <!-- Upper Legend Item (Grey) --> <rect x=“460” y=“152” width=“32” height=“32” fill=“#464646” /> <text x=“505” y=“173” font-family=“system-ui, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif” font-size=“22” font-weight=“700” fill=“#1a1a1a”>Because I want the</text> <text x=“505” y=“201” font-family=“system-ui, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif” font-size=“22” font-weight=“700” fill=“#1a1a1a”>latest version</text>

<!-- Lower Legend Item (Blue) -->
<rect x="460" y="252" width="32" height="32" fill="#2b72b5" />
<text x="505" y="273" font-family="system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif" font-size="22" font-weight="700" fill="#1a1a1a">To get rid of the</text>
<text x="505" y="301" font-family="system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif" font-size="22" font-weight="700" fill="#1a1a1a">reminder</text>

</g> </svg>