ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
46 lines • 1.4 kB
JavaScript
;
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 __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var chartTheme_1 = require("./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_1.ChartTheme));
exports.PastelLight = PastelLight;
//# sourceMappingURL=pastelLight.js.map