Skip to content

Use Plasma color schemes for all panel icons

vinceliuice requested to merge AndydeCleyre:feature/color-panel into master

Created by: AndydeCleyre

A fairly wild stab at getting the bulk of #64 (closed) done.

This change was made by running the following in zsh in each panel folder, with GNU sed:

for svg in $(rg -S --files-without-match colorscheme); do
    sed -i 's/color="#5294e2"/class="ColorScheme-Highlight"/g' $svg
    sed -i 's/color="#dfdfdf"/class="ColorScheme-Text"/g' $svg
    sed -i -E 's%(<svg[^>]*>)%\1<defs><style id="current-color-scheme" type="text/css">.ColorScheme-Text{color:#dfdfdf;}.ColorScheme-Highlight{color:#5294e2;}</style></defs>%' $svg
done

Merge request reports