class Thoom::SimpleOutputBuilder

Outputs just the basic default colors

Public Class Methods

new() click to toggle source
Calls superclass method Thoom::OutputBuilder::new
# File lib/output_builder.rb, line 289
def initialize
  colors = {
    subtitle_color: :default,
    subtitle_bgcolor: :default,
    title_color: :default,
    title_bgcolor: :default
  }
  super(colors)
end