Fix eleigiblility of Open Humans text for labels when user have default, non-dark theme

https://github.com/nightscout/AndroidAPS/issues/750
This commit is contained in:
Dominik Dzienia 2021-10-18 09:47:56 +02:00
parent 2bb28245c5
commit 5338148ea8
2 changed files with 4 additions and 1 deletions

View file

@ -37,7 +37,8 @@
android:layout_marginTop="8dp"
android:gravity="center"
android:text="@string/setup_completed_info"
android:textAppearance="?textAppearanceBody2" />
android:textAppearance="?textAppearanceBody2"
android:textColor="@color/open_humans_text" />
<TextView
android:id="@+id/member_id"
@ -46,6 +47,7 @@
android:layout_marginTop="16dp"
android:gravity="center"
android:textAppearance="?textAppearanceBody1"
android:textColor="@color/open_humans_text"
tools:text="Project Member ID: 5151515" />
<com.google.android.material.button.MaterialButton

View file

@ -4,4 +4,5 @@
<color name="open_humans_orange_variant">#fe6315</color>
<color name="open_humans_blue">#009fa8</color>
<color name="open_humans_blue_variant">#036866</color>
<color name="open_humans_text">@android:color/white</color>
</resources>