Skip to content

Instantly share code, notes, and snippets.

@oofnivek
Created August 23, 2022 12:13
Show Gist options
  • Save oofnivek/d0e136c26cde0f604f41e8e210acad58 to your computer and use it in GitHub Desktop.
Save oofnivek/d0e136c26cde0f604f41e8e210acad58 to your computer and use it in GitHub Desktop.
Ruby colorize terminal text module
require 'colorize'
puts 'black'.black
puts 'light_black'.light_black
puts 'red'.red
puts 'light_red'.light_red
puts 'green'.green
puts 'light_green'.light_green
puts 'yellow'.yellow
puts 'light_yellow'.light_yellow
puts 'blue'.blue
puts 'light_blue'.light_blue
puts 'magenta'.magenta
puts 'light_magenta'.light_magenta
puts 'cyan'.cyan
puts 'light_cyan'.light_cyan
puts 'white'.white
puts 'light_white'.light_white
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment