index.ts 347 B

12345678910111213141516171819
  1. import {
  2. JupyterLabPlugin
  3. } from '@jupyterlab/application';
  4. import '@jupyterlab/theming/style/variables-light.css';
  5. /**
  6. * Initialization data for the light theme extension.
  7. */
  8. const extension: JupyterLabPlugin<void> = {
  9. id: 'jupyter.themes.light',
  10. autoStart: true,
  11. activate: (app) => {
  12. // No-op.
  13. }
  14. };
  15. export default extension;