diff options
author | Asher Simonds <dayanhammer@gmail.com> | 2022-08-28 03:14:21 +0300 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2022-08-28 03:14:21 +0300 |
commit | f2d64eef1a950f4986d052a8b4c5883915cd4d86 (patch) | |
tree | 953e90c9052599e76d9836d65fa72344520b14ef | |
parent | fa1fcd7acd18689eaf514c6b9fa2c6585dc15c03 (diff) |
AudioFX: Add monochrome icon support
* Part of the new iconset made by Asher Simonds
Change-Id: I77ca374e6ea3e5a2404f6d5f6985341a2ef35b0d
-rw-r--r-- | res/drawable/ic_launcher_monochrome.xml | 18 | ||||
-rw-r--r-- | res/mipmap-anydpi/ic_launcher.xml | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/res/drawable/ic_launcher_monochrome.xml b/res/drawable/ic_launcher_monochrome.xml new file mode 100644 index 0000000..496c30c --- /dev/null +++ b/res/drawable/ic_launcher_monochrome.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + SPDX-FileCopyrightText: 2022 The LineageOS Project + SPDX-License-Identifier: Apache-2.0 +--> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="108dp" + android:height="108dp" + android:viewportWidth="108" + android:viewportHeight="108"> + <path + android:pathData="M54,55m-9,0a9,9 0,1 1,18 0a9,9 0,1 1,-18 0" + android:fillColor="#ffffffff"/> + <path + android:pathData="M40.518,68.482C39.372,69.628 37.497,69.638 36.514,68.35C34.485,65.693 33.08,62.597 32.423,59.292C31.574,55.024 32.009,50.601 33.675,46.581C35.34,42.561 38.16,39.125 41.778,36.708C45.395,34.29 49.649,33 54,33C58.351,33 62.605,34.29 66.223,36.708C69.84,39.125 72.66,42.561 74.325,46.581C75.991,50.601 76.426,55.024 75.577,59.292C74.92,62.597 73.515,65.693 71.486,68.35C70.503,69.638 68.628,69.628 67.482,68.482L62.485,63.485C64.657,61.314 66,58.314 66,55C66,53.265 65.632,51.617 64.97,50.128C66.09,46.621 66.451,45.61 66.786,44.669L66.786,44.668C66.878,44.41 66.968,44.158 67.071,43.861C67.272,43.327 67.158,42.702 66.728,42.272C66.3,41.844 65.678,41.729 65.146,41.926C64.845,42.03 64.591,42.121 64.331,42.214L64.33,42.214C63.39,42.549 62.379,42.91 58.872,44.03C57.383,43.368 55.735,43 54,43C47.373,43 42,48.373 42,55C42,58.314 43.343,61.314 45.515,63.485L40.518,68.482Z" + android:fillColor="#ffffffff" + android:fillType="evenOdd"/> +</vector> diff --git a/res/mipmap-anydpi/ic_launcher.xml b/res/mipmap-anydpi/ic_launcher.xml index 3d90bc5..b58c81f 100644 --- a/res/mipmap-anydpi/ic_launcher.xml +++ b/res/mipmap-anydpi/ic_launcher.xml @@ -6,4 +6,5 @@ <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <background android:drawable="@drawable/ic_launcher_background"/> <foreground android:drawable="@drawable/ic_launcher_foreground"/> + <monochrome android:drawable="@drawable/ic_launcher_monochrome"/> </adaptive-icon> |