UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

44 lines 1.3 kB
var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); import { ChartTheme } from "./chartTheme"; var palette = { fills: [ '#c16068', '#a2bf8a', '#ebcc87', '#80a0c3', '#b58dae', '#85c0d1' ], strokes: [ '#874349', '#718661', '#a48f5f', '#5a7088', '#7f637a', '#5d8692' ] }; var PastelLight = /** @class */ (function (_super) { __extends(PastelLight, _super); function PastelLight() { return _super !== null && _super.apply(this, arguments) || this; } PastelLight.prototype.getPalette = function () { return palette; }; return PastelLight; }(ChartTheme)); export { PastelLight }; //# sourceMappingURL=pastelLight.js.map