1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-24 09:00:31 +00:00

fix drawer header font color for white theme

This commit is contained in:
Christian Schabesberger 2018-09-01 12:33:08 +02:00
parent 93571961ee
commit 81e76f260c
4 changed files with 6 additions and 1 deletions

View File

@ -39,6 +39,7 @@
android:gravity="center" android:gravity="center"
android:text="@string/app_name" android:text="@string/app_name"
android:textSize="30dp" android:textSize="30dp"
android:textColor="@color/drawer_header_font_color"
android:textStyle="bold|italic" /> android:textStyle="bold|italic" />
<TextView <TextView
@ -50,6 +51,7 @@
android:layout_below="@id/drawer_header_np_text_view" android:layout_below="@id/drawer_header_np_text_view"
android:text="YouTube" android:text="YouTube"
android:textSize="18dp" android:textSize="18dp"
android:textColor="@color/drawer_header_font_color"
android:textStyle="italic" /> android:textStyle="italic" />
<ImageView <ImageView

View File

@ -39,6 +39,7 @@ android:focusable="true">
android:layout_alignBottom="@id/drawer_header_np_nude_view" android:layout_alignBottom="@id/drawer_header_np_nude_view"
android:gravity="center" android:gravity="center"
android:textSize="30dp" android:textSize="30dp"
android:textColor="@color/drawer_header_font_color"
android:textStyle="bold|italic"/> android:textStyle="bold|italic"/>
<TextView <TextView
@ -50,6 +51,7 @@ android:focusable="true">
android:layout_alignLeft="@id/drawer_header_np_text_view" android:layout_alignLeft="@id/drawer_header_np_text_view"
android:layout_alignStart="@id/drawer_header_np_text_view" android:layout_alignStart="@id/drawer_header_np_text_view"
android:textSize="18dp" android:textSize="18dp"
android:textColor="@color/drawer_header_font_color"
android:textStyle="italic"/> android:textStyle="italic"/>
<ImageView <ImageView

View File

@ -37,7 +37,7 @@
<attr name="ic_backup" format="reference"/> <attr name="ic_backup" format="reference"/>
<attr name="ic_add" format="reference"/> <attr name="ic_add" format="reference"/>
<!-- Can't refer to colors directly into drawable's xml--> <!-- Can't refer to colors directly in drawable's xml-->
<attr name="toolbar_shadow_drawable" format="reference"/> <attr name="toolbar_shadow_drawable" format="reference"/>
<attr name="selector_drawable" format="reference"/> <attr name="selector_drawable" format="reference"/>
<attr name="checked_selector_drawable" format="reference"/> <attr name="checked_selector_drawable" format="reference"/>

View File

@ -35,6 +35,7 @@
<color name="black_contrast_background_color">#23454545</color> <color name="black_contrast_background_color">#23454545</color>
<!-- Miscellaneous --> <!-- Miscellaneous -->
<color name="drawer_header_font_color">#ddffffff</color>
<color name="duration_background_color">#aa000000</color> <color name="duration_background_color">#aa000000</color>
<color name="live_duration_background_color">#c8E53935</color> <color name="live_duration_background_color">#c8E53935</color>
<color name="playlist_stream_count_background_color">#e6000000</color> <color name="playlist_stream_count_background_color">#e6000000</color>