|
123456789101112131415161718192021222324252627282930313233 |
- #import "TCKRootListController.h"
-
- @implementation TCKAppearanceSettings
-
- -(UIColor *)tintColor {
- return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];;
- }
-
- -(UIColor *)statusBarTintColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)navigationBarTitleColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)navigationBarTintColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)tableViewCellSeparatorColor {
- return [UIColor colorWithWhite:0 alpha:0];
- }
-
- -(UIColor *)navigationBarBackgroundColor {
- return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];;
- }
-
- -(BOOL)translucentNavigationBar {
- return NO;
- }
-
- @end
|