in app/models/project_services/hip_chat_message.rb [23:34]
def status_color(build_or_commit=nil)
build_or_commit ||= commit_status
case build_or_commit
when :success
'green'
when :failed, :canceled
'red'
else
'yellow'
end
end