diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2021-02-11 17:57:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 17:57:49 +0100 |
commit | 00ce6401eb44af8ebf05be0d4a319bc491fb5555 (patch) | |
tree | 3474f5f0bb1b56d86372399b835c501322324e78 | |
parent | Create test (diff) | |
download | xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar.gz xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar.bz2 xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar.lz xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar.xz xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.tar.zst xManager-00ce6401eb44af8ebf05be0d4a319bc491fb5555.zip |
-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>
|