Created
September 11, 2018 00:30
-
-
Save girol/ece29cb18d395f931ff6e4585df0884f to your computer and use it in GitHub Desktop.
Terminal Colors
This file contains 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
default="\033[39m" | |
black="\033[30m" | |
red="\033[0;31m" | |
green="\033[32m" | |
yellow="\033[33m" | |
blue="\033[34m" | |
magenta="\033[35m" | |
cyan="\033[36m" | |
gray="\033[90m" | |
# Light Colors | |
light_gray="\033[37m" | |
light_red="\033[91m" | |
light_green="\033[92m" | |
light_yellow="\033[93m" | |
light_blue="\033[94m" | |
light_magenta="\033[95m" | |
light_cyan="\033[96m" | |
white="\033[97m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment