class Console::Terminal::Text

def puts(*args, style: nil)

def puts(*args, style: nil)
	if style and prefix = self[style]
		@output.write(prefix)
		@output.puts(*args)
		@output.write(self.reset)
	else
		@output.puts(*args)
	end
end