Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-14 11:05:54 +08:00
parent f3b9749a85
commit 75c2cf70a0
10 changed files with 68 additions and 46 deletions

View File

@@ -110,11 +110,13 @@ class ThemeUtils {
),
),
);
if (isDark && GStorage.isPureBlackTheme) {
themeData = darkenTheme(themeData);
}
if (isDark && GStorage.darkVideoPage) {
MyApp.darkThemeData = themeData;
if (isDark) {
if (GStorage.isPureBlackTheme) {
themeData = darkenTheme(themeData);
}
if (GStorage.darkVideoPage) {
MyApp.darkThemeData = themeData;
}
}
return themeData;
}