You could try a combination of sepia and hue-rotate filters:
filter: sepia(0.5) hue-rotate(75deg)
Or use SVG:
<svg width="512" height="238" viewBox="0 0 512 238">
<filter id="Table">
<feComponentTransfer color-interpolation-filters="linearRGB">
<feFuncR type="linear" slope="0.8"></feFuncR>
<feFuncG type="linear" slope="1.4"></feFuncG>
<feFuncB type="linear" slope="0.9"></feFuncB>
</feComponentTransfer>
</filter>
<image x="0" y="0" width="100%" height="100%"
preserveAspectRatio="false"
filter="url(#Table)" href="color.jpg"/>
</svg>
It's probably possible to design an SVG filter that more closely matches your example, but I don't know how.