# File lib/mutter/mutterer.rb, line 170
    def stylize string, styles = []
      [styles].flatten.inject(string) do |str, style|
        style = style.to_sym
        if ANSI[:transforms].include? style
          esc str, *ANSI[:transforms][style]
        elsif ANSI[:colors].include? style
          esc str, ANSI[:colors][style], ANSI[:colors][:reset]
        else
          stylize(str, @styles[style][:style])
        end
      end
    end