diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2022-10-11 19:44:04 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2022-10-11 19:44:04 +0200 |
| commit | 7ebdab2798013e3b47ff981335fae9d76f104d7c (patch) | |
| tree | 8ff73c88d0e0d23c48dfaa71476df0dc1b253188 /app/src/main/res/values | |
| download | taupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.tar.gz taupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.tar.zst taupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.zip | |
Initial commit, not much this time
Diffstat (limited to 'app/src/main/res/values')
| -rw-r--r-- | app/src/main/res/values/colors.xml | 10 | ||||
| -rw-r--r-- | app/src/main/res/values/dimens.xml | 4 | ||||
| -rw-r--r-- | app/src/main/res/values/strings.xml | 5 | ||||
| -rw-r--r-- | app/src/main/res/values/styles.xml | 11 | ||||
| -rw-r--r-- | app/src/main/res/values/themes.xml | 16 |
5 files changed, 46 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..f8c6127 --- /dev/null +++ b/app/src/main/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>
\ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml new file mode 100644 index 0000000..ca514d8 --- /dev/null +++ b/app/src/main/res/values/dimens.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="text_margin">16dp</dimen> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..1b643d3 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ +<resources> + <string name="app_name">taupānga moni</string> + <!-- TODO: Remove or change this placeholder text --> + <string name="hello_blank_fragment">Hello blank fragment</string> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..85555a9 --- /dev/null +++ b/app/src/main/res/values/styles.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> +<!-- <!– Base application theme. –>--> +<!-- <style name="AppTheme" parent="Theme.MaterialComponents.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> diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..c0b0125 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,16 @@ +<resources xmlns:tools="http://schemas.android.com/tools"> + <!-- Base application theme. --> + <style name="Theme.TaupāngaMoni" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> + <!-- Primary brand color. --> + <item name="colorPrimary">@color/purple_500</item> + <item name="colorPrimaryVariant">@color/purple_700</item> + <item name="colorOnPrimary">@color/white</item> + <!-- Secondary brand color. --> + <item name="colorSecondary">@color/teal_200</item> + <item name="colorSecondaryVariant">@color/teal_700</item> + <item name="colorOnSecondary">@color/black</item> + <!-- Status bar color. --> + <item name="android:statusBarColor">?attr/colorPrimaryVariant</item> + <!-- Customize your theme here. --> + </style> +</resources>
\ No newline at end of file |
