Update selected_box colors for dark theme

This commit is contained in:
2016-04-10 08:17:36 -04:00
parent 5c683a77c2
commit 436ae7e574
3 changed files with 4 additions and 1 deletions

View File

@@ -19,6 +19,6 @@
--> -->
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="@color/grey_100" /> <solid android:color="?highlightedBackgroundColor" />
<stroke android:width="2dip" android:color="@color/grey_500"/> <stroke android:width="2dip" android:color="@color/grey_500"/>
</shape> </shape>

View File

@@ -32,6 +32,7 @@
<item name="cardBackgroundColor">@color/white</item> <item name="cardBackgroundColor">@color/white</item>
<item name="windowBackgroundColor">@color/grey_200</item> <item name="windowBackgroundColor">@color/grey_200</item>
<item name="headerBackgroundColor">@color/grey_200</item> <item name="headerBackgroundColor">@color/grey_200</item>
<item name="highlightedBackgroundColor">@color/grey_100</item>
<item name="android:textColor">#606060</item> <item name="android:textColor">#606060</item>
<item name="fadedTextColor">@color/grey_600</item> <item name="fadedTextColor">@color/grey_600</item>
@@ -53,6 +54,7 @@
<item name="cardBackgroundColor">@color/grey_800</item> <item name="cardBackgroundColor">@color/grey_800</item>
<item name="windowBackgroundColor">@color/grey_850</item> <item name="windowBackgroundColor">@color/grey_850</item>
<item name="headerBackgroundColor">@color/grey_900</item> <item name="headerBackgroundColor">@color/grey_900</item>
<item name="highlightedBackgroundColor">@color/grey_800</item>
<item name="android:textColor">@color/grey_50</item> <item name="android:textColor">@color/grey_50</item>
<item name="fadedTextColor">@color/grey_500</item> <item name="fadedTextColor">@color/grey_500</item>

View File

@@ -25,6 +25,7 @@
<attr name="headerBackgroundColor" format="reference"/> <attr name="headerBackgroundColor" format="reference"/>
<attr name="secondaryTextColor" format="reference"/> <attr name="secondaryTextColor" format="reference"/>
<attr name="inactiveCheckmarkColor" format="reference"/> <attr name="inactiveCheckmarkColor" format="reference"/>
<attr name="highlightedBackgroundColor" format="reference"/>
<attr name="palette" format="reference"/> <attr name="palette" format="reference"/>
</resources> </resources>