File indexing completed on 2024-12-08 09:35:13
0001 #!/bin/sh 0002 # convert light colors to breeze-dark colors 0003 0004 find -name "*.svg" -o -name "*.SVG" | while read i; 0005 do 0006 fname=$( basename "$i") 0007 fdir=$( dirname "$i") 0008 #inkscape -f "$i" -e "${i%.*}.png" 0009 sed -i -e 's/#4d4d4d/#f2f2f2/g' "$i" 0010 sed -i -e 's/#eff0f1/#31363b/g' "$i" 0011 sed -i -e 's/#fcfcfc/#4f575f/g' "$i" 0012 done