function getCubehelixColors() {
const hvalues = getSampledOffsets(360, 7)
const svalues = d3.range(0.0, 1.0, 0.25)
const lvalues = d3.range(0.0, 1.0, 1/19)
const cols = []
svalues.forEach(s => hvalues.forEach(h => lvalues.forEach(l => cols.push(d3.cubehelix(h,s,l)))))
return cols
}