Add debug icon and update color palette (#931)

This commit is contained in:
Harsh Shandilya 2020-07-14 16:23:39 +05:30 committed by GitHub
parent 681c557e9e
commit 1d7ec5ba6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 17 additions and 34 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<resources>
<color name="ic_launcher_background">#fcd1c5</color>
</resources>

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -5,16 +5,14 @@
<resources>
<!-- Base palette -->
<color name="primary_color">#FF111111</color>
<color name="primary_light_color">#FF373737</color>
<color name="primary_dark_color">#FF000000</color>
<color name="secondary_color">#FFFF7539</color>
<color name="primary_text_color">#FFFFFFFF</color>
<color name="primary_color">#ff111111</color>
<color name="primary_light_color">#ff373737</color>
<color name="primary_dark_color">#ff000000</color>
<color name="secondary_color">#ff3b6888</color>
<color name="primary_text_color">#ffffffff</color>
<!-- Theme variables -->
<color name="navigation_bar_color">@color/primary_color</color>
<color name="list_multiselect_background">#66EEEEEE</color>
<color name="status_bar_color">@color/primary_color</color>
<color name="ripple_color">#aaff7539</color>
<color name="button_color">#44ff7539</color>
<color name="list_multiselect_background">#66eeeeee</color>
<color name="ripple_color">#aa3b6888</color>
<color name="button_color">#443b6888</color>
</resources>

View file

@ -8,16 +8,17 @@
<color name="primary_color">@color/white</color>
<color name="primary_light_color">@color/white</color>
<color name="primary_dark_color">@color/white</color>
<color name="secondary_color">#ff7043</color>
<color name="secondary_color">#003e5b</color>
<color name="secondary_light_color">#3b6888</color>
<color name="secondary_dark_color">#001831</color>
<color name="primary_text_color">#212121</color>
<color name="white">#ffffffff</color>
<!-- Theme variables -->
<color name="ic_launcher_background">#D4F1EA</color>
<color name="color_control_normal">@color/primary_text_color</color>
<color name="list_multiselect_background">#668eacbb</color>
<color name="navigation_bar_color">@color/primary_color</color>
<color name="status_bar_color">@color/primary_dark_color</color>
<color name="ripple_color">#aaff7043</color>
<color name="button_color">#44ff7043</color>
<color name="status_bar_color">@color/primary_color</color>
<color name="ripple_color">#aa003e5b</color>
<color name="button_color">#44003e5b</color>
</resources>

View file

@ -12,11 +12,12 @@
<item name="colorPrimaryDark">@color/primary_color</item>
<item name="colorPrimaryVariant">@color/primary_light_color</item>
<item name="colorSecondary">@color/secondary_color</item>
<item name="colorSecondaryVariant">@color/secondary_dark_color</item>
<item name="colorOnSecondary">@color/white</item>
<item name="colorSurface">@color/primary_color</item>
<item name="android:textColor">@color/primary_text_color</item>
<item name="colorOnSurface">@color/color_control_normal</item>
<item name="colorControlNormal">@color/color_control_normal</item>
<item name="android:textColor">@color/primary_text_color</item>
<item name="android:colorBackgroundFloating">@color/primary_color</item>
<item name="android:statusBarColor">@color/status_bar_color</item>
<item name="android:navigationBarColor">@color/navigation_bar_color</item>

View file

@ -190,7 +190,7 @@
<PreferenceCategory>
<Preference
app:icon="@mipmap/ic_launcher_round"
app:icon="@mipmap/ic_launcher"
app:key="app_version"
app:title="@string/prefs_version" />
</PreferenceCategory>