Method: Common::Color#color_normal

Defined in:
lib/common/color.rb

#color_normal(text, bold = false) ⇒ Object

Colorize the text in normal color.

Parameters:

  • text

    The text to color.

  • bold (defaults to: false)

    Precise if we want to set the text in bold.

Author:

  • tmarmin



131
132
133
# File 'lib/common/color.rb', line 131

def color_normal(text, bold=false)
  return colorize_text(text, 0, bold)
end