# jupyterlab-theme-solarized-dark **Repository Path**: acrowise/jupyterlab-theme-solarized-dark ## Basic Information - **Project Name**: jupyterlab-theme-solarized-dark - **Description**: JupyterLab 2/3 Solarized Dark extension - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-06 - **Last Updated**: 2021-11-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jupyterlab-theme-solarized-dark ![Github Actions Status](https://github.com/AllanChain/jupyterlab-theme-solarized-dark/workflows/Build/badge.svg) ![License](https://img.shields.io/github/license/AllanChain/jupyterlab-theme-solarized-dark.svg) ![GitHub last commit](https://img.shields.io/github/last-commit/AllanChain/jupyterlab-theme-solarized-dark) ![GitHub stars](https://img.shields.io/github/stars/AllanChain/jupyterlab-theme-solarized-dark) [![NPM Version](https://img.shields.io/npm/v/jupyterlab-theme-solarized-dark.svg)](https://npmjs.org/package/jupyterlab-theme-solarized-dark) ![Monthly Downloads](https://img.shields.io/npm/dm/jupyterlab-theme-solarized-dark.svg?label=npm%20downloads) [![PyPI](https://img.shields.io/pypi/v/jupyterlab_theme_solarized_dark)](https://pypi.org/project/jupyterlab-theme-solarized-dark/) ![PyPI - Downloads](https://img.shields.io/pypi/dm/jupyterlab_theme_solarized_dark?label=pypi%20downloads) JupyterLab 2.x / 3.x Solarized Dark extension. The theme is originally created by [Jae Hee Lee](http://jaeheelee.info/) [here](https://gist.github.com/dschaehi/ff6d30e6779a683053a1f078af178cdb) ## Screenshot ![Screenshot](https://user-images.githubusercontent.com/36528777/79721723-6927f680-8315-11ea-8a5b-e2c298eeed09.png) ## Prerequisites * JupyterLab ## Version - `v0.2.x` is mainly based on Jae Hee Lee's original theme - `v1.x` aims to provide a smoother looking. - Starting from `v2.x`, Jupyterlab `v3.x` support is added. ## Requirements * JupyterLab >= 2.0 or JupyterLab >= 3.0 ## Install To install it as a prebuilt extension (requires JupyterLab >= 3.0): ```bash pip install jupyterlab_theme_solarized_dark ``` Or install it as a source extension: ```bash jupyter labextension install jupyterlab-theme-solarized-dark ``` Apply theme by checking `Settings -> Jupyterlab Theme -> Jupyterlab Solarized Dark` To enable theme scrollbars, in JupyterLab, either - navigate to `Settings -> Advanced Settings Editor -> Theme`, and add `"theme-scrollbars": true` to `User Preferences` - OR check `Settings -> Jupyterlab Theme -> Theme Scrollbars` ## Contributing ### Development install Note: You will need NodeJS to build the extension package. The `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use `yarn` or `npm` in lieu of `jlpm` below. ```bash # Clone the repo to your local environment # Change directory to the jupyterlab_theme_solarized_dark directory # Install package in development mode pip install -e . # Link your development version of the extension with JupyterLab jupyter labextension develop . --overwrite # Rebuild extension Typescript source after making changes jlpm run build ``` 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. ```bash # Watch the source directory in one terminal, automatically rebuilding when needed jlpm run 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. 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 run 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: ```bash jupyter lab build --minimize=False ``` ### Uninstall ```bash pip uninstall jupyterlab_theme_solarized_dark ``` Or ```bash jupyter labextension uninstall jupyterlab-theme-solarized-dark ```