summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-15 23:07:52 +0400
committerAndrew Dolgov <[email protected]>2014-10-15 23:07:52 +0400
commita88c49c633c4fd81ba0d31182944f3145efaa99a (patch)
treed10c97b723df360cf1e2df9f202f0c528d3f2094 /res
parent34f23b9901c8a0e77e5147286035eac45e51fd10 (diff)
statusbartint stuff
Diffstat (limited to 'res')
-rw-r--r--res/values/attrs.xml1
-rw-r--r--res/values/style.xml20
2 files changed, 21 insertions, 0 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index de72602a..1e5d0599 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -27,4 +27,5 @@
<attr name="unreadSelectedCounterBackground" format="reference|color" />
<attr name="articleNoteBackground" format="reference|color" />
<attr name="articleNoteTextColor" format="reference|color" />
+ <attr name="statusBarHintColor" format="reference|color" />
</resources> \ No newline at end of file
diff --git a/res/values/style.xml b/res/values/style.xml
index a0383c1a..4028d3a1 100644
--- a/res/values/style.xml
+++ b/res/values/style.xml
@@ -1,5 +1,10 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="LightTheme" parent="Theme.AppCompat.Light.DarkActionBar">
+ <item name="android:windowTranslucentStatus">true</item>
+ <item name="android:windowTranslucentNavigation">false</item>
+ <item name="android:fitsSystemWindows">true</item>
+ <item name="statusBarHintColor">#6482AF</item>
+
<item name="smallScreenBackground">#eeeeee</item>
<item name="ttrssHorizontalDivider">@android:drawable/divider_horizontal_bright</item>
<item name="feedlistBackground"><!-- #e0e0e0 -->@drawable/shadow_feeds</item>
@@ -31,6 +36,11 @@
</style>
<style name="SepiaTheme" parent="LightTheme">
+ <item name="android:windowTranslucentStatus">true</item>
+ <item name="android:windowTranslucentNavigation">false</item>
+ <item name="android:fitsSystemWindows">true</item>
+ <item name="statusBarHintColor">#7F3F3F</item>
+
<item name="smallScreenBackground">@drawable/paper_sepia</item>
<item name="feedlistBackground">@drawable/shadow_feeds_sepia</item>
<item name="headlinesBackground">@drawable/shadow_headlines_sepia</item>
@@ -48,6 +58,11 @@
</style>
<style name="HoloTheme" parent="Theme.AppCompat">
+ <item name="android:windowTranslucentStatus">true</item>
+ <item name="android:windowTranslucentNavigation">false</item>
+ <item name="android:fitsSystemWindows">true</item>
+ <item name="statusBarHintColor">@android:color/black</item>
+
<item name="smallScreenBackground">@android:color/transparent</item>
<item name="ttrssHorizontalDivider">@android:drawable/divider_horizontal_dark</item>
<item name="feedlistBackground">@android:color/transparent</item>
@@ -78,6 +93,11 @@
</style>
<style name="DarkTheme" parent="HoloTheme">
+ <item name="android:windowTranslucentStatus">true</item>
+ <item name="android:windowTranslucentNavigation">false</item>
+ <item name="android:fitsSystemWindows">true</item>
+ <item name="statusBarHintColor">#394A63</item>
+
<item name="smallScreenBackground">@color/feeds_dark_gray</item>
<item name="ttrssHorizontalDivider">@android:drawable/divider_horizontal_dark</item>
<item name="feedlistBackground">@drawable/shadow_feeds_gray</item>