Changed icons SVG

Changed the way colours were managed in the SVG files to make them more amenable to scripting. Changed the scripts to automate icon resizing.

Co-Authored-By: Joseph Abbey <me@josephabbey.dev>
This commit is contained in:
Philip Abbey
2025-11-11 19:57:51 +00:00
parent 38d9c2c06d
commit 0d6c3a10c6
85 changed files with 507 additions and 226 deletions

View File

@@ -1,7 +1,11 @@
<svg height="38" viewBox="0 0 960 960" width="38" xmlns="http://www.w3.org/2000/svg">
<style id="colours">
.colour1 { color: #aa0000; }
.colour2 { color: #ff1111; }
</style>
<style>
.colour1 { stroke: #aa0000; }
.colour2 { fill: #ff1111; }
.colour1 { stroke: currentColor; }
.colour2 { fill: currentColor; }
text.large { font: bold 600px sans-serif; }
</style>
<circle class="colour1" cx="480" cy="480" fill-opacity="0.0" r="400" stroke-width="60"/>

Before

Width:  |  Height:  |  Size: 440 B

After

Width:  |  Height:  |  Size: 548 B