summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml7
-rw-r--r--res/values/strings.xml3
-rw-r--r--res/values/styles.xml15
3 files changed, 25 insertions, 0 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..218921a
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,7 @@
+<resources>
+ <color name="colorPrimary">#000000</color>
+ <color name="colorPrimaryDark">#000000</color>
+ <color name="colorAccent">#1DB954</color>
+ <color name="colorControlHighlight">#1DB954</color>
+ <color name="colorControlNormal">#1DB954</color>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..cf14182
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,3 @@
+<resources>
+ <string name="app_name" translatable="false">xManager</string>
+</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000..9c48609
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,15 @@
+<resources>
+ <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
+ <item name="colorPrimary">@color/colorPrimary</item>
+ <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
+ <item name="colorAccent">@color/colorAccent</item>
+ <item name="colorControlHighlight">@color/colorControlHighlight</item>
+ <item name="colorControlNormal">@color/colorControlNormal</item>
+ </style>
+ <style name="AppTheme.FullScreen" parent="AppTheme">
+ <item name="android:windowFullscreen">true</item>
+ <item name="android:windowContentOverlay">@null</item>
+ </style>
+ <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
+ <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
+</resources>