Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
655B

  1. #import "TCKRootListController.h"
  2. @implementation TCKAppearanceSettings
  3. -(UIColor *)tintColor {
  4. return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];;
  5. }
  6. -(UIColor *)statusBarTintColor {
  7. return [UIColor whiteColor];
  8. }
  9. -(UIColor *)navigationBarTitleColor {
  10. return [UIColor whiteColor];
  11. }
  12. -(UIColor *)navigationBarTintColor {
  13. return [UIColor whiteColor];
  14. }
  15. -(UIColor *)tableViewCellSeparatorColor {
  16. return [UIColor colorWithWhite:0 alpha:0];
  17. }
  18. -(UIColor *)navigationBarBackgroundColor {
  19. return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];;
  20. }
  21. -(BOOL)translucentNavigationBar {
  22. return NO;
  23. }
  24. @end