summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/src/custom/res/values/custom-theme.xml12
-rw-r--r--app/src/main/res/layout/a_main.xml3
-rw-r--r--app/src/main/res/values/colors.xml3
3 files changed, 17 insertions, 1 deletions
diff --git a/app/src/custom/res/values/custom-theme.xml b/app/src/custom/res/values/custom-theme.xml
new file mode 100644
index 00000000..4421adb9
--- /dev/null
+++ b/app/src/custom/res/values/custom-theme.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <!--Colors-->
+ <!--Color of the action bar-->
+ <color name="colorPrimary">#b39ddb</color>
+ <!--Color of the status bar-->
+ <color name="colorPrimaryDark">#ac97d2</color>
+ <!--Font color of the action bar title-->
+ <color name="colorActionBarTitleFont">#ffffff</color>
+ <!--Font color of the action bar subtitle-->
+ <color name="colorActionBarSubtitleFont">#000000</color>
+</resources>
diff --git a/app/src/main/res/layout/a_main.xml b/app/src/main/res/layout/a_main.xml
index bed05d18..21fdaa66 100644
--- a/app/src/main/res/layout/a_main.xml
+++ b/app/src/main/res/layout/a_main.xml
@@ -20,7 +20,8 @@
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- app:titleTextColor="@android:color/white"
+ app:titleTextColor="@color/colorActionBarTitleFont"
+ app:subtitleTextColor="@color/colorActionBarSubtitleFont"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 53ead009..40ab06c5 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -27,4 +27,7 @@
<color name="white">#ffffff</color>
+ <color name="colorActionBarTitleFont">@color/white</color>
+ <color name="colorActionBarSubtitleFont">@color/black800</color>
+
</resources>