ag-grid-enterprise
Version:
AG Grid Enterprise Features
69 lines • 2 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 (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.MaterialDark = void 0;
var darkTheme_1 = require("./darkTheme");
var palette = {
fills: [
'#f44336',
'#e91e63',
'#9c27b0',
'#673ab7',
'#3f51b5',
'#2196f3',
'#03a9f4',
'#00bcd4',
'#009688',
'#4caf50',
'#8bc34a',
'#cddc39',
'#ffeb3b',
'#ffc107',
'#ff9800',
'#ff5722',
],
strokes: [
'#ab2f26',
'#a31545',
'#6d1b7b',
'#482980',
'#2c397f',
'#1769aa',
'#0276ab',
'#008494',
'#00695f',
'#357a38',
'#618834',
'#909a28',
'#b3a429',
'#b38705',
'#b36a00',
'#b33d18',
],
};
var MaterialDark = /** @class */ (function (_super) {
__extends(MaterialDark, _super);
function MaterialDark() {
return _super !== null && _super.apply(this, arguments) || this;
}
MaterialDark.prototype.getPalette = function () {
return palette;
};
return MaterialDark;
}(darkTheme_1.DarkTheme));
exports.MaterialDark = MaterialDark;
//# sourceMappingURL=materialDark.js.map