Advertisement
Guest User

Untitled

a guest
May 24th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # Colors
  2.  
  3. Black="$(tput setaf 0)"
  4.  
  5. BlackBG="$(tput setab 0)"
  6.  
  7. DarkGrey="$(tput bold ; tput setaf 0)"
  8.  
  9. LightGrey="$(tput setaf 7)"
  10.  
  11. LightGreyBG="$(tput setab 7)"
  12.  
  13. White="$(tput bold ; tput setaf 7)"
  14.  
  15. Red="$(tput setaf 1)"
  16.  
  17. RedBG="$(tput setab 1)"
  18.  
  19. LightRed="$(tput bold ; tput setaf 1)"
  20.  
  21. Green="$(tput setaf 2)"
  22.  
  23. GreenBG="$(tput setab 2)"
  24.  
  25. LightGreen="$(tput bold ; tput setaf 2)"
  26.  
  27. Brown="$(tput setaf 3)"
  28.  
  29. BrownBG="$(tput setab 3)"
  30.  
  31. Yellow="$(tput bold ; tput setaf 3)"
  32.  
  33. Blue="$(tput setaf 4)"
  34.  
  35. BlueBG="$(tput setab 4)"
  36.  
  37. LightBlue="$(tput bold ; tput setaf 4)"
  38.  
  39. Purple="$(tput setaf 5)"
  40.  
  41. PurpleBG="$(tput setab 5)"
  42.  
  43. Pink="$(tput bold ; tput setaf 5)"
  44.  
  45. Cyan="$(tput setaf 6)"
  46.  
  47. CyanBG="$(tput setab 6)"
  48.  
  49. LightCyan="$(tput bold ; tput setaf 6)"
  50.  
  51. NC="$(tput sgr0)" # No Color
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement