Update NTK.
[nondaw.git] / scripts / colors
bloba167f78708fa5a77c18ee8e28505a6b50495dd46
2 # Include this file to use terminal colors from shell scripts and
3 # makefiles.
4 # john moore liles - 12/30/2002
6 BLACK=`tput setaf 0`
7 RED=`tput setaf 1`
8 GREEN=`tput setaf 2`
9 YELLOW=`tput setaf 3`
10 BLUE=`tput setaf 4`
11 MAGENTA=`tput setaf 5`
12 CYAN=`tput setaf 6`
13 WHITE=`tput setaf 7`
15 BG_BLACK=`tput setab 0`
16 BG_RED=`tput setab 1`
17 BG_GREEN=`tput setab 2`
18 BG_YELLOW=`tput setab 3`
19 BG_BLUE=`tput setab 4`
20 BG_MAGENTA=`tput setab 5`
21 BG_CYAN=`tput setab 6`
22 BG_WHITE=`tput setab 7`
24 BOLD=`tput bold`
25 SGR0=`tput sgr0`