Update colors

This commit is contained in:
EliverLara
2018-12-25 01:24:02 -06:00
parent d06d125196
commit 80d1b2e8de
185 changed files with 665 additions and 651 deletions

13
gtk-2.0/links.fish Normal file
View File

@@ -0,0 +1,13 @@
set -l files 'checkbox' 'radio'
set -l states 'unchecked' 'checked' 'mixed'
set -l sub_states 'active' 'hover' 'insensitive'
for f in $files;
for s in $states;
ln -sf ../../assets/$f-$s-dark.png ./assets/$f-$s.png
for i in $sub_states;
ln -sf ../../assets/$f-$s-$i-dark.png ./assets/$f-$s-$i.png
;end
;end
;end