-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolours.sh
76 lines (68 loc) · 2.57 KB
/
colours.sh
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
# Obtained courtesy of https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux#answer-28938235
# No copyright
# Reset
export RESET="\033[0m" # Text Reset
# Regular Colors
export Black="\033[0;30m" # Black
export Red="\033[0;31m" # Red
export Green="\033[0;32m" # Green
export Yellow="\033[0;33m" # Yellow
export Blue="\033[0;34m" # Blue
export Purple="\033[0;35m" # Purple
export Cyan="\033[0;36m" # Cyan
export White="\033[0;37m" # White
# Bold
export BBlack="\033[1;30m" # Black
export BRed="\033[1;31m" # Red
export BGreen="\033[1;32m" # Green
export BYellow="\033[1;33m" # Yellow
export BBlue="\033[1;34m" # Blue
export BPurple="\033[1;35m" # Purple
export BCyan="\033[1;36m" # Cyan
export BWhite="\033[1;37m" # White
# Underline
export UBlack="\033[4;30m" # Black
export URed="\033[4;31m" # Red
export UGreen="\033[4;32m" # Green
export UYellow="\033[4;33m" # Yellow
export UBlue="\033[4;34m" # Blue
export UPurple="\033[4;35m" # Purple
export UCyan="\033[4;36m" # Cyan
export UWhite="\033[4;37m" # White
# Background
export On_Black="\033[40m" # Black
export On_Red="\033[41m" # Red
export On_Green="\033[42m" # Green
export On_Yellow="\033[43m" # Yellow
export On_Blue="\033[44m" # Blue
export On_Purple="\033[45m" # Purple
export On_Cyan="\033[46m" # Cyan
export On_White="\033[47m" # White
# High Intensity
export IBlack="\033[0;90m" # Black
export IRed="\033[0;91m" # Red
export IGreen="\033[0;92m" # Green
export IYellow="\033[0;93m" # Yellow
export IBlue="\033[0;94m" # Blue
export IPurple="\033[0;95m" # Purple
export ICyan="\033[0;96m" # Cyan
export IWhite="\033[0;97m" # White
# Bold High Intensity
export BIBlack="\033[1;90m" # Black
export BIRed="\033[1;91m" # Red
export BIGreen="\033[1;92m" # Green
export BIYellow="\033[1;93m" # Yellow
export BIBlue="\033[1;94m" # Blue
export BIPurple="\033[1;95m" # Purple
export BICyan="\033[1;96m" # Cyan
export BIWhite="\033[1;97m" # White
# High Intensity backgrounds
export On_IBlack="\033[0;100m" # Black
export On_IRed="\033[0;101m" # Red
export On_IGreen="\033[0;102m" # Green
export On_IYellow="\033[0;103m" # Yellow
export On_IBlue="\033[0;104m" # Blue
export On_IPurple="\033[0;105m" # Purple
export On_ICyan="\033[0;106m" # Cyan
export On_IWhite="\033[0;107m" # White