%hook CNContactView
-(void) setBackgroundColor:(UIColor *)arg {
// You can use this one
arg = [UIColor redColor];
// Or this one
arg = [UIColor colorWithRed:36.0f/255.0f green:52.0f/255.0f blue:71.0f/255.0f alpha:1.0];
return %orig;
}
%end