Initial commit
This commit is contained in:
commit
ef2f7aeaaa
22 changed files with 566 additions and 0 deletions
17
icons/make.sh
Executable file
17
icons/make.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
|
||||
colors="red:#cc0000 green:#00cc00 orange:#ddaa00 grey:#cccccc"
|
||||
|
||||
for res in 16 32 64; do
|
||||
for color in ${colors}; do
|
||||
colname=${color%:*}
|
||||
colspec=${color#*:}
|
||||
convert -background none cf.svg \
|
||||
+level-colors "${colspec}," \
|
||||
-colorspace RGB \
|
||||
-resize "${res}" \
|
||||
-colorspace sRGB \
|
||||
"cf-${colname}-${res}.png"
|
||||
done
|
||||
done
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue