Crates.io | prettypretty |
lib.rs | prettypretty |
version | 0.10.0 |
source | src |
created_at | 2024-06-13 07:08:43.4499 |
updated_at | 2024-07-12 13:13:13.919591 |
description | Applying 2020s color science to 1970s terminal user interfaces |
homepage | https://crates.io/crates/prettypretty |
repository | https://github.com/apparebit/prettypretty |
max_upload_size | |
id | 1270279 |
size | 289,309 |
[ Documentation | Rust Crate | Python Package | Repository ]
🎖️ As featured on Real Python #211
Prettypretty is a Rust library with optional Python integration that brings 2020s color science to 1970s terminals for building awesome terminal user interfaces (TUIs). The intended benefits are twofold:
To make that possible, prettypretty provides simple abstractions for terminal and high-resolution colors alike, facilitates seamless conversion between them and common color spaces, and implements state-of-the-art algorithms for gamut-mapping, color interpolation, perceptual contrast, as well as its own hue- and lightness-based downsampling for optimal selection of ANSI colors.
The optional Python integration is enabled with the pyffi
feature flag and
relies on PyO3 and Maturin
for building an extension module with the same functionality. Only where the
Rust library uses trait implementations, the Python module uses dedicated
methods.
Also, where the Rust library currently is BYO(T)IO, that is, bring your own
(terminal) I/O, the Python library comes with a powerful terminal abstraction
that makes, say, querying the terminal for the current color
theme
a breeze.
The Python documentation covers the functionality that currently is Python-only. Over time, I expect to port those features to Rust as well.
Prettypretty leverages both programming languages to their fullest and hence requires relatively recent versions:
I expect that, as the project matures, the version lag between minimum and latest versions will grow, as it should.
Besides the documentation, a good starting point for familiarizing yourself with prettypretty are the scripts:
prettypretty.progress illustrates the library's use on the example of a progress bar in less than 100 lines of Python. The finished progress bar is shown below for both light and dark themes.
prettypretty.plot charts colors on the chroma/hue plane of Oklab, if you don't feed it colors defaulting to your terminal's current color scheme. Here's the one for the basic theme in Apple's Terminal.app:
prettypretty.grid visualizes perceptual contrast and color downsampling strategies, exhaustively for the 6x6x6 RGB cube embedded in 8-bit color and selectively for 32x32 slices through the much bigger 24-bit RGB cube.
I wrote much of prettypretty over a two-month period in 2024. Twice. I first implemented the core color routines in Python and then I did so again in Rust. At this point, only the Rust version survives. But Python remains a tier-1 runtime target for prettypretty. Two things really helped with getting this project started. First, I had been toying with different approaches to terminal styles for a while and knew what I was looking for. Second, I benefitted tremendously from Lea Verou's and Chris Lilley's work on the Color.js library and CSS Color 4 specification. Prettypretty directly reuses Color.js' formulae for conversion between color spaces and implements several CSS Color 4 algorithms.
Copyright 2024 Robert Grimm. The code in this repository has been released as open source under the Apache 2.0 license.