Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was looking to be able to turn any UIColor into a gradient. The way I am intending to do this is by using Core Graphics to draw a gradient. What I am trying to do is to get a color, lets say:

[UIColor colorWithRed:0.5 green:0.5 blue:0.5 alpha:1.0];

and get a UIColor which is a few shades darker and a few shades lighter. Does anyone know how to do this? Thank you.

share|improve this question
"gradient" implies that one portion of your image will be one shade of the color while another portion will be a darker or lighter shade. Is this another way of defining what you want to do? – Michael Dautermann Jul 22 '12 at 6:02

3 Answers

up vote 45 down vote accepted
- (UIColor *)lighterColorForColor:(UIColor *)c
{
    float r, g, b, a;
    if ([c getRed:&r green:&g blue:&b alpha:&a])
        return [UIColor colorWithRed:MIN(r + 0.2, 1.0)
                               green:MIN(g + 0.2, 1.0)
                                blue:MIN(b + 0.2, 1.0)
                               alpha:a];
    return nil;
}

- (UIColor *)darkerColorForColor:(UIColor *)c
{
    float r, g, b, a;
    if ([c getRed:&r green:&g blue:&b alpha:&a])
        return [UIColor colorWithRed:MAX(r - 0.2, 0.0)
                               green:MAX(g - 0.2, 0.0)
                                blue:MAX(b - 0.2, 0.0)
                               alpha:a];
    return nil;
}

Use it like this:

UIColor *baseColor = // however you obtain your color
UIColor *lighterColor = [self lighterColorForColor:baseColor];
UIColor *darkerColor = [self darkerColorForColor:baseColor];

EDIT: as @Anchu Chimala pointed out, for maximum flexibility, these methods should be implemented as an UIColor category. Also, from @Riley's idea, it may be a better idea to make the color proprtionally darker or lighter instead of adding or subtracting constant values. As @jrturton pointed out, it's not necessary to manipulate the RGB components; it's better to modify the brightness property itself. All in all:

@implementation UIColor (LightAndDark)

- (UIColor *)lighterColor
{
    float h, s, b, a;
    if ([self getHue:&h saturation:&s brightness:&b alpha:&a])
        return [UIColor colorWithHue:h
                          saturation:s
                          brightness:MIN(b * 1.3, 1.0)
                               alpha:a];
    return nil;
}

- (UIColor *)darkerColor
{
    float h, s, b, a;
    if ([self getHue:&h saturation:&s brightness:&b alpha:&a])
        return [UIColor colorWithHue:h
                          saturation:s
                          brightness:b * 0.75
                               alpha:a];
    return nil;
}
@end
share|improve this answer
Thanks, I will check if that works. – CoreCode Jul 22 '12 at 6:13
@CoreCode OK, happy coding :) – H2CO3 Jul 22 '12 at 6:15
Ooh, fancy. I like this answer better. +1 – Riley Jul 22 '12 at 6:20
Because this is universal, and doesn't require explicit knowledge about the original color, just works ;) – H2CO3 Jul 22 '12 at 6:20
4  
You should implement this as a category on UIColor for maximum fanciness. Imagine the possibilities. [[UIColor redColor] darkerColor]. – Anshu Chimala Jul 22 '12 at 7:21
show 6 more comments

If you convert the RGB color to the HSL color model then you can vary the L = lightness component from L = 0.0 (black) over L = 0.5 (natural color) to L = 1.0 (white) . UIColor cannot handle HSL directly, but there are formula for converting RGB <-> HSL.

share|improve this answer
Not HSL, but HSB is fine : developer.apple.com/library/ios/documentation/uikit/reference/…: – jrturton Jul 22 '12 at 7:50
2  
The difference between the HSL and the HSB (sometimes also called HSV) color model is that in HSB L = 1.0 corresponds to the pure color, whereas in HSL L = 1.0 corresponds to white and L = 0.5 to the pure color. Since the original poster asked e.g. for a way to make the color blue (RGB=0/0/1) lighter, I think that HSL is more flexible. – Martin R Jul 22 '12 at 8:03
I didn't know that. Thanks! – jrturton Jul 22 '12 at 8:54

I'm not sure if you're looking for some sort of Objective-C answer, but based on how colors specified by RGBA work, I think you can simply scale the RGB values according to an arbitrary factor to get a "lighter" or "darker" shade. For example, you might have a blue:

[UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];

Want a darker blue? Multiply the RGB values by 0.9:

[UIColor colorWithRed:0.0 green:0.0 blue:0.9 alpha:1.0];

Voila. Or maybe you have an orange:

[UIColor colorWithRed:1.0 green:0.4 blue:0.0 alpha:1.0];

Choose another scale factor, say, 0.8:

[UIColor colorWithRed:0.8 green:0.32 blue:0.0 alpha:1.0];

Is that the sort of effect you're looking for?

share|improve this answer
Ok Yeah that is half of what I need. Is there a way to get a lighter color then when blue is 1 (Max) – CoreCode Jul 22 '12 at 6:12
@CoreCode no, not really. Unless you wish to change the birghtness of the device's screen :) See my answer. – H2CO3 Jul 22 '12 at 6:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.