From d1cd5e68a1c9aed46841b53460a6fca01dea1625 Mon Sep 17 00:00:00 2001 From: arichorn <78001398+arichorn@users.noreply.github.com> Date: Wed, 20 Sep 2023 21:44:26 -0500 Subject: [PATCH] LowContrastMode Improvements --- Source/LowContrastMode.xm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 {