I am trying to visualize some values on a form. They range from 0 to 200 and I would like the ones around 0 be green and turn bright red as they go to 200.
Basically the function should return color based on the value inputted. Any ideas ?
|
2
|
I am trying to visualize some values on a form. They range from 0 to 200 and I would like the ones around 0 be green and turn bright red as they go to 200. Basically the function should return color based on the value inputted. Any ideas ?
|
||
|
|
|
|
Basically, the general method for smooth transition between two values is the following function:
That given, you define a function that does the transition for triplets (RGB, HSV etc).
Assuming you have RGB colours for the s and e triplets, you can use the transition3 function as-is. However, going through the HSV colour space produces more "natural" transitions. So, given the conversion functions (stolen shamelessly from the Python colorsys module and converted to pseudocode :):
, you can have code as following:
|
|||
|
|
|
If you use linear ramps for Red and Green values as Peter Parker suggested, the color for value 100 will basically be puke green (127, 127, 0). You ideally want it to be a bright orange or yellow at that midpoint. For that, you can use:
|
||
|
|
|
|
You don't say in what environment you're doing this. If you can work with HSV colors, this would be pretty easy to do by setting S = 100 and V = 100, and determining H by:
Converting from HSV to RGB is also reasonably easy. [EDIT] Note: in contrast to some other proposed solutions, this will change color green -> yellow -> orange -> red. |
|||
|
|
|
|
For best controllable and accurate effect, you should use the HSV color space. With HSV, you can easily scale Hue, Saturation and/or Brightness seperate from each other. Then, you do the transformation to RGB. |
||
|
|
|
|
Pick a green that you like (RGB1 = #00FF00, e.g.) and a Red that you like (RGB2 = #FF0000, e.g.) and then calculate the color like this
|
||
|
|
|
|
Looking through this wikipedia article I personally would pick a path through a color space, and map the values onto that path. But that's a straight function. I think you might be better suited to a javascript color chooser you can find with a quick color that will give you the Hex, and you can store the Hex. |
||
|
|
|
|
red = (float)Val/200 *255 ; green = (float)(200-val)/200 *255; blue = 0; return red <<16 + green << 8 + blue; |
||||
|