From 16a42d7c6fad341db4ab2d7ba10032311eb79200 Mon Sep 17 00:00:00 2001 From: Rowan James Date: Thu, 15 May 2014 23:43:17 +1000 Subject: [PATCH] #315 lighter colours for ref labels --- Classes/Views/PBGitRevisionCell.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/Views/PBGitRevisionCell.m b/Classes/Views/PBGitRevisionCell.m index 825e87567..9b845278d 100644 --- a/Classes/Views/PBGitRevisionCell.m +++ b/Classes/Views/PBGitRevisionCell.m @@ -223,11 +223,11 @@ - (NSColor*) colorForRef: (PBGitRef*) ref NSString* type = [ref type]; if ([type isEqualToString:@"head"]) { - return [NSColor colorWithCalibratedRed: 0X7a/256.0 green:0Xd2/256.0 blue: 0X54/256.0 alpha: 1.0]; + return [NSColor colorWithCalibratedRed: 0X9a/256.0 green:0Xe2/256.0 blue: 0X84/256.0 alpha: 1.0]; } else if ([type isEqualToString:@"remote"]) { - return [NSColor colorWithCalibratedRed: 0x82/256.0 green:0Xaf/256.0 blue: 0Xef/256.0 alpha: 1.0]; + return [NSColor colorWithCalibratedRed: 0xa2/256.0 green:0Xcf/256.0 blue: 0Xef/256.0 alpha: 1.0]; } else if ([type isEqualToString:@"tag"]) { - return [NSColor colorWithCalibratedRed: 0Xfc/256.0 green:0Xed/256.0 blue: 0X4f/256.0 alpha: 1.0]; + return [NSColor colorWithCalibratedRed: 0Xfc/256.0 green:0Xed/256.0 blue: 0X6f/256.0 alpha: 1.0]; } return [NSColor yellowColor];