# File lib/ruby-prof/printers/call_stack_printer.rb, line 147
    def color(p)
      case i = p.to_i
      when 0..5
        "01"
      when 5..10
        "05"
      when 100
        "9"
      else
        "#{i/10}"
      end
    end