diff options
Diffstat (limited to 'Juick/AppDelegate.m')
-rw-r--r-- | Juick/AppDelegate.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m index a776b43..7ccaf13 100644 --- a/Juick/AppDelegate.m +++ b/Juick/AppDelegate.m @@ -11,7 +11,7 @@ #import "RevealPanelViewController.h" #import "SWRevealViewController.h" -#import "ColorsAndButtons.h" +#import "ColorScheme.h" #import "Message.h" @implementation AppDelegate @@ -20,10 +20,10 @@ { // style the navigation bar if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) { - [[UINavigationBar appearance] setBarTintColor:[ColorsAndButtons navbarBackground]]; - } - [[UINavigationBar appearance] setTintColor:[ColorsAndButtons navbarFont]]; - [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorsAndButtons navbarFont]}]; + [[UINavigationBar appearance] setBarTintColor:[ColorScheme navbarBackground]]; + [[UINavigationBar appearance] setTintColor:[ColorScheme navbarFont]]; + [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorScheme navbarFont]}]; + } // make the status bar white [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent; |