Update colors

This commit is contained in:
EliverLara
2018-11-17 15:34:25 -06:00
parent b1d77ca629
commit cecc03c7f4
211 changed files with 2724 additions and 2304 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