export const BLACK = 'tput setaf 0';
export const RED = 'tput setaf 1';
export const GREEN = 'tput setaf 2';
export const YELLOW = 'tput setaf 3';
export const BLUE = 'tput setaf 4';
export const MAGENTA = 'tput setaf 5';
export const WHITE = 'tput setaf 6';

export const MOVE_UP = `tput cuu 1`
export const CLEAR_LINE = `tput el 1`
export const BOLD = `tput bold`
export const UNDERLINE = `tput smul`
export const RESET = `tput sgr0`