UNPKG

@yeebc/jupyterlab_neon_theme

Version:

A flat, 80's neon inspired theme for JupyterLab 3.x.

22 lines 780 B
import { IThemeManager } from '@jupyterlab/apputils'; /** * Initialization data for the @datalayer-jupyter/jupyterlab-theme-winter extension. */ const extension = { id: '@yeebc/jupyterlab_neon_theme:plugin', requires: [IThemeManager], autoStart: true, activate: (app, manager) => { console.log('JupyterLab extension @datalayer-jupyter/jupyterlab-theme-winter is activated!'); const style = '@yeebc/jupyterlab_neon_theme/index.css'; manager.register({ name: 'JupyterLab Neon Night', isLight: false, themeScrollbars: true, load: () => manager.loadCSS(style), unload: () => Promise.resolve(undefined) }); } }; export default extension; //# sourceMappingURL=index.js.map