Skip to content

Commit

Permalink
#315 lighter colours for ref labels
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanj committed May 15, 2014
1 parent c1dd13d commit 16a42d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Classes/Views/PBGitRevisionCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 16a42d7

Please sign in to comment.