Created
October 17, 2023 03:04
-
-
Save ae5259/f8a43f89a034e5de49cf1c3be61e86cc to your computer and use it in GitHub Desktop.
Some colors to use on CLI app with Deno.
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
export default { | |
"red": "\x1b[31m%s\x1b[0m", | |
"blue": "\x1b[36m%s\x1b[0m", | |
"purple":"\x1b[35m%s\x1b[0m", | |
"green":"\x1b[32m%s\x1b[0m", | |
"yellow":"\x1b[33m%s\x1b[0m", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment