// export
const colors = [ '#fa7507',....... ];
export function colorIndex(index) {
return colors[index % colors.length] || colors[0];
}
// import
getColor (v) {
const arr = [data]
const idx = arr.findIndex((d) => d.** === v.**);
return colorIndex(idx);
},