-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestcolor.sh
More file actions
49 lines (33 loc) · 833 Bytes
/
testcolor.sh
File metadata and controls
49 lines (33 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
clear
#Bash Colour Codes
red="\033[00;31m"
RED="\033[01;31m"
echo -e "${red} I am Dark Red"
echo -e "${RED} I am Bright Red"
green="\033[00;32m"
GREEN="\033[01;32m"
echo -e "${green} I am Dark Green"
echo -e "${GREEN} I am Bright Green"
brown="\033[00;33m"
YELLOW="\033[01;33m"
echo -e "${brown} I am Brown"
echo -e "${YELLOW} I am Yellow"
blue="\033[00;34m"
BLUE="\033[01;34m"
echo -e "${blue} I am Dark Blue"
echo -e "${BLUE} I am Bright Blue"
magenta="\033[00;35m"
MAGENTA="\033[01;35m"
echo -e "${magenta} I am Dark Magenta"
echo -e "${MAGENTA} I am Bright Magenta"
cyan="\033[00;36m"
CYAN="\033[01;36m"
echo -e "${cyan} I am Dark Cyan"
echo -e "${CYAN} I am Bright Cyan"
white="\033[00;37m"
WHITE="\033[01;37m"
echo -e "${white} I am Grey"
echo -e "${WHITE} I am White"
#Sets No Colour
NC="\033[00m"