rustpm 0.2.2

A fast, friendly APT frontend with kernel, desktop, and sources management
use nu_ansi_term::{Color, Style};

pub fn install_style() -> Style {
    Color::Green.bold()
}

pub fn remove_style() -> Style {
    Color::Red.bold()
}

pub fn upgrade_style() -> Style {
    Color::Yellow.bold()
}

pub fn header_style() -> Style {
    Color::Cyan.bold()
}

pub fn dim_style() -> Style {
    Style::new().dimmed()
}

pub fn running_kernel_style() -> Style {
    Color::Green.bold()
}

pub fn held_style() -> Style {
    Color::Magenta.normal()
}