use owo_colors::Style;
#[derive(Clone, Copy, Debug, Default)]
pub struct ConfigStyles {
pub path: Style,
pub tool: Style,
}
impl ConfigStyles {
pub fn colorize(&mut self) {
self.path = Style::new().cyan();
self.tool = Style::new().bold().yellow();
}
}