diff options
Diffstat (limited to 'android-app')
8 files changed, 48 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/drawable/preview_charts.xml b/android-app/app/src/main/res/drawable/preview_charts.xml new file mode 100644 index 0000000..6e5bff0 --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_charts.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#E8F4F8" android:endColor="#90CAF9" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_depth.xml b/android-app/app/src/main/res/drawable/preview_depth.xml new file mode 100644 index 0000000..812e897 --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_depth.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#01002A" android:endColor="#0D47A1" android:angle="90"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_hybrid.xml b/android-app/app/src/main/res/drawable/preview_hybrid.xml new file mode 100644 index 0000000..154afad --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_hybrid.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#1B3A1E" android:centerColor="#1565C0" android:endColor="#90CAF9" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_ocean.xml b/android-app/app/src/main/res/drawable/preview_ocean.xml new file mode 100644 index 0000000..050d9b0 --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_ocean.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#0A2A5E" android:endColor="#1565C0" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_satellite.xml b/android-app/app/src/main/res/drawable/preview_satellite.xml new file mode 100644 index 0000000..a22991f --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_satellite.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#1B3A1E" android:endColor="#4A7C59" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_seamarks.xml b/android-app/app/src/main/res/drawable/preview_seamarks.xml new file mode 100644 index 0000000..925fcfb --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_seamarks.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#0D1B2A" android:endColor="#1A3A5C" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_sst.xml b/android-app/app/src/main/res/drawable/preview_sst.xml new file mode 100644 index 0000000..6f1cc7f --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_sst.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#BF360C" android:centerColor="#FF8F00" android:endColor="#0288D1" android:angle="135"/> + <corners android:radius="8dp"/> +</shape> diff --git a/android-app/app/src/main/res/drawable/preview_wind.xml b/android-app/app/src/main/res/drawable/preview_wind.xml new file mode 100644 index 0000000..8d2d38b --- /dev/null +++ b/android-app/app/src/main/res/drawable/preview_wind.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient android:startColor="#004D40" android:endColor="#00BCD4" android:angle="90"/> + <corners android:radius="8dp"/> +</shape> |
