Theme the resolver

Thanks to @ezio84 to letting me know about the issue here. The issue being
that the theme resolver while not themed was good enough but if you used a
white accent you ended up with white text on a white background.

By themeing it, this issue is resolved :-)

Change-Id: I67703153ac300b424b92d543e437a143015ea6d6
Signed-off-by: Josh Fox (XlxFoXxlX) <joshfox87@gmail.com>
diff --git a/themes/darktheme/system/res/values/colors.xml b/themes/darktheme/system/res/values/colors.xml
new file mode 100644
index 0000000..4d47031
--- /dev/null
+++ b/themes/darktheme/system/res/values/colors.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+    <!-- Resolver -->
+    <color name="resolver_list_bg">@*android:color/background_material_dark</color>
+
+</resources>
diff --git a/themes/darktheme/system/res/values/styles.xml b/themes/darktheme/system/res/values/styles.xml
index fa46d63..5596859 100644
--- a/themes/darktheme/system/res/values/styles.xml
+++ b/themes/darktheme/system/res/values/styles.xml
@@ -207,4 +207,18 @@
         <item name="android:colorAccent">@*android:color/accent_device_default_light</item>
         <item name="android:colorControlNormal">@*android:color/accent_device_default_dark</item>
     </style>
+    <style name="Theme.DeviceDefault.Resolver" parent="@*android:style/Theme.Material">
+        <item name="android:backgroundTint">@*android:color/background_material_dark</item>
+        <item name="android:windowBackground">@*android:color/transparent</item>
+        <item name="android:windowNoTitle">true</item>
+        <item name="android:windowContentOverlay">@null</item>
+        <item name="android:backgroundDimEnabled">true</item>
+        <item name="android:windowIsTranslucent">true</item>
+        <item name="android:windowTranslucentStatus">false</item>
+        <item name="android:windowTranslucentNavigation">false</item>
+        <item name="android:windowDrawsSystemBarBackgrounds">false</item>
+        <item name="android:colorPrimary">@*android:color/primary_device_default_dark</item>
+        <item name="android:colorPrimaryDark">@*android:color/primary_dark_device_default_settings</item>
+        <item name="android:colorAccent">@*android:color/accent_device_default_dark</item>
+    </style>
 </resources>