mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-21 13:19:02 +00:00
Fix Colors in Views
This commit is contained in:
parent
efecb79e81
commit
04a2c3cfab
2 changed files with 7 additions and 2 deletions
|
|
@ -77,7 +77,7 @@
|
|||
<activity
|
||||
android:name=".TaskFormActivity"
|
||||
android:label="@string/title_activity_task_form"
|
||||
android:theme="@style/AppThemeWithActionBar"
|
||||
android:theme="@style/AppThemeWithActionBarBlackText"
|
||||
android:parentActivityName=".MainActivity" >
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<!-- Application theme. -->
|
||||
<style name="AppTheme" parent="@style/MaterialDrawerTheme.Light.DarkToolbar.TranslucentStatus">
|
||||
<item name="android:listSeparatorTextViewStyle">@style/MyOwnListSeperatorTextViewStyle</item>
|
||||
<item name="android:textColorPrimary">@android:color/black</item>
|
||||
<item name="android:textColorPrimary">@android:color/white</item>
|
||||
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
|
||||
|
|
@ -44,6 +44,11 @@
|
|||
<item name="android:windowTranslucentStatus" tools:targetApi="21">false</item>
|
||||
</style>
|
||||
|
||||
<style name="AppThemeWithActionBarBlackText" parent="AppThemeWithActionBar">
|
||||
<item name="android:textColorPrimary">@android:color/black</item>
|
||||
</style>
|
||||
|
||||
|
||||
<style name="PopupTheme" parent="Widget.AppCompat.PopupMenu.Overflow">
|
||||
<item name="android:popupBackground">@color/accent_color</item>
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue