Skip to content

Instantly share code, notes, and snippets.

@tmlbl
Created June 1, 2015 17:11
Show Gist options
  • Save tmlbl/bb5159bb7272676aee30 to your computer and use it in GitHub Desktop.
Save tmlbl/bb5159bb7272676aee30 to your computer and use it in GitHub Desktop.
Symbol dict example
const text_colors = AnyDict(
:black => "\033[1m\033[30m",
:red => "\033[1m\033[31m",
:green => "\033[1m\033[32m",
:yellow => "\033[1m\033[33m",
:blue => "\033[1m\033[34m",
:magenta => "\033[1m\033[35m",
:cyan => "\033[1m\033[36m",
:white => "\033[1m\033[37m",
:normal => "\033[0m",
:bold => "\033[1m",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment