Method: CommandKit::Colors::ANSI.blue
- Defined in:
- lib/command_kit/colors.rb
.blue(string = nil) ⇒ String, BLUE
Sets the text color to blue.
214 215 216 217 218 |
# File 'lib/command_kit/colors.rb', line 214 def blue(string=nil) if string then "#{BLUE}#{string}#{RESET_COLOR}" else BLUE end end |