diff options
Diffstat (limited to 'app/src/main')
-rw-r--r-- | app/src/main/res/values/colors.xml | 7 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 15 |
3 files changed, 25 insertions, 0 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..218921a --- /dev/null +++ b/app/src/main/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/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..cf14182 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ +<resources>
+ <string name="app_name" translatable="false">xManager</string>
+</resources>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..9c48609 --- /dev/null +++ b/app/src/main/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>
|