use term::{Color, Style};
pub fn sprintln(message: String, fg: Color, bg: Color, bold: bool, dim: bool,
underline: bool, blink: bool, reverse: bool) {
let mut text = Style::new(message);
text.fg(fg);
text.bg(bg);
text.bold(bold);
text.dim(dim);
text.underline(underline);
text.blink(blink);
text.reverse(reverse);
println!("{}", text);
}