# File lib/bee_console.rb, line 271
      def initialize(style)
        # if style is a String, this is command line argument
        style = parse_style_from_command_line(style) if style.kind_of?(String)
        # if style is nil, set default style
        @style = style || DEFAULT_STYLE
        # set default values for keys if nil
        for key in DEFAULT_STYLE.keys
          @style[key] = @style[key] || DEFAULT_STYLE[key]
        end
      end