diff --git a/Source/LowContrastMode.xm b/Source/LowContrastMode.xm index 6d1325c..a61f596 100644 --- a/Source/LowContrastMode.xm +++ b/Source/LowContrastMode.xm @@ -26,9 +26,24 @@ UIColor *lcmHexColor; + (UIColor *)lightTextColor { return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; } ++ (UIColor *)lightGrayColor { + return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; +} ++ (UIColor *)ychGrey7 { + return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; +} ++ (UIColor *)skt_chipBackgroundColor { + return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; +} + (UIColor *)placeholderTextColor { return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; } ++ (UIColor *)systemLightGrayColor { + return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; +} ++ (UIColor *)systemExtraLightGrayColor { + return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; +} + (UIColor *)labelColor { return [UIColor colorWithRed: 0.56 green: 0.56 blue: 0.56 alpha: 1.00]; } @@ -84,6 +99,9 @@ UIColor *lcmHexColor; + (UIColor *)white5 { return [UIColor whiteColor]; } ++ (UIColor *)grey1 { + return [UIColor whiteColor]; +} %end %hook QTMColorGroup - (UIColor *)tint100 {