My default tint Accent color in styles is blue and on error occur im changing it to red programmatically like below code
Drawable wrappedDrawable = DrawableCompat.wrap(mUsername.getBackground());
DrawableCompat.setTint(wrappedDrawable, ContextCompat.getColor(getActivity(), R.color.red_error));
But when i restart my app the tint color is red , How do i set it back to default color which is in style.xml ?