bottom 0.12.3

A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows.
Documentation
//! A set of pre-defined themes.

pub(super) mod default;
pub(super) mod gruvbox;
pub(super) mod nord;

/// Convert a [`tui::style::Color`] into a [`tui::style::Style`] with the color as the foreground.
macro_rules! color {
    ($value:expr) => {
        tui::style::Style::new().fg($value)
    };
}

/// Convert a hex string to a [`tui::style::Style`], where the hex string is used as the foreground color.
macro_rules! hex {
    ($value:literal) => {
        tui::style::Style::new().fg(crate::options::config::style::utils::try_hex_to_colour(
            $value.into(),
        )
        .expect("valid hex"))
    };
}

/// Convert a hex string to a [`tui::style::Color`].
macro_rules! hex_colour {
    ($value:literal) => {
        crate::options::config::style::utils::try_hex_to_colour($value.into()).expect("valid hex")
    };
}

pub(super) use color;
pub(super) use hex;
pub(super) use hex_colour;