[MAPSME-5820] [ios] Added transparent green color for cells with available places.

This commit is contained in:
Ilya Grechuhin 2017-12-01 16:23:45 +03:00 committed by Roman Kuznetsov
parent fe698da5d9
commit f8c1c230e5
2 changed files with 6 additions and 0 deletions

View file

@ -38,6 +38,7 @@
+ (UIColor *)bannerButtonBackground;
+ (UIColor *)toastBackground;
+ (UIColor *)statusBarBackground;
+ (UIColor *)transparentGreen;
+ (UIColor *)ratingRed;
+ (UIColor *)ratingOrange;
+ (UIColor *)ratingYellow;

View file

@ -313,6 +313,11 @@ UIColor * color(SEL cmd)
return [UIColor colorWithRed:scaled(218.) green:scaled(55) blue:scaled(67) alpha:alpha100];
}
+ (UIColor *)transparentGreen
{
return [UIColor colorWithRed:scaled(233) green:scaled(244) blue:scaled(233) alpha:alpha26];
}
+ (UIColor *)ratingRed
{
return [UIColor colorWithRed:scaled(229) green:scaled(57) blue:scaled(53) alpha:alpha100];