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