steps = [
{weight: 5, color: 'SpringGreen', ease: d3.easeSinInOut},
{weight: 12, color: 'Gold', ease: t => .5 + .5 * (1-t) * Math.cos(t**2 * Math.PI*20)},
{weight: 8, color: 'Tomato', ease: t => .5 + .3 * d3.easeElasticInOut(t)},
{weight: 4, color: 'Aquamarine', ease: t => .8},
{weight: 2, color: 'DeepSkyBlue', ease: t => .8 - .8 * d3.easePolyInOut(t)},
]