diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-04-21 23:50:38 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-04-21 23:50:38 +0100 |
commit | 16a36c812fabda812ecf3aaa7f12fa6f44c66b2e (patch) | |
tree | ccae60abf8301ae451cfa1f21c33b8a62d5306cf /res/values | |
parent | db091bfd1db36ab66340ccad2eb7b6393a0aa3da (diff) | |
download | android-jetpack-compose-redo-16a36c812fabda812ecf3aaa7f12fa6f44c66b2e.tar.gz android-jetpack-compose-redo-16a36c812fabda812ecf3aaa7f12fa6f44c66b2e.tar.xz android-jetpack-compose-redo-16a36c812fabda812ecf3aaa7f12fa6f44c66b2e.zip |
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/colors.xml | 10 | ||||
-rw-r--r-- | res/values/strings.xml | 6 | ||||
-rw-r--r-- | res/values/styles.xml | 6 | ||||
-rw-r--r-- | res/values/themes.xml | 7 |
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> |