class SimpleColorWrapper

def initialize(text)

def initialize(text)
  @text = text
end

def method_missing(_method, *_args)

def method_missing(_method, *_args)
  self
end

def respond_to_missing?(_method, _include_private = false)

def respond_to_missing?(_method, _include_private = false)
  true
end

def to_s

def to_s
  @text
end