Sha256: c0c33f577b07099845d59007d6a2d5fd5f61711606f62f9bda94148ffda1606f

Contents?: true

Size: 876 Bytes

Versions: 5

Compression:

Stored size: 876 Bytes

Contents

require 'colorize'


puts "This is blue".colorize( :blue )
puts "This is light blue".colorize( :light_blue )
puts "This is also blue".colorize( :color => :blue )
puts "This is light blue with red background".colorize( :color => :light_blue, :background => :red )
puts "This is light blue with red background".colorize( :light_blue ).colorize( :background => :red )
puts "This is blue text on red".blue.on_red
puts "This is red on blue".colorize( :red ).on_blue
puts "This is red on blue and underline".colorize( :red ).on_blue.underline
puts "This is blue text on red".blue.on_red.blink
puts "This is uncolorized".blue.on_red.uncolorize

String.colors # return array of all possible colors names
String.modes  # return array of all possible modes
String.color_matrix # displays color matrix with color names
String.color_matrix( "FOO" ) # display color matrix with "FOO" text

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
git-hack-0.0.6 tmp/colorize_example.rb
git-hack-0.0.5 tmp/colorize_example.rb
git-hack-0.0.3 tmp/colorize_example.rb
git-hack-0.0.2 tmp/colorize_example.rb
git-hack-0.0.1 tmp/colorize_example.rb