@antv/g2
Version:
the Grammar of Graphics in Javascript
19 lines • 376 B
JavaScript
/**
* Classic palette of AntV for ordinal data with 10 colors.
*/
export const Category10 = () => {
return [
'#5B8FF9',
'#5AD8A6',
'#5D7092',
'#F6BD16',
'#6F5EF9',
'#6DC8EC',
'#945FB9',
'#FF9845',
'#1E9493',
'#FF99C3',
];
};
Category10.props = {};
//# sourceMappingURL=category10.js.map