Advertisement
pjmakey2

Bash Color

Mar 27th, 2021
622
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.08 KB | None | 0 0
  1. # Reset
  2. Color_Off='\033[0m'       # Text Reset
  3.  
  4. # Regular Colors
  5. Black='\033[0;30m'        # Black
  6. Red='\033[0;31m'          # Red
  7. Green='\033[0;32m'        # Green
  8. Yellow='\033[0;33m'       # Yellow
  9. Blue='\033[0;34m'         # Blue
  10. Purple='\033[0;35m'       # Purple
  11. Cyan='\033[0;36m'         # Cyan
  12. White='\033[0;37m'        # White
  13.  
  14. # Bold
  15. BBlack='\033[1;30m'       # Black
  16. BRed='\033[1;31m'         # Red
  17. BGreen='\033[1;32m'       # Green
  18. BYellow='\033[1;33m'      # Yellow
  19. BBlue='\033[1;34m'        # Blue
  20. BPurple='\033[1;35m'      # Purple
  21. BCyan='\033[1;36m'        # Cyan
  22. BWhite='\033[1;37m'       # White
  23.  
  24. # Underline
  25. UBlack='\033[4;30m'       # Black
  26. URed='\033[4;31m'         # Red
  27. UGreen='\033[4;32m'       # Green
  28. UYellow='\033[4;33m'      # Yellow
  29. UBlue='\033[4;34m'        # Blue
  30. UPurple='\033[4;35m'      # Purple
  31. UCyan='\033[4;36m'        # Cyan
  32. UWhite='\033[4;37m'       # White
  33.  
  34. # Background
  35. On_Black='\033[40m'       # Black
  36. On_Red='\033[41m'         # Red
  37. On_Green='\033[42m'       # Green
  38. On_Yellow='\033[43m'      # Yellow
  39. On_Blue='\033[44m'        # Blue
  40. On_Purple='\033[45m'      # Purple
  41. On_Cyan='\033[46m'        # Cyan
  42. On_White='\033[47m'       # White
  43.  
  44. # High Intensity
  45. IBlack='\033[0;90m'       # Black
  46. IRed='\033[0;91m'         # Red
  47. IGreen='\033[0;92m'       # Green
  48. IYellow='\033[0;93m'      # Yellow
  49. IBlue='\033[0;94m'        # Blue
  50. IPurple='\033[0;95m'      # Purple
  51. ICyan='\033[0;96m'        # Cyan
  52. IWhite='\033[0;97m'       # White
  53.  
  54. # Bold High Intensity
  55. BIBlack='\033[1;90m'      # Black
  56. BIRed='\033[1;91m'        # Red
  57. BIGreen='\033[1;92m'      # Green
  58. BIYellow='\033[1;93m'     # Yellow
  59. BIBlue='\033[1;94m'       # Blue
  60. BIPurple='\033[1;95m'     # Purple
  61. BICyan='\033[1;96m'       # Cyan
  62. BIWhite='\033[1;97m'      # White
  63.  
  64. # High Intensity backgrounds
  65. On_IBlack='\033[0;100m'   # Black
  66. On_IRed='\033[0;101m'     # Red
  67. On_IGreen='\033[0;102m'   # Green
  68. On_IYellow='\033[0;103m'  # Yellow
  69. On_IBlue='\033[0;104m'    # Blue
  70. On_IPurple='\033[0;105m'  # Purple
  71. On_ICyan='\033[0;106m'    # Cyan
  72. On_IWhite='\033[0;107m'   # White
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement