CSS Filter Generator

Project website: CSS Filter Generator
This is a tool to create css image filters, quite useful for changing colors of SVG icons.
This project is based off Barrett Sonntag's codepen. The problem I faced when using Barrett's version was that I had to try multiple times (sometimes 10-20 times) to get a filter value with loss <= 1. So I created a version where the computation logic keeps spitting filter values till the time it hits a loss of less than equal to 1.
In addition to that I placed all the computation logic inside a web worker so that it doesn't put strain on the main thread.
You can checkout the source code here.