Skip to content

Commit

Permalink
fix(YouTube - Settings): Use same background color for about screen i…
Browse files Browse the repository at this point in the history
…f Theme patch is not included
  • Loading branch information
LisoUseInAIKyrios committed Apr 23, 2024
1 parent 5ed4292 commit 4164ed3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class ThemeHelper {
/**
* Injection point.
*/
@SuppressWarnings("unused")
public static void setTheme(Enum<?> value) {
final int newOrdinalValue = value.ordinal();
if (themeValue != newOrdinalValue) {
Expand All @@ -40,12 +41,12 @@ public static void setActivityTheme(Activity activity) {
*/
private static String darkThemeResourceName() {
// Value is changed by Theme patch, if included.
return "@android:color/black";
return "@color/yt_black3";
}

/**
* @return The dark theme color as specified by the Theme patch (if included),
* or the Android color of black.
* or the dark mode background color unpatched YT uses.
*/
public static int getDarkThemeColor() {
if (darkThemeColor == null) {
Expand All @@ -59,12 +60,12 @@ public static int getDarkThemeColor() {
*/
private static String lightThemeResourceName() {
// Value is changed by Theme patch, if included.
return "@android:color/white";
return "@color/yt_white1";
}

/**
* @return The light theme color as specified by the Theme patch (if included),
* or the Android color of white.
* or the non dark mode background color unpatched YT uses.
*/
public static int getLightThemeColor() {
if (lightThemeColor == null) {
Expand Down

0 comments on commit 4164ed3

Please sign in to comment.