scripty 0.3.3

Scripty - your Rust command toolkit for easy command execution and file operations
Documentation
use crate::color;
use anstyle::Style;

// Currently used styles
pub(crate) const MAGENTA: Style = Style::new().fg_color(color::MAGENTA);
pub(crate) const BRIGHT_BLACK: Style = Style::new().fg_color(color::BRIGHT_BLACK);
pub(crate) const BRIGHT_BLUE: Style = Style::new().fg_color(color::BRIGHT_BLUE);

pub(crate) const BOLD_UNDERLINE: Style = Style::new().bold().underline();
pub(crate) const BOLD_CYAN: Style = Style::new().fg_color(color::CYAN).bold();
pub(crate) const UNDERLINE_BRIGHT_BLUE: Style =
    Style::new().underline().fg_color(color::BRIGHT_BLUE);

// Additional styles for future use
#[allow(dead_code)]
const BLUE: Style = Style::new().fg_color(color::BLUE);
#[allow(dead_code)]
const RED: Style = Style::new().fg_color(color::RED);
#[allow(dead_code)]
const GREEN: Style = Style::new().fg_color(color::GREEN);
#[allow(dead_code)]
const YELLOW: Style = Style::new().fg_color(color::YELLOW);

#[allow(dead_code)]
const BOLD_RED: Style = Style::new().bold().fg_color(color::RED);
#[allow(dead_code)]
const BOLD_GREEN: Style = Style::new().bold().fg_color(color::GREEN);
#[allow(dead_code)]
const BOLD_YELLOW: Style = Style::new().bold().fg_color(color::YELLOW);
#[allow(dead_code)]
const BOLD_BLUE: Style = Style::new().bold().fg_color(color::BLUE);

#[allow(dead_code)]
const UNDERLINE: Style = Style::new().underline();
#[allow(dead_code)]
const UNDERLINE_RED: Style = Style::new().underline().fg_color(color::RED);
#[allow(dead_code)]
const UNDERLINE_GREEN: Style = Style::new().underline().fg_color(color::GREEN);

#[allow(dead_code)]
const RESET: anstyle::Reset = anstyle::Reset;