UNPKG

@adamcsanders/theme-light

Version:
25 lines (24 loc) 693 B
"use strict"; 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;