Created
June 1, 2015 17:11
-
-
Save tmlbl/bb5159bb7272676aee30 to your computer and use it in GitHub Desktop.
Symbol dict example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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