I'm trying to remove a single blueish color from android image drawable.
I've tried to use setColorFilter and PorterDuff to remove the color, but it changes the other colors too.
imageView.setColorFilter(Color.parseColor("#ecf3f9"), PorterDuff.Mode.OVERLAY);
I just want to replace this color "#ecf3f9" with white or transparent.