10 lines
271 B
Bash
Executable File
10 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
sed -i \
|
|
-e 's/#804541/rgb(0%,0%,0%)/g' \
|
|
-e 's/#ee4e1d/rgb(100%,100%,100%)/g' \
|
|
-e 's/#3c2238/rgb(50%,0%,0%)/g' \
|
|
-e 's/#97672c/rgb(0%,50%,0%)/g' \
|
|
-e 's/#bf7d4f/rgb(50%,0%,50%)/g' \
|
|
-e 's/#5a1c33/rgb(0%,0%,50%)/g' \
|
|
"$@"
|