I have code that set fill color color:
CGContextSetFillColor(ctx, CGColorGetComponents([UIColorFromRGB(0x0fb803) CGColor]));
where UIColorFromRGB is:
#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
or we can use:
#define UIColor10RGB(r, g, b) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:1.0]
But on the screenshots from the iPhone instead of #97D1A1 I have #8AC98B, this colors have difference.
Ideas?
UPDATE
In this small project I have UIView with #97D1A1 background color
Here is screenshot: In screenshot I have #89C98A