Let's say I have a div with a smooth linear gradient (left to right) background from green to red and given a number between 0 and 1 I want to know the specific color that percentage from the left.
Ie 0 would map to green and 1 would map to red. .5 would map to the reddish greenish middle etc. so the return of such a function would be the color representation (e.g hex, rgba).
I'm not sure how to get the color of a specific spot of the background within a div. if I could figure that out I think I'd be ok.
If you could convert Hex into integers for the number I think you should be able to get the average number between 2 colors. Assuming you already have the color codes Green: #33FF33 Red: #FF0000
Then call this function for both of your colors giving you an array of ints.
This should return the average color.
If you could post the background value you have for an element, I can post the selecting of colors.
This is how you would call it
GetColorAtPos(ConvertToInt("FFFFFF"), ConvertToInt("000000"), .5)