core icon indicating copy to clipboard operation
core copied to clipboard

fix: add missing fill=currentColor for basic circles

Open MarkusWendorf opened this issue 7 months ago • 1 comments

Hi, I noticed that when changing the color of the svg element some circles do not change the color accordingly, while the rest of the svg behaves correctly.

Bildschirmfoto 2025-05-01 um 21 33 08

I updated all bare <circle> elements to include fill="currentColor" with

find . -type f -name '*.svg' -exec sed -i '' -E 's/(\<circle cx="[^"]+" cy="[^"]+" r="[^"]+")\/>/\1 fill="currentColor" \/>/g' {} +

MarkusWendorf avatar May 01 '25 19:05 MarkusWendorf

@rektdeckard any thoughts on this? thank you

Edit: There are some icons where my method did not work, would have to go through all of them to see where it broke.

MarkusWendorf avatar Jun 18 '25 14:06 MarkusWendorf