Skip to content

Instantly share code, notes, and snippets.

@flarnie
Created July 23, 2013 14:00
Show Gist options
  • Save flarnie/6062558 to your computer and use it in GitHub Desktop.
Save flarnie/6062558 to your computer and use it in GitHub Desktop.
colors in the terminal
puts "\x1b[31;1m"
puts "This is red."
puts "\x1b[30m"
puts "This is black."
puts "\x30b[1m"
puts "This is 'bold' black."
puts "\x1b[7m"
puts "This is grey."
puts "\x7b[1m"
puts "This is grey."
puts "\x1b[31;1m"
puts "This is red."
puts "\x1b[30m"
puts "This is black."
puts "\x30b[1m"
puts "This is 'bold' black."
puts "\x1b[7m"
puts "This is grey."
puts "\x7b[1m"
puts "This is grey."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment