I need to apply a filter as a gradient map to HTML elements, with custom gradients and specific distances between each color value.
Putting into images what I've done and what I'd like to do.
Let's say we have a black & white image.
With some css, we use the filter below to map from black/white to red/green/blue.
<filter id="rgb_gradient">
<feComponentTransfer>
<feFuncR type="table" tableValues="1 0 0"/>
<feFuncG type="table" tableValues="0 1 0"/>
<feFuncB type="table" tableValues="0 0 1"/>
<feFuncA type="table" tableValues="0 1"/>
</feComponentTransfer>
</filter>
Point A to B will look like this:

At the moment, all three colors will be evenly distributed (red at 0%, green at 50%, blue at 100%).
So, back to the question...
Can I set/move (for example) the green value from 50% to 82%?
Thanks in advance.

