Skip to content

Commit

Permalink
fix(youtube/theme): return correct color value (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
OxrxL committed Nov 13, 2022
1 parent 9e5e818 commit f8cb38e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -24,7 +24,7 @@ public static int applyLithoTheme(int originalValue) {
var isDarkTheme = ThemeHelper.isDarkTheme();

if ((isDarkTheme && anyEquals(originalValue, DARKCONSTANTS)) || (!isDarkTheme && anyEquals(originalValue, WHITECONSTANTS)))
return 0;
return -16777215;
return originalValue;
}

Expand Down

0 comments on commit f8cb38e

Please sign in to comment.