12 lines
363 B
Bash
Executable File
12 lines
363 B
Bash
Executable File
#!/bin/sh
|
|
sed -i \
|
|
-e 's/rgb(0%,0%,0%)/#1f2335/g' \
|
|
-e 's/rgb(100%,100%,100%)/#a9b1d6/g' \
|
|
-e 's/rgb(50%,0%,0%)/#24283b/g' \
|
|
-e 's/rgb(0%,50%,0%)/#7aa2f7/g' \
|
|
-e 's/rgb(0%,50.196078%,0%)/#7aa2f7/g' \
|
|
-e 's/rgb(50%,0%,50%)/#292e42/g' \
|
|
-e 's/rgb(50.196078%,0%,50.196078%)/#292e42/g' \
|
|
-e 's/rgb(0%,0%,50%)/#c0caf5/g' \
|
|
"$@"
|