From 6b0ab97424c5f7a51c53b5d87cc8a2cd0f4364fb Mon Sep 17 00:00:00 2001 From: Aaron Veil <70171475+anddea@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:20:43 +0300 Subject: [PATCH] chore(YouTube - Seekbar components): Convert color hex values to uppercase --- .../patches/youtube/player/seekbar/SeekbarComponentsPatch.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/player/seekbar/SeekbarComponentsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/player/seekbar/SeekbarComponentsPatch.kt index 15f6c6d0a..55fa57b1b 100644 --- a/patches/src/main/kotlin/app/revanced/patches/youtube/player/seekbar/SeekbarComponentsPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/youtube/player/seekbar/SeekbarComponentsPatch.kt @@ -62,14 +62,14 @@ val seekbarComponentsPatch = bytecodePatch( val cairoStartColor by stringOption( key = "cairoStartColor", - default = "#ffff2791", + default = "#FFFF2791", title = "Cairo start color", description = "Set Cairo start color for the seekbar." ) val cairoEndColor by stringOption( key = "cairoEndColor", - default = "#ffff0033", + default = "#FFFF0033", title = "Cairo end color", description = "Set Cairo end color for the seekbar." )