You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
318 B
13 lines
318 B
9 years ago
|
#!/bin/bash
|
||
|
# convert light colors to breeze-dark colors
|
||
|
|
||
|
find -name "*.svg" -o -name "*.SVG" | while read i;
|
||
|
do
|
||
|
fname=$( basename "$i")
|
||
|
fdir=$( dirname "$i")
|
||
|
#inkscape -f "$i" -e "${i%.*}.png"
|
||
|
sed -i -e 's/#4d4d4d/#f2f2f2/g' "$i"
|
||
|
sed -i -e 's/#eff0f1/#31363b/g' "$i"
|
||
|
sed -i -e 's/#fcfcfc/#4f575f/g' "$i"
|
||
|
done
|