From 3b11af9b0f0a969e18a44e19d931050d257b408a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Bertholon Date: Fri, 13 Apr 2018 18:15:36 +0200 Subject: [PATCH] Fix blue color --- Framework/Sources/UIColor+SRGAppearance.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Sources/UIColor+SRGAppearance.m b/Framework/Sources/UIColor+SRGAppearance.m index b1f8372..57178a3 100644 --- a/Framework/Sources/UIColor+SRGAppearance.m +++ b/Framework/Sources/UIColor+SRGAppearance.m @@ -15,7 +15,7 @@ + (UIColor *)srg_redColor + (UIColor *)srg_blueColor { - return [UIColor colorWithRed:15.f / 255.f green:90.f / 255.f blue:24.f / 203.f alpha:1.f]; + return [UIColor colorWithRed:15.f / 255.f green:90.f / 255.f blue:203.f / 255.f alpha:1.f]; } @end