pub trait DebugColor {
// Required methods
fn debug_color(&self, color: &str) -> String;
fn debug_blue(&self) -> String;
fn debug_dim(&self) -> String;
fn debug_clear(&self) -> String;
fn debug_grey(&self) -> String;
fn debug_mint(&self) -> String;
fn debug_pink(&self) -> String;
fn debug_red(&self) -> String;
fn debug_white(&self) -> String;
fn debug_yellow(&self) -> String;
fn debug_lavender(&self) -> String;
}