Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to colourblind-friendly values #95

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Source/Classes/MUColor.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ + (UIColor *) selectedTextColor {
}

+ (UIColor *) goodPingColor {
// #609a4b
return [UIColor colorWithRed:0x60/255.0f green:0x9a/255.0f blue:0x4b/255.0f alpha:1.0f];
// #2B9F78
return [UIColor colorWithRed:0x2b/255.0f green:0x9f/255.0f blue:0x78/255.0f alpha:1.0f];
}

+ (UIColor *) mediumPingColor {
// #F2DE69
return [UIColor colorWithRed:0xf2/255.0f green:0xde/255.0f blue:0x69/255.0f alpha:1.0f];
// #F0E54B
return [UIColor colorWithRed:0xf0/255.0f green:0xe5/255.0f blue:0x4b/255.0f alpha:1.0f];
}

+ (UIColor *) badPingColor {
// #D14D54
return [UIColor colorWithRed:0xd1/255.0f green:0x4d/255.0f blue:0x54/255.0f alpha:1.0f];
// #D6641E
return [UIColor colorWithRed:0xd6/255.0f green:0x64/255.0f blue:0x1e/255.0f alpha:1.0f];
}

+ (UIColor *) userCountColor {
Expand Down