summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-02-09 20:25:56 +0400
committerAndrew Dolgov <[email protected]>2013-02-09 20:25:56 +0400
commit535b04dbe116c1df56bf1e1249a88fa9687c58f3 (patch)
treef480ec587f9f3aa3c0a17af9d11312fcaa8cdbf8 /res/values
parenta608e8cee82ea6f5947edcbe4fcfd049eb7b074f (diff)
implement dark gray theme, bump version
Diffstat (limited to 'res/values')
-rw-r--r--res/values/arrays.xml4
-rw-r--r--res/values/resources.xml4
-rw-r--r--res/values/strings.xml1
-rw-r--r--res/values/style.xml20
4 files changed, 27 insertions, 2 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml
index 0ee7ef8d..d4217384 100644
--- a/res/values/arrays.xml
+++ b/res/values/arrays.xml
@@ -1,11 +1,13 @@
<resources>
<string-array name="pref_theme_names">
<item>@string/theme_dark</item>
+ <item>@string/theme_dark_gray</item>
<item>@string/theme_light</item>
- <item>@string/theme_sepia</item>
+ <item>@string/theme_sepia</item>
</string-array>
<string-array name="pref_theme_values">
<item>THEME_DARK</item>
+ <item>THEME_DARK_GRAY</item>
<item>THEME_LIGHT</item>
<item>THEME_SEPIA</item>
</string-array>
diff --git a/res/values/resources.xml b/res/values/resources.xml
index f3c3cda3..a87b671b 100644
--- a/res/values/resources.xml
+++ b/res/values/resources.xml
@@ -8,5 +8,7 @@
<color name="headline_row_selected_light">#33b5e5</color>
<color name="headline_row_selected_sepia">#E5B0A0</color>
<color name="ics_cyan">#33b5e5</color>
-
+ <color name="feeds_dark_gray">#1c1d1e</color>
+ <color name="headline_row_selected_gray">#22667f</color>
+ <color name="headline_row_unread_gray">#383c42</color>
</resources> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index b49a9f01..5def8571 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -155,4 +155,5 @@
<string name="trial_thanks">Full version, thank you for support!</string>
<string name="prefs_fullscreen_mode">Fullscreen mode</string>
<string name="reading">Reading</string>
+ <string name="theme_dark_gray">Dark gray</string>
</resources> \ No newline at end of file
diff --git a/res/values/style.xml b/res/values/style.xml
index 09963fc4..a817f33b 100644
--- a/res/values/style.xml
+++ b/res/values/style.xml
@@ -65,4 +65,24 @@
<item name="loadingBackground">@android:color/black</item>
</style>
+ <style name="DarkGrayTheme" parent="DarkTheme">
+ <item name="smallScreenBackground">#1c1d1e</item>
+ <item name="horizontalDivider">@android:drawable/divider_horizontal_dark</item>
+ <item name="feedlistBackground">@color/feeds_dark_gray</item>
+ <item name="unreadCounterColor">#a0a0a0</item>
+ <item name="headlinesBackground">@color/feeds_dark_gray</item>
+ <item name="headlinesBackgroundSolid">@color/headline_row_selected_gray</item>
+ <item name="articleBackground">#1c1d1e</item>
+ <item name="headlineSelectedBackground">@color/headline_row_selected_gray</item>
+ <item name="headlineSelectedBackgroundSolid">@color/headline_row_selected_gray</item>
+ <item name="headlineUnreadBackground">@color/headline_row_unread_gray</item>
+ <item name="feedsSelectedBackground">@color/headline_row_selected_gray</item>
+ <item name="feedsSelectedBackgroundSolid">@color/headline_row_selected_gray</item>
+ <item name="feedlistSelectedTextColor">@android:color/primary_text_dark</item>
+ <item name="headlineSelectedExcerptTextColor">@android:color/secondary_text_dark</item>
+ <item name="headlineTextColor">@android:color/secondary_text_dark</item>
+ <item name="android:actionBarStyle">@style/ActionBarDarkGray</item>
+ </style>
+
+
</resources> \ No newline at end of file