diff options
Diffstat (limited to 'src/res/values')
-rw-r--r-- | src/res/values/colors.xml | 6 | ||||
-rw-r--r-- | src/res/values/dimens.xml | 5 | ||||
-rw-r--r-- | src/res/values/strings.xml | 6 | ||||
-rw-r--r-- | src/res/values/styles.xml | 11 |
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> |