forked from organicmaps/organicmaps
[MAPSME-5820] [ios] Added transparent green color for cells with available places.
This commit is contained in:
parent
fe698da5d9
commit
f8c1c230e5
2 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
+ (UIColor *)bannerButtonBackground;
|
||||
+ (UIColor *)toastBackground;
|
||||
+ (UIColor *)statusBarBackground;
|
||||
+ (UIColor *)transparentGreen;
|
||||
+ (UIColor *)ratingRed;
|
||||
+ (UIColor *)ratingOrange;
|
||||
+ (UIColor *)ratingYellow;
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue