Information | Links |
---|---|
Project | |
Tools | |
Welcome to the JupyterLab accessible themes' repository ππ½. To learn more about the broader accessibility initiatives within Jupyter, check the jupyter/accessibility repository.
This repository defines a set of accessible themes according to WCAG color standards. Please note that some themes are optimized for colorblindness and/or high contrast. Inside the README of each theme, you will find detailed information about the colors, their purpose and reference links from the original authors.
=======
All the themes are using the Atkinson Hyperlegible font, which focuses on letter form distinction to increase character recognition, ultimately improving readability.
This font can only be changed for the Markdown viewer
and the Terminal
. You will need to make these changes from the Advanced settings
editor in the JupyterLab UI:
Settings
option in the menu bar
.Markdown viewer settings
, and type the font family that you want to use.Terminal
font, scroll down to Terminal settings
and type the name of the font family.You can install the extension using pip
:
pip install jupyterlab-accessible-themes
If you prefer conda
:
conda install -c conda-forge jupyterlab-accessible-themes
# alternatively you can use mamba
mamba install jupyterlab-accessible-themes
After installing the extension, open JupyterLab, go to the top menu bar, go to Settings > Theme, and choose one of the themes provided by this extension.
To remove the extension you can run the following command:
# if installed with pip
pip uninstall jupyterlab-accessible-themes
# if using conda
conda uninstall jupyterlab-accessible-themes
pip
.Note The
jlpm
command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may useyarn
ornpm
in lieu ofjlpm
in the commands below.
Clone this repository to your local computer:
git clone https://github.com/Quansight-Labs/jupyterlab-accessible-themes.git
Change to the jupyterlab-accessible-themes
directory:
cd jupyterlab-accessible-themes
Optional but recommended - Create and activate a development environment with conda:
# Create environment named `jupyterlab-accessible-themes`
conda create -n jupyterlab-accessible-themes
conda activate jupyterlab-accessible-themes
Install JupyterLab and NodeJS if not installed:
# Install node and jupyterlab from conda-forge
conda install -c conda-forge 'nodejs>16' 'jupyterlab<4'
Install the node dependencies and build the extension:
# Install node dependencies
jlpm install
# Compile packages before linking to Jupyterlab development version
jlpm build
Install the package in development mode:
pip install -e .
Now you'll need to link the development version of the extension to JupyterLab and rebuild the Typescript source:
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
On the first installation, or after making some changes, to visualize them in your local JupyterLab re-run the following command:
# Rebuild extension Typescript source after making changes
jlpm build
Run JupyterLab and check that the installation worked:
# Run JupyterLab
jupyter lab
Important Once everything is installed, you will need to select the theme inside JupyterLab via the main menu
Settings > Theme
.
π You 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 (JupyterLab accessible themes) in one terminal, automatically rebuilding when needed
# Can use yarn or npm depending on your preference
jlpm watch
# Run JupyterLab in another terminal
jupyter lab
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab instance. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
By default, the jlpm build
command generates the source maps for this extension to make it easier to debug using the browser dev tools.
To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=False
This repository uses the prettier
pre-commit hook to standardize our YAML and markdown structure.
Before you can run the hooks, you need to install the pre-commit package manager:
# using pip
pip install pre-commit
# if you prefer using conda
conda install -c conda-forge pre-commit
From the root of this project, install the git hook scripts:
# install the pre-commit hooks
pre-commit install
Optional- run the hooks against the files in this repository
# run the pre-commit hooks
pre-commit run --all-files
Remove the extension:
pip uninstall jupyterlab-accessible-themes
In development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list
to figure out where the labextensions
folder is located. Then you can remove the symlink named jupyterlab-accessible-themes
within that folder.
This extension is using Jest for JavaScript code testing.
To execute the tests run the following command:
jlpm
jlpm test
This extension uses Playwright for the integration tests (aka user-level tests). More precisely, the JupyterLab helper Galata is used to handle testing the extension in JupyterLab. More information is provided within the ui-tests README.
Detailed instructions for creating jupyterlab-accesible-themes
can be found in the RELEASE file.
This project is licensed under the BSD-3-Clause license.
We want to thank the following sources for being the source of inspiration for one or more themes that are available in this repository,