How to make icons that will fit with Fallout theme #27
-
Beta Was this translation helpful? Give feedback.
Replies: 9 comments
-
Making progress on the conformity to the GraphicsMagick command for turning ordinary, everyday icons (in this case the KDE neon icon) into a Fallout theme icons: (Edit: Oops. Didn't paste that command in, did I? Here it is now.) gm convert neon-larger.png -resize 32x32 -bordercolor transparent -border 10x10 -colors 2 -fuzz 50% -fill '#63DA72ff' -opaque blue 1neon.png |
Beta Was this translation helpful? Give feedback.
-
command not for me can you help me ? |
Beta Was this translation helpful? Give feedback.
-
Hello Teknoist, my command isn't working for you? Well, if that's the icon that you want converted, I'll work on it. (Sometime soon, but not at this moment.) For making my command easier to use, can you tell me what exact command you used and what output you got? |
Beta Was this translation helpful? Give feedback.
-
ı use |
Beta Was this translation helpful? Give feedback.
-
Hey guys 😉
Use mkdir -p out; \
for f in *.png; do \
convert "$f" -colorspace RGB -colorspace Gray +level-colors black,'#67d97a' "out/$f"; \
done
* Easiest way to use BIMP on Linux is probably Flatpak, GIMP and BIMP are available on Flathub, see |
Beta Was this translation helpful? Give feedback.
-
You are welcome : ) I've updated my comment above with more details. convert k.png -colorspace RGB -colorspace Gray -brightness-contrast +65 +level-colors black,'#67d97a' k.colorized.png |
Beta Was this translation helpful? Give feedback.
Hey guys 😉
I did icons conversion some years ago, so I don't remember exact command, but I would try one of these:
67d97a
For batch processing with GIMP use BIMP*
gimp-drawable-colorize-hsl
with hue: 130, saturation 60, lightness 25.5. These HSL values are from GIMP Colorize dialog for#67d97a
, with hue value converted to degrees by multiplying it by 360.coloration -h 130 -s 60 -l 25.5 in.png out.png
from Fred's ImageMagick Scriptsconvert in.png -colorspace RGB -colorspace Gray -fill '#67d97a' -tint 100 out.png
convert in.png -colorspace RGB -colorspace Gray +level-colors black,'#67d97a' out.png
You might also want to increase brightnes…