# File lib/chef/formatters/base.rb, line 86
      def puts(string, *colors)
        if Chef::Config[:color]
          @out.puts highline.color(string, *colors)
        else
          @out.puts string
        end
      end