@adamcsanders/theme-light
Version:
Light theme to restore old behaviors
25 lines (24 loc) • 693 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const apputils_1 = require("@jupyterlab/apputils");
/**
* A plugin for the Telamonian Darcula
*/
const plugin = {
id: '@adamcsanders/theme-ligt:plugin',
requires: [apputils_1.IThemeManager],
activate: function (app, manager) {
manager.register({
name: 'ACS Light',
isLight: true,
load: function () {
return manager.loadCSS('@adamcsanders/theme-light/index.css');
},
unload: function () {
return Promise.resolve(void 0);
}
});
},
autoStart: true
};
exports.default = plugin;