summaryrefslogtreecommitdiff
path: root/src/res/values
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-02-28 15:34:54 -0500
committerpommicket <leonardomtenenbaum@gmail.com>2016-02-28 15:34:54 -0500
commit24fd48bee4dc7c1a3d43bcedaf0f7e97247b325e (patch)
tree10e1310581f26bc8ce25687a6f992038a143c244 /src/res/values
parent858177061afc14af133f8d699b8671ecda384904 (diff)
Created AutoArtAndroid
Diffstat (limited to 'src/res/values')
-rw-r--r--src/res/values/colors.xml6
-rw-r--r--src/res/values/dimens.xml5
-rw-r--r--src/res/values/strings.xml6
-rw-r--r--src/res/values/styles.xml11
4 files changed, 28 insertions, 0 deletions
diff --git a/src/res/values/colors.xml b/src/res/values/colors.xml
new file mode 100644
index 0000000..3ab3e9c
--- /dev/null
+++ b/src/res/values/colors.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="colorPrimary">#3F51B5</color>
+ <color name="colorPrimaryDark">#303F9F</color>
+ <color name="colorAccent">#FF4081</color>
+</resources>
diff --git a/src/res/values/dimens.xml b/src/res/values/dimens.xml
new file mode 100644
index 0000000..47c8224
--- /dev/null
+++ b/src/res/values/dimens.xml
@@ -0,0 +1,5 @@
+<resources>
+ <!-- Default screen margins, per the Android Design guidelines. -->
+ <dimen name="activity_horizontal_margin">16dp</dimen>
+ <dimen name="activity_vertical_margin">16dp</dimen>
+</resources>
diff --git a/src/res/values/strings.xml b/src/res/values/strings.xml
new file mode 100644
index 0000000..f3e4529
--- /dev/null
+++ b/src/res/values/strings.xml
@@ -0,0 +1,6 @@
+<resources>
+ <string name="app_name">AutoArt</string>
+ <string name="width_text">Image width:</string>
+ <string name="height_text">Image height:</string>
+ <string name="create_button_text">Create image</string>
+</resources>
diff --git a/src/res/values/styles.xml b/src/res/values/styles.xml
new file mode 100644
index 0000000..5885930
--- /dev/null
+++ b/src/res/values/styles.xml
@@ -0,0 +1,11 @@
+<resources>
+
+ <!-- Base application theme. -->
+ <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
+ <!-- Customize your theme here. -->
+ <item name="colorPrimary">@color/colorPrimary</item>
+ <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
+ <item name="colorAccent">@color/colorAccent</item>
+ </style>
+
+</resources>