UNPKG

323 BJavaScriptView Raw
1function colors(specifier) {
2 var n = specifier.length / 6 | 0, colors2 = new Array(n), i = 0;
3 while (i < n)
4 colors2[i] = "#" + specifier.slice(i * 6, ++i * 6);
5 return colors2;
6}
7const d3schemeTableau10 = colors("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab");
8export {
9 d3schemeTableau10 as d
10};