use termion::color::{ Fg, Rgb, Reset }; pub type Color = Fg; pub type Colors = Vec>; pub static BLACK: Color = Fg(Rgb(0x00, 0x00, 0x00)); pub static WHITE: Color = Fg(Rgb(0xFF, 0xFF, 0xFF)); pub static RESET: Fg = Fg(Reset);