mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-18 00:41:45 +00:00
Update LowContrastMode.xm
This commit is contained in:
parent
09ef1f54dd
commit
8bf69b4d1d
1 changed files with 6 additions and 0 deletions
|
|
@ -67,6 +67,12 @@ static BOOL pinkContrastMode() {
|
|||
}
|
||||
return [UIColor colorWithRed: 0.38 green: 0.38 blue: 0.38 alpha: 1.00]; // Light Theme
|
||||
}
|
||||
- (UIColor *)overlayTextPrimary {
|
||||
if (self.pageStyle == 1) {
|
||||
return [UIColor whiteColor]; // Dark Theme
|
||||
}
|
||||
return [UIColor colorWithRed: 0.38 green: 0.38 blue: 0.38 alpha: 1.00]; // Light Theme
|
||||
}
|
||||
%end
|
||||
%hook YTCollectionView
|
||||
- (void)setTintColor:(UIColor *)color {
|
||||
|
|
|
|||
Loading…
Reference in a new issue