JupyterLab themes with Cursor vibes.
Note
These themes are heavily inspired by the default Cursor themes, but they are not official Cursor products.
This repository contains two JupyterLab theme extensions:
| Package | Description |
|---|---|
| jupyterlab-cursor-dark | JupyterLab dark theme with Cursor vibes |
| jupyterlab-cursor-light | JupyterLab light theme with Cursor vibes |
- JupyterLab >= 4.0.0
To install the dark theme:
pip install jupyterlab-cursor-darkTo install the light theme:
pip install jupyterlab-cursor-lightOr install both:
pip install jupyterlab-cursor-dark jupyterlab-cursor-lightpip uninstall jupyterlab-cursor-dark jupyterlab-cursor-lightNote: You will need NodeJS to build the extension packages.
The jlpm command is JupyterLab's pinned version of
yarn that is installed with JupyterLab. You may use
yarn or npm in lieu of jlpm below.
# Clone the repo to your local environment
# Change directory to the jupyterlab-cursor-theme directory
# Install dependencies
jlpm
# Build all packages
jlpm build
# Install packages in development mode
pip install -e packages/jupyterlab-cursor-dark
pip install -e packages/jupyterlab-cursor-light
# Link your development versions of the extensions with JupyterLab
jupyter labextension develop packages/jupyterlab-cursor-dark --overwrite
jupyter labextension develop packages/jupyterlab-cursor-light --overwriteYou can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm watch
# Run JupyterLab in another terminal
jupyter labWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
pip uninstall jupyterlab_cursor_dark jupyterlab_cursor_lightIn development mode, you will also need to remove the symlinks created by jupyter labextension develop
command. To find their location, you can run jupyter labextension list to figure out where the labextensions
folder is located. Then you can remove the symlinks named jupyterlab-cursor-dark and jupyterlab-cursor-light within that folder.
See RELEASE

