[ios] Improved text thickness in combination with branch name

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-08-27 16:30:29 +02:00
committed by Konstantin Pastbin
parent c039d599e4
commit 49391bb39e
12 changed files with 36 additions and 25 deletions

View File

@@ -4,6 +4,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface UIColor (MapsMeColor)
+ (UIColor *)black;
+ (UIColor *)blackPrimaryText;
+ (UIColor *)blackSecondaryText;
+ (UIColor *)blackHintText;

View File

@@ -68,6 +68,11 @@ static BOOL isNightMode = NO;
{
return StyleManager.shared.theme.colors.buttonRed;
}
+ (UIColor *)black
{
return StyleManager.shared.theme.colors.black;
}
+ (UIColor *)blackPrimaryText
{
return StyleManager.shared.theme.colors.blackPrimaryText;