use anstyle::{AnsiColor, Effects, Style};
pub(super) const ACTIVE_STYLE: Style = Style::new()
.fg_color(Some(anstyle::Color::Ansi(AnsiColor::Green)))
.effects(Effects::BOLD);
pub(super) const INACTIVE_STYLE: Style = Style::new()
.fg_color(Some(anstyle::Color::Ansi(AnsiColor::Red)))
.effects(Effects::DIMMED);
pub(super) const IP_STYLE: Style =
Style::new().fg_color(Some(anstyle::Color::Ansi(AnsiColor::Cyan)));
pub(super) const NAME_STYLE: Style = Style::new().effects(Effects::BOLD);
pub(super) const SUCCESS_STYLE: Style = Style::new()
.fg_color(Some(anstyle::Color::Ansi(AnsiColor::Green)))
.effects(Effects::BOLD);
pub(super) const ERROR_STYLE: Style = Style::new()
.fg_color(Some(anstyle::Color::Ansi(AnsiColor::Red)))
.effects(Effects::BOLD);
pub(super) const DIM_STYLE: Style = Style::new().effects(Effects::DIMMED);
pub(super) const NOTICE_STYLE: Style = Style::new()
.fg_color(Some(anstyle::Color::Ansi(AnsiColor::Yellow)))
.effects(Effects::BOLD);