I'm trying to find KonvaJS filter values' equivalents of CSS filters on https://www.cssfilters.co/
For example how can I apply "1977" filter with KonvaJS. I tried many options but I'm getting different results everytime. Also is it possible to give values for Sepia or Grayscale?
I'm using filters like this (with different values):
backgroundImage.filters([
Konva.Filters.Contrast,
Konva.Filters.Brighten,
Konva.Filters.HSV
]);
backgroundImage.contrast(10);
backgroundImage.brightness(0.10);
backgroundImage.saturation(7.8);
backgroundImage.hue(0);
backgroundImage.value(0);