Skip to main content

Custom CSS that inverts the colors of images when a dark theme is toggled.

Project description

Image Inverter

Introduction

When toggling dark mode in JupyterBook, images and figures are not inverted by default, but a white background is inserted. However, this white background might not always be desired in dark mode.

The Sphinx-Image-Inverter extension provides a solution by applying an automatic filter to images and iframes. If this filter is not desired for certain items, the Sphinx-Image-Inverter extension provides a solution by allowing selective disabling using the dark-light class.

If the filter should only be applied to a small number of images, this can be done by applying the filter only to items with the dark-light class, in combination with setting inverter_all to true in _config.yml.

[!NOTE] The inversion does not apply to the logo. If a different logo is preferred in dark mode compared to light mode, please use Different logos for light and dark mode.

How does it work?

This Sphinx extension applies a filter such that dark and light colors are switched, however keeps the colours recognizable. This is particularly useful for graphs in which a certain colour is mentioned in accompanying text. Items are not converted if they are marked with the dark-light class (recommended for example for photos).

In more detail, first the colors of the element are inverted, then the hue of the colors is shifted by 180 degrees, so the inverted colors change to their complementary hues. This flips the brightness and contrast, while keeping the hue somewhat recognizable (so a blue line will be a blue line in both ligth and dark mode). Black and white stay inverted (so white becomes black, and black becomes white), because they don’t have a hue. Next, the colors are (by default) saturated to enforce a better contrast. After this, the element blends with the background, making similar colors appear dark and very different colors appear bright. The overall effect creates high contrast between the element and the background, depending on their colors.

Installation

To install the Sphinx-Image-Inverter, follow these steps:

Step 1: Install the Package

Install the sphinx-image-inverter package using pip:

pip install sphinx-image-inverter

Step 2: Add to requirements.txt

Make sure that the package is included in your project's requirements.txt to track the dependency:

sphinx-image-inverter

Step 3: Enable in _config.yml

In your _config.yml file, add the extension to the list of Sphinx extra extensions:

sphinx: 
    extra_extensions:
        - sphinx_image_inverter

Usage

Enable/Disable Inversion of all Images/Figures

By default all images and figures will be inverted. If this is wished for, use the following in your _config.yml:

sphinx: 
    config:
        inverter_all: false

This stops automatic inversion of images and figures. Inversion of specific images and figures can be achieved by enabling this using the dark-light class, see below.

Disable/change saturation

The saturation level is preset to 1.5. If no saturation or a different saturation is requested, use the following in your _config.yml:

sphinx: 
    config:
        inverter_saturation: <saturation>

where <saturation> should be replace with a positive number. The value 1.0 represent no saturation and the value 1.5 is the default value.

Disable/Enable Image/Figure Inversion

By default, when dark-mode is toggled in JupyterBook, all images and figures are inverted. To prevent certain images from being inverted, apply the dark-light class. The steps for both Markdown and HTML formats are given below.

For Markdown Format

  1. Locate the markdown file that contains the image or figure you want to exclude from inversion.

  2. Add the :class: dark-light attribute to the figure directive.

    Example:

    ```{figure} example_folder/example_image.jpg
    :class: dark-light
    :width: 400```
    

For HTML Format

If your image or figure is defined using HTML, apply the dark-light class directly to the tag.

<iframe 
    src="some_figure.html" 
    width="600" 
    height="300" 
    class="dark-light">
</iframe>

Now your image will not be inverted when dark mode is toggled (in the default scenario).

If inverter_all has been set to false, only the image with the dark-light class will be inverted.

Display Text According to Theme

You may want to display different text depending on whether the dark mode or light mode is enabled. To do that, you can use the following classes:

  • Light Mode only:
<span class="only-light">Text only visible in Light Mode.</span>
  • Dark Mode only:
<span class="only-dark">Text only visible in Dark Mode.</span>

These classes make sure that your text is only visible in the specified modes.

Compatible LaTeX colours

If you'd like to use LaTeX colours which invert similarly, use the approach Sphinx extension Sphinx-Named-Colors.

Contribute

This tool's repository is stored on GitHub. The README.md of the branch Manual is also part of the TeachBooks manual as a submodule. If you'd like to contribute, you can create a fork and open a pull request on the GitHub repository. To update the README.md shown in the TeachBooks manual, create a fork and open a merge request for the GitHub repository of the manual. If you intent to clone the manual including its submodules, clone using: git clone --recurse-submodulesgit@github.com:TeachBooks/manual.git.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sphinx_image_inverter-1.1.2.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sphinx_image_inverter-1.1.2-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file sphinx_image_inverter-1.1.2.tar.gz.

File metadata

  • Download URL: sphinx_image_inverter-1.1.2.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sphinx_image_inverter-1.1.2.tar.gz
Algorithm Hash digest
SHA256 8c3c596e885a72d565e7313689d020cfe87cb49d68604e7ecf5562a46c09b68f
MD5 fa32c0d43cec2c712e87223eb7e71ea0
BLAKE2b-256 eed01e0ae6b0997b2c80b6b65b05006aaa501ff9db55935c9eb5bf8e35114ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinx_image_inverter-1.1.2.tar.gz:

Publisher: python-publish.yml on TeachBooks/Sphinx-Image-Inverter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sphinx_image_inverter-1.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for sphinx_image_inverter-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5e31dc91a570f260aca9a135840d7dd8ced0a88e42ac953efd07f8b02b01ac6d
MD5 fe5074b8b92e4b7fab39dc69aa671d12
BLAKE2b-256 5ec809a1044487a51ff027a57856c4c72e4cb85e50c00c8edf6a4d4a42568c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sphinx_image_inverter-1.1.2-py3-none-any.whl:

Publisher: python-publish.yml on TeachBooks/Sphinx-Image-Inverter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page