-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathColoredStringHelper.h
35 lines (27 loc) · 978 Bytes
/
ColoredStringHelper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// ColoredStringHelper.h
// Strongbox
//
// Created by Mark on 02/03/2020.
// Copyright © 2014-2021 Mark McGuill. All rights reserved.
//
#import <Foundation/Foundation.h>
#if TARGET_OS_IOS || TARGET_OS_WATCH
#import <UIKit/UIKit.h>
typedef UIFont* FONT_PTR;
typedef UIColor* COLOR_PTR;
#else
#import <Cocoa/Cocoa.h>
typedef NSFont* FONT_PTR;
typedef NSColor* COLOR_PTR;
#endif
NS_ASSUME_NONNULL_BEGIN
@interface ColoredStringHelper : NSObject
+ (COLOR_PTR)getColorForCharacter:(NSString*)character darkMode:(BOOL)darkMode colorBlind:(BOOL)colorBlind;
+ (NSAttributedString *)getColorizedAttributedString:(NSString *)password
colorize:(BOOL)colorize
darkMode:(BOOL)darkMode
colorBlind:(BOOL)colorBlind
font:(FONT_PTR _Nullable)font;
@end
NS_ASSUME_NONNULL_END