From 3db6615568e399aa13dac093868df3d0e1ebc4c3 Mon Sep 17 00:00:00 2001 From: Advyte <104263903+4dvyte@users.noreply.github.com> Date: Thu, 7 Dec 2023 18:40:55 +0530 Subject: [PATCH] feat(Twitter - Dynamic Color): Remove blue icon and update app name (#3384) --- .../patches/twitter/misc/dynamiccolor/DynamicColorPatch.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/DynamicColorPatch.kt b/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/DynamicColorPatch.kt index ec7715b22..1d0a3326e 100644 --- a/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/DynamicColorPatch.kt +++ b/src/main/kotlin/app/revanced/patches/twitter/misc/dynamiccolor/DynamicColorPatch.kt @@ -10,7 +10,7 @@ import java.nio.file.Files @Patch( name = "Dynamic color", - description = "Replaces the default Twitter Blue with the user's Material You palette.", + description = "Replaces the default X (Formerly Twitter) Blue with the user's Material You palette.", compatiblePackages = [CompatiblePackage("com.twitter.android")] ) @Suppress("unused") @@ -46,8 +46,7 @@ object DynamicColorPatch : ResourcePatch() { "twitter_blue_opacity_30" to "@android:color/system_accent1_100", "twitter_blue_opacity_50" to "@android:color/system_accent1_200", "twitter_blue_opacity_58" to "@android:color/system_accent1_300", - "deep_transparent_twitter_blue" to "@android:color/system_accent1_200", - "ic_launcher_background" to "#1DA1F2" + "deep_transparent_twitter_blue" to "@android:color/system_accent1_200" ).forEach { (k, v) -> val colorElement = document.createElement("color")