myeon 0.1.0

myeon is a minimalist, keyboard-driven TUI Kanban board
Documentation
use colored::*;

/// Utility functions for printing messages in different colours
/// for better visibility and user experience in the command line interface.
pub fn success(message: &str) {
    println!("{}", message.green().bold());
}

pub fn info(message: &str) {
    println!("{}", message.cyan());
}

pub fn warn(message: &str) {
    eprintln!("{}", message.yellow());
}

pub fn error(message: &str) {
    eprintln!("{}", message.red().bold());
}