ari-subscriber 0.0.1

Async Executor Instrumentation Observability Utility A tracing subscriber layer that outputs Tokio's tracing instrumentation to the terminal in a format conducive to debugging.
Documentation
use colored::Color;

pub(super) const RED: Color = Color::TrueColor {
    r: 0xBA,
    g: 0x5A,
    b: 0x57,
};
pub(super) const RED_BOLD: Color = Color::TrueColor {
    r: 0xDF,
    g: 0x58,
    b: 0x53,
};
pub(super) const GREEN: Color = Color::TrueColor {
    r: 0x48,
    g: 0x9E,
    b: 0x6C,
};
pub(super) const GREEN_BOLD: Color = Color::TrueColor {
    r: 0x5A,
    g: 0xBA,
    b: 0x84,
};
pub(super) const BLUE: Color = Color::TrueColor {
    r: 0x5C,
    g: 0x8D,
    b: 0xCE,
};
pub(super) const BLUE_BOLD: Color = Color::TrueColor {
    r: 0x50,
    g: 0x8E,
    b: 0xE3,
};

pub(super) const YELLOW: Color = Color::TrueColor {
    r: 0xE5,
    g: 0xE4,
    b: 0x4D,
};
pub(super) const YELLOW_BOLD: Color = Color::TrueColor {
    r: 0xF5,
    g: 0xF4,
    b: 0x66,
};
pub(super) const ORANGE: Color = Color::TrueColor {
    r: 0xff,
    g: 0xbf,
    b: 0x69,
};
pub(super) const ORANGE_BOLD: Color = Color::TrueColor {
    r: 0xff,
    g: 0x9f,
    b: 0x1c,
};
pub(super) const PURPLE: Color = Color::TrueColor {
    r: 0x9d,
    g: 0x4e,
    b: 0xdd,
};
pub(super) const PURPLE_BOLD: Color = Color::TrueColor {
    r: 0xc7,
    g: 0x7d,
    b: 0xff,
};
pub(super) const PINK: Color = Color::TrueColor {
    r: 0xc9,
    g: 0x18,
    b: 0x4a,
};

pub(super) const PINK_BOLD: Color = Color::TrueColor {
    r: 0xff,
    g: 0x4d,
    b: 0x6d,
};
pub(super) const TURQUOISE: Color = Color::TrueColor {
    r: 0x9c,
    g: 0xea,
    b: 0xef,
};
pub(super) const TURQUOISE_BOLD: Color = Color::TrueColor {
    r: 0x68,
    g: 0xd8,
    b: 0xd6,
};