This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
269 B
Bash
Raw Normal View History

#!/bin/sh
sed -i \
2018-01-04 23:58:17 -06:00
-e 's/#32302f/rgb(0%,0%,0%)/g' \
-e 's/#ebdbb2/rgb(100%,100%,100%)/g' \
2018-01-04 23:58:17 -06:00
-e 's/#282828/rgb(50%,0%,0%)/g' \
-e 's/#83a598/rgb(0%,50%,0%)/g' \
2018-01-04 23:58:17 -06:00
-e 's/#32302f/rgb(50%,0%,50%)/g' \
-e 's/#ebdbb2/rgb(0%,0%,50%)/g' \
$@