pub trait Colorable {
// Required methods
fn set_bg_color(&mut self, color: Option<Color>);
fn set_fg_color(&mut self, color: Option<Color>);
}
pub trait Colorable {
// Required methods
fn set_bg_color(&mut self, color: Option<Color>);
fn set_fg_color(&mut self, color: Option<Color>);
}