summaryrefslogtreecommitdiff
path: root/Juick/AppDelegate.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-10-02 23:28:08 +0300
committerGravatar Vitaly Takmazov2019-10-02 23:28:08 +0300
commit5ea3dc91c3619e7525da770eb2d124bb3b5f9875 (patch)
treeebce3cce0b792009b8dbf996479c5783869300dd /Juick/AppDelegate.m
parent24c27ae7bea6cab4a6a857217344c33d701c831a (diff)
Fix Dark Mode
Diffstat (limited to 'Juick/AppDelegate.m')
-rw-r--r--Juick/AppDelegate.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m
index fe1b0eb..d4c2304 100644
--- a/Juick/AppDelegate.m
+++ b/Juick/AppDelegate.m
@@ -29,7 +29,7 @@ NSString * const UserUpdatedNotificationName = @"UserUpdated";
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UINavigationBar appearance] setTintColor:[UIColor colorNamed:@"Title"]];
- [[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];
+ [[UINavigationBar appearance] setBarTintColor:[UIColor colorNamed:@"Background"]];
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor colorNamed:@"Muted"]}];
[[UINavigationBar appearance] setLargeTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor colorNamed:@"Muted"]}];
[[UIToolbar appearance] setTintColor:[UIColor colorNamed:@"Title"]];