10 lines
271 B
Bash
Executable File
10 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
sed -i \
|
|
-e 's/#1b140a/rgb(0%,0%,0%)/g' \
|
|
-e 's/#d1b994/rgb(100%,100%,100%)/g' \
|
|
-e 's/#120e08/rgb(50%,0%,0%)/g' \
|
|
-e 's/#d1b994/rgb(0%,50%,0%)/g' \
|
|
-e 's/#120e08/rgb(50%,0%,50%)/g' \
|
|
-e 's/#d1b994/rgb(0%,0%,50%)/g' \
|
|
"$@"
|