Skip to content

Instantly share code, notes, and snippets.

@keeganjk
Created March 25, 2018 21:36
Show Gist options
  • Save keeganjk/aeaac73ce31583762826449d882851e8 to your computer and use it in GitHub Desktop.
Save keeganjk/aeaac73ce31583762826449d882851e8 to your computer and use it in GitHub Desktop.
Color codes for UNIX systems
black = u'\u001b[30m'
red = u'\u001b[31m'
green = u'\u001b[32m'
yellow = u'\u001b[33m'
blue = u'\u001b[34m'
magenta = u'\u001b[35m'
cyan = u'\u001b[36m'
white = u'\u001b[37m'
normal = u'\u001b[0m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment