I have used this two combinators for working with ColorStops [here](https://github.com/safareli/purescript-colorpalettepicker-halogen/blob/56a98be084c35e596438187aa1fc0152e5d8bb9a/src/ColorPalettePicker/Utils/PreScale.purs#L10) ```purescript combineStops :: Number → ColorStops → ColorStops → ColorStops reverseStops :: ColorStops → ColorStops -- usage: myStops = fooStops `combineStops 0.5` (reverseStops fooStops) ```
I have used this two combinators for working with ColorStops here