summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml10
-rw-r--r--res/values/strings.xml6
-rw-r--r--res/values/styles.xml6
-rw-r--r--res/values/themes.xml7
4 files changed, 17 insertions, 12 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..ca1931b
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="purple_200">#FFBB86FC</color>
+ <color name="purple_500">#FF6200EE</color>
+ <color name="purple_700">#FF3700B3</color>
+ <color name="teal_200">#FF03DAC5</color>
+ <color name="teal_700">#FF018786</color>
+ <color name="black">#FF000000</color>
+ <color name="white">#FFFFFFFF</color>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c215c34..b4ac7c4 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -1,9 +1,3 @@
<resources>
<string name="app_name">Paste</string>
- <string name="menu_settings">Settings</string>
- <string name="title_activity_main">MainActivity</string>
- <string name="content_hint">Content</string>
- <string name="submit">Submit</string>
- <string name="PUT">PUT</string>
- <string name="POST">POST</string>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
deleted file mode 100644
index 96fe7ee..0000000
--- a/res/values/styles.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<resources>
- <style name="app_style" parent="@android:style/Theme.Light">
- <item name="android:windowActionBar">true</item>
- <item name="android:windowNoTitle">true</item>
- </style>
-</resources>
diff --git a/res/values/themes.xml b/res/values/themes.xml
new file mode 100644
index 0000000..6193b06
--- /dev/null
+++ b/res/values/themes.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <style name="Theme.PasteTheme" parent="android:Theme.Material.Light.NoActionBar">
+ <item name="android:statusBarColor">@color/purple_700</item>
+ </style>
+</resources>