Printer

cross-posted from: https://piefed.world/c/shit/p/1238402/printer

SVG Code

<svg xmlns="http://www.w3.org/2000/svg” viewBox="0 0 600 600” width="100%” height="100%"> <!– Background –> <rect width="100%” height="100%” fill="#ffffff” />

<!– Title –> <text x="300” y="40” font-family="Arial, sans-serif” font-size="28” font-weight="bold” fill="#303030” text-anchor="middle” letter-spacing="0.5">Time spent by a printer</text>

<!– Pie Chart Group –> <!– Center is at (300, 270), Radius is 200 –> <g stroke="#ffffff” stroke-width="1.5” stroke-linejoin="round"> <!– Blue Slice (Actually printing - roughly 45 degrees or 12.5%) –> <path d="M 300 270 L 300 70 A 200 200 0 0 1 441.42 128.58 Z” fill="#6E9DE5” />

&lt;!-- Yellow Slice (Printer noises) --&gt;
&lt;path d="M 300 270 L 441.42 128.58 A 200 200 0 1 1 300 70 Z" fill="#F4C719" /&gt;

</g>

<!– Legend –> <g font-family="Arial, sans-serif” font-size="26” font-weight="bold” fill="#3D3D3D"> <!– Item 1: Actually printing –> <circle cx="190” cy="520” r="11” fill="#6E9DE5” /> <text x="210” y="528">Actually printing</text>

&lt;!-- Item 2: Beeep Boom ch xiii tchrak piii ruuuumm --&gt;
&lt;circle cx="50" cy="570" r="11" fill="#F4C719" /&gt;
&lt;text x="70" y="578"&gt;Beeep Boom ch xiii tchrak piii ruuuumm&lt;/text&gt;

</g> </svg>