You've already forked torvalds-GuitarPedal
mirror of
https://github.com/torvalds/GuitarPedal.git
synced 2026-07-25 18:42:21 +00:00
Make it a bit easier to find in the sea of tabs I have. This was a constant slight headache when using it for testing the MIDI code. Yeah, I did this too late, but hey, there's always a next time. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
21 lines
872 B
XML
21 lines
872 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<!-- White halo / border for dark mode -->
|
|
<rect x="12" y="7" width="76" height="86" rx="12" fill="#FFFFFF" />
|
|
<!-- Black outline & Light Blue fill -->
|
|
<rect x="16" y="11" width="68" height="78" rx="8" fill="#87CEEB" stroke="#000000" stroke-width="4" />
|
|
|
|
<!-- Knobs (3 to avoid the 'eyes' look) -->
|
|
<circle cx="30" cy="30" r="7" fill="#000000" />
|
|
<rect x="28" y="24" width="4" height="6" fill="#FFFFFF" />
|
|
|
|
<circle cx="50" cy="30" r="7" fill="#000000" />
|
|
<rect x="48" y="24" width="4" height="6" fill="#FFFFFF" />
|
|
|
|
<circle cx="70" cy="30" r="7" fill="#000000" />
|
|
<rect x="68" y="24" width="4" height="6" fill="#FFFFFF" />
|
|
|
|
<!-- Footswitch -->
|
|
<circle cx="50" cy="70" r="12" fill="#DDDDDD" stroke="#000000" stroke-width="3" />
|
|
<circle cx="50" cy="70" r="6" fill="#000000" />
|
|
</svg>
|