summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/attrs.xml4
-rw-r--r--res/values/style.xml6
2 files changed, 9 insertions, 1 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index 9ad509d1..fa4748c5 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -1,4 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <attr name="placeholder" format="reference|color" />
+ <attr name="feedlistDivider" format="reference|color" />
+ <attr name="feedlistBackground" format="reference|color" />
+ <attr name="unreadCounterColor" format="reference|color" />
</resources> \ No newline at end of file
diff --git a/res/values/style.xml b/res/values/style.xml
index 952f70ff..b9c13774 100644
--- a/res/values/style.xml
+++ b/res/values/style.xml
@@ -1,8 +1,14 @@
<resources>
<style name="LightTheme" parent="android:Theme.Holo.Light">
+ <item name="feedlistDivider">@android:drawable/divider_horizontal_bright</item>
+ <item name="feedlistBackground">#fafafa</item>
+ <item name="unreadCounterColor">#0000ff</item>
</style>
<style name="DarkTheme" parent="android:Theme.Holo">
+ <item name="feedlistDivider">@android:drawable/divider_horizontal_dark</item>
+ <item name="feedlistBackground">#101010</item>
+ <item name="unreadCounterColor">#0000ff</item>
</style>
</resources> \ No newline at end of file