I need to visualize a list of numbers, this list is generated every x minutes. I currently use a single line with numbers at the side. This works correctly, but while doing live analysis it becomes hard on the eyes.
After thinking a bit i came up with the idea of color coding the numbers, a large negative number is red and a large positive number is green, a normal positive number is light green, slightly bigger than normal number sits between green and light green.
To illustrate it i made a image:
To my question. If for example we have:
50: Color.green
0: Color.white
-50: Color.red
How can i calculate the color that represents 25?