wena 0.2.0

Wena is a micro-framework that provides an elegant starting point for your console application.
Documentation
use colored::*;

pub struct Alert {
    bg: Color,
    description: String,
    fg: Color,
    r#type: String,
}

impl Alert {
    pub fn error(description: impl Into<String>) -> String {
        let alert = Alert {
            bg: Color::Red,
            description: description.into(),
            r#type: "ERROR".to_string(),
            fg: Color::White,
        };

        alert.to_string()
    }

    pub fn info(description: impl Into<String>) -> String {
        let alert = Alert {
            bg: Color::Blue,
            description: description.into(),
            r#type: "INFO".to_string(),
            fg: Color::White,
        };

        alert.to_string()
    }

    pub fn warning(description: impl Into<String>) -> String {
        let alert = Alert {
            bg: Color::Yellow,
            description: description.into(),
            r#type: "WARN".to_string(),
            fg: Color::Black,
        };

        alert.to_string()
    }
}

impl ToString for Alert {
    fn to_string(&self) -> String {
        let message = format!(" {} ", self.r#type)
            .bold()
            .color(self.fg)
            .on_color(self.bg);

        format!("\n  {} {}\n", message, self.description.clone())
    }
}