class Thoom::DefaultOutputBuilder

Sets up the default color set

Public Class Methods

new() click to toggle source
Calls superclass method Thoom::OutputBuilder::new
# File lib/output_builder.rb, line 260
def initialize
  colors = {
    title_color: '4D7326',
    title_bgcolor: :white,

    subtitle_color: :white,
    subtitle_bgcolor: '4D7326',

    help_filename: :yellow,
    help_sample_request: :magenta,
    help_sample_url: :blue,

    request_method: :cyan,
    request_path: '813b5e',
    request_port_http: '813b5e',
    request_port_tls: '264d73',
    request_endpoint: :yellow,

    success: '277326',
    warning: :yellow,
    info: :yellow,
    error: 'c20f12'
  }
  super(colors)
end