I need a way to calculate lighter hex color(s) based on a provided one. I realize I could use a color transform, but I need the actual value in order to generate a gradient.
Thanks in advance for any help -
b
|
I need a way to calculate lighter hex color(s) based on a provided one. I realize I could use a color transform, but I need the actual value in order to generate a gradient. Thanks in advance for any help - b |
|||
|
|
|
Here's some stuff pulled out of my Color utils. Sounds like makeGradient might be useful to you.
Also, can't recall where I got this from but these static function will generate a harmony list given a color:
|
|||
|
|
|
Here is a function that I wrote for a recent project that allows you to find a colour value between two others based on a range of 0-1. I think it will meet your needs
|
|||
|
|
|
The most accurate way to do this is to convert the RGB value to HSL or HSV (Hue, Saturation, Luminance/Brightness) and then adjust the saturation and or luminance/brightness values (leaving the hue alone). Then convert back to RGB. When you try to do math on RGB values directly, you tend to get hue changes. Saturation is how pure the color is, a value of 0.0 is grey, while a value of 1.0 is pure color. Luminance/Brightness aren't the same thing, but they are similar. They both are used to move a value towards black or white. So when you say lighter, you probably mean more towards white, but you may also mean more towards grey (desaturated). Or possibly both. Once you have your RGB value converted into Hue, Saturation and Brightness, then you just multiply brightness by some number > 1 to make it brighter, or Saturation by some value < 1 to make it greyer. then convert back to RGB. I don't know action script, but here is C style pseudocode for RGB->HSB and HSB->RGB. RGB to HSB
HSB to RGB
|
||||
|
|
|
I have translated the c code to AS3 and fixed the few errors in the code as well. dmin was calculating the max in the rgb to hsb function as well as when calculating the hue when blue is the max it should be red - green else cyan and magenta get turned backwards. RGB to HSB
HSB to RGB
|
|||
|
|
|
Have you had a look at mx.utils.ColorUtil and the adjustBrightness methods? |
|||
|
|