Crates.io | terminal-colorsaurus |
lib.rs | terminal-colorsaurus |
version | 0.4.7 |
source | src |
created_at | 2024-01-20 19:40:53.285611 |
updated_at | 2024-11-26 21:30:49.577332 |
description | Determines the background and foreground color of the terminal |
homepage | |
repository | https://github.com/bash/terminal-colorsaurus |
max_upload_size | |
id | 1106783 |
size | 112,203 |
Determines the background and foreground color of the terminal
using the OSC 10
and OSC 11
escape codes.
This library helps answer the question «Is this terminal dark or light?».
Works in all major terminals including Windows Terminal (starting with v1.22).
use terminal_colorsaurus::{color_scheme, QueryOptions, ColorScheme};
match color_scheme(QueryOptions::default()).unwrap() {
ColorScheme::Dark => { /* ... */ },
ColorScheme::Light => { /* ... */ },
}
This crate borrows ideas from many other projects. This list is by no means exhaustive.
mio
to wait for the terminal's response with a timeout.DA1
trick
to easily detect terminals that don't support querying the colors with OSC 10
/ OSC 11
.Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.