# File lib/mcollective/util.rb, line 279
    def self.color(code)
      colorize = Config.instance.color

      colors = {:red => "",
                :green => "",
                :yellow => "",
                :cyan => "",
                :bold => "",
                :reset => ""}

      if colorize
        return colors[code] || ""
      else
        return ""
      end
    end