class Rouge::Formatters::Terminal256::EscapeSequence

def reset_string

def reset_string
  @reset_string ||= begin
    attrs = []
    attrs << '39' if fg # fg reset
    attrs << '49' if bg # bg reset
    attrs << '00' if style[:bold] || style[:italic]
    escape(attrs)
  end
end