class Process::Metrics::Command::Summary

def terminal

def terminal
	terminal = Console::Terminal.for($stdout)
	
	# terminal[:pid] = terminal.style(:blue)
	terminal[:command] = terminal.style(nil, nil, :bold)
	terminal[:key] = terminal.style(:cyan)
	
	terminal[:low] = terminal.style(:green)
	terminal[:medium] = terminal.style(:yellow)
	terminal[:high] = terminal.style(:red)
	
	return terminal
end