Terminal escape codes for colors.
Return the escape code for a given color.
# File lib/wirble.rb, line 318 def self.escape(key) COLORS.key?(key) && "\0033[#{COLORS[key]}m" end