diff options
-rw-r--r-- | res/layout/header_bar.xml | 3 | ||||
-rw-r--r-- | res/values/colors.xml | 2 | ||||
-rw-r--r-- | res/values/styles.xml | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/res/layout/header_bar.xml b/res/layout/header_bar.xml index b83a818..75cb08b 100644 --- a/res/layout/header_bar.xml +++ b/res/layout/header_bar.xml @@ -30,7 +30,8 @@ android:singleLine="true" android:textAllCaps="true" android:textColor="@color/header_action_bar_text_color" - android:textSize="@dimen/text_size_large" /> + android:textSize="@dimen/text_size_medium" + android:textStyle="bold" /> <ImageView android:id="@+id/header_bar_custom_button" diff --git a/res/values/colors.xml b/res/values/colors.xml index c62cbf2..08a96aa 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -63,7 +63,7 @@ <!-- Color for the action bar --> <color name="header_action_bar_color">#ff31353f</color> - <color name="header_action_bar_text_color">@color/white</color> + <color name="header_action_bar_text_color">#bfffffff</color> <color name="bottom_action_bar_text_color">@color/default_text_color_light</color> <!-- Background color used on some page headers --> diff --git a/res/values/styles.xml b/res/values/styles.xml index 7d11d0f..7a43cdc 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -84,6 +84,8 @@ <!-- Sets the action bar title text color --> <style name="ActionBar.TitleText" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title"> <item name="android:textColor">@color/header_action_bar_text_color</item> + <item name="android:textSize">@dimen/text_size_medium</item> + <item name="android:textStyle">bold</item> </style> <style name="ActionBar.SubtitleText" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Subtitle"> |