Skip to content

Instantly share code, notes, and snippets.

@ae5259
Created October 17, 2023 03:04
Show Gist options
  • Save ae5259/f8a43f89a034e5de49cf1c3be61e86cc to your computer and use it in GitHub Desktop.
Save ae5259/f8a43f89a034e5de49cf1c3be61e86cc to your computer and use it in GitHub Desktop.
Some colors to use on CLI app with Deno.
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