Skip to content

Commit

Permalink
idk stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
naderkhalil committed Mar 30, 2024
1 parent e57eca7 commit e5b3405
Show file tree
Hide file tree
Showing 6 changed files with 13,365 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ brev.dev's dark and light mode theme
To install the extension, execute:

```bash
pip install brevmakesjupyterlookbetter
`pip install brevmakesjupyterlookbetter`
```

## Uninstall
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"private": true,
"name": "brevmakesjupyterlookbetter",
"version": "0.1.0",
"description": "brev.dev's dark and light mode theme",
Expand Down
7 changes: 5 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ import {
} from '@jupyterlab/application';

import { IThemeManager } from '@jupyterlab/apputils';
import '../style/Jupyter-Dark.css';

/**
* Initialization data for the brevmakesjupyterlookbetter extension.
*/
const plugin: JupyterFrontEndPlugin<void> = {
id: 'brevmakesjupyterlookbetter:plugin',
description: 'brev.dev's dark and light mode theme',
description: "brev.dev's dark and light mode theme",
autoStart: true,
requires: [IThemeManager],
activate: (app: JupyterFrontEnd, manager: IThemeManager) => {
console.log('JupyterLab extension brevmakesjupyterlookbetter is activated!');
console.log(
'JupyterLab extension brevmakesjupyterlookbetter is activated!'
);
const style = 'brevmakesjupyterlookbetter/index.css';

manager.register({
Expand Down
Loading

0 comments on commit e5b3405

Please sign in to comment.