GreenRaccoon23 / archdroid-icon-theme

Port of Google's material design icons for Android Lollipop+ to Linux (and influenced by Ubuntu Mono, Mint-X, and Numix).
GNU General Public License v3.0
39 stars 4 forks source link

color request #4

Closed ohnonot closed 8 years ago

ohnonot commented 8 years ago

since you so kindly offered it...

just to clarify, are you going to implement only exact colors from here?

i'd love to see darkest shades of bluegrey (#263238), deeporange (#bf360c) and brown (#3e2723).

thanks for this, it's a great icon theme.

GreenRaccoon23 commented 8 years ago

No problem! I'll get to that tonight.

Yeah, Android provided the inspiration for and majority of the icons for this theme, so I'm sticking to Android's material design color palette plus Arch Linux's blue.

If you want to add your own color on your local computer, you could run this command on the Archdroid-Green folder to change the colors:

find "Archdroid-Green" -type f -name "*.svg" -exec perl -pi -w -e 's/#4CAF50/#YOUR_RGB_COLOR/g;' {} \;;

I haven't tested this so be careful. That's a powerful command.

ohnonot commented 8 years ago

Thanks! while trying out the above command, i noticed a broken link: Archdroid-Green/mimetypes/scalable/application-x-ruby.svg points to %f.

GreenRaccoon23 commented 8 years ago

Thanks for pointing that out! Just fixed it, and I'll be pushing it up soon. If you're curious, the %f comes from a bad thunar custom action/script I was using.

I'm adding those colors right now. I use the svg-edit binary to change the colors of the images, and apparently I lost my original source code for it, so I've been refactoring it. It's been fun because now it can edit 757 images in 0.1 seconds.

ohnonot commented 8 years ago

actually the find/perl oneliner did me just fine, but thanks anyway!