diff options
author | ByteHamster <info@bytehamster.com> | 2023-12-06 21:02:53 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2023-12-06 21:02:53 +0100 |
commit | ae4205c6d337644ebead973e9f091fe2498b8450 (patch) | |
tree | a33b2ecab676cbf72db5cfe83d52986d01ea089f /core/src/main/res | |
parent | 2e76dc8d0c950090acd95d1e8c9d6c7be314d9a6 (diff) | |
parent | 58081fe5bf7d9ad28f089cf10b2c17bfcfc8bbc7 (diff) | |
download | AntennaPod-ae4205c6d337644ebead973e9f091fe2498b8450.zip |
Merge branch 'master' into develop
Diffstat (limited to 'core/src/main/res')
-rw-r--r-- | core/src/main/res/drawable/bg_blue_gradient.xml | 10 | ||||
-rw-r--r-- | core/src/main/res/drawable/ic_arrow_right_white.xml | 13 | ||||
-rw-r--r-- | core/src/main/res/values/colors.xml | 5 |
3 files changed, 28 insertions, 0 deletions
diff --git a/core/src/main/res/drawable/bg_blue_gradient.xml b/core/src/main/res/drawable/bg_blue_gradient.xml new file mode 100644 index 000000000..8ae045b6d --- /dev/null +++ b/core/src/main/res/drawable/bg_blue_gradient.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > + <gradient + android:angle="90" + android:endColor="@color/gradient_025" + android:startColor="@color/gradient_075" + android:type="linear" /> + <corners + android:radius="0dp"/> +</shape> diff --git a/core/src/main/res/drawable/ic_arrow_right_white.xml b/core/src/main/res/drawable/ic_arrow_right_white.xml new file mode 100644 index 000000000..4f33bed08 --- /dev/null +++ b/core/src/main/res/drawable/ic_arrow_right_white.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<vector + xmlns:android="http://schemas.android.com/apk/res/android" + android:height="24dp" + android:width="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + + <path + android:fillColor="#ffffff" + android:pathData="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" /> + +</vector> diff --git a/core/src/main/res/values/colors.xml b/core/src/main/res/values/colors.xml index 553da121a..ad835faf4 100644 --- a/core/src/main/res/values/colors.xml +++ b/core/src/main/res/values/colors.xml @@ -23,4 +23,9 @@ <color name="accent_light">#0078C2</color> <color name="accent_dark">#3D8BFF</color> + + <color name="gradient_000">#364ff3</color> + <color name="gradient_025">#2E6FF6</color> + <color name="gradient_075">#1EB0FC</color> + <color name="gradient_100">#16d0ff</color> </resources> |