Skip to content

Instantly share code, notes, and snippets.

@hochan222
Last active December 1, 2020 16:56
Show Gist options
  • Save hochan222/1a8bad7a99280665e355bffe806c3dae to your computer and use it in GitHub Desktop.
Save hochan222/1a8bad7a99280665e355bffe806c3dae to your computer and use it in GitHub Desktop.
shell_color

word

  • BLUE: \033[1;34m
  • RED: \033[1;31m
  • CLEAR: \033[0m
### word
RED_COLOR="\033[31m"
LIGHT_RED_COLOR="\033[31m\033[01m"
GREEN_COLOR="\033[32m"
LIGHT_GREEN_COLOR="\033[32m\033[01m"
YELLOW_COLOR="\033[33m"
BLUE_COLOR="\033[34m"
LIGHT_BLUE_COLOR="\033[34m\033[01m"
LIGHT_SKYBLUE_COLOR="\033[36m\033[01m"

BRACKET_COLOR="\033[90m"
SUCCESS_COLOR="\033[32m"
LIGHT_SUCCESS_COLOR="\033[32m\033[01m"
FAIL_COLOR="\033[91m"

### Background color
SUCCESS_BG="\033[42;1;37m"
FAIL_BG="\033[41;5;11m"
CLEAR_COLOR="\033[0m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment