ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
25 lines • 467 B
JavaScript
import { ChartTheme } from "./chartTheme";
const palette = {
fills: [
'#c16068',
'#a2bf8a',
'#ebcc87',
'#80a0c3',
'#b58dae',
'#85c0d1'
],
strokes: [
'#874349',
'#718661',
'#a48f5f',
'#5a7088',
'#7f637a',
'#5d8692'
]
};
export class PastelLight extends ChartTheme {
getPalette() {
return palette;
}
}
//# sourceMappingURL=pastelLight.js.map