jupyterlab_onedarkpro
Version:
A full IDE build of VSCode's One Dark Pro theme for JupyterLab
20 lines • 584 B
JavaScript
import { IThemeManager } from '@jupyterlab/apputils';
/**
* A plugin for jupyterlab_onedarkpro
*/
const plugin = {
id: 'jupyterlab_onedarkpro:plugin',
requires: [IThemeManager],
activate: function (app, manager) {
const style = 'jupyterlab_onedarkpro/index.css';
manager.register({
name: 'JupyterLab One Dark Pro',
isLight: false,
load: () => manager.loadCSS(style),
unload: () => Promise.resolve(undefined)
});
},
autoStart: true
};
export default plugin;
//# sourceMappingURL=index.js.map