スタイルの私のデフォルトの色合いのアクセントカラーは青で、エラーが発生すると、以下のコードのようにプログラムで赤に変更します
Drawable wrappedDrawable = DrawableCompat.wrap(mUsername.getBackground());
DrawableCompat.setTint(wrappedDrawable, ContextCompat.getColor(getActivity(), R.color.red_error));
しかし、アプリを再起動すると色合いが赤くなります。style.xml にあるデフォルトの色に戻すにはどうすればよいですか?