class HighLine::ColorScheme

def to_constant(v)

Return a normalized representation of a color setting.
def to_constant(v)
  v = v.to_s if v.is_a?(Symbol)
  if v.is_a?(::String)
    HighLine.const_get(v.upcase)
  else
    v
  end
end