module Cucumber::Formatter::ANSIColor

def grey(m)

Not supported in Term::ANSIColor
def grey(m)
  if ::Term::ANSIColor.coloring?
    "\e[90m#{m}\e[0m"
  else
    m
  end
end