Light color correction

This commit is contained in:
serso 2015-02-10 11:28:45 +01:00
parent d5f06bb3f2
commit 3d1731995a
6 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@ package org.solovyev.android.calculator.wizard;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import org.solovyev.android.calculator.App;
import org.solovyev.android.calculator.R;
@ -16,8 +17,8 @@ public class FinalWizardStep extends WizardFragment {
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
if (App.getTheme().isLight()) {
/*final TextView message = (TextView) view.findViewById(R.id.wizard_final_message);
message.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_action_done_blue, 0, 0);*/
final TextView message = (TextView) view.findViewById(R.id.wizard_final_message);
message.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_action_done_light, 0, 0);
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -46,8 +46,8 @@
<color name="cpp_metro_blue">#10648c</color>
<color name="cpp_material_blue">#ff0d4663</color>
<color name="cpp_material_blue_lighter">#ff0d668d</color>
<color name="cpp_material_light">#42d5b2</color>
<color name="cpp_material_light_darker">#ff38b99a</color>
<color name="cpp_material_light">#ff37b295</color>
<color name="cpp_material_light_darker">#ff309e84</color>
<color name="cpp_material_light_disabled">#c1d2ef</color>
<color name="cpp_metro_blue_dark">#ff092c39</color>
<color name="cpp_metro_green">#088e3a</color>