-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolours.sh
42 lines (41 loc) · 1.48 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
#! /bin/bash
#
#
# colours
#
# http://en.wikipedia.org/wiki/ANSI_escape_sequences#Colors
#
export OTHER_NO_COLOUR="\[\033[0m\]"
export OTHER_RED="\[\033[0;31m\]"
export OTHER_LIGHT_RED="\[\033[1;31m\]"
export OTHER_GREEN="\[\033[0;32m\]"
export OTHER_LIGHT_GREEN="\[\033[1;32m\]"
export OTHER_BROWN="\[\033[0;33m\]"
export OTHER_YELLOW="\[\033[1;33m\]"
export OTHER_BLUE="\[\033[0;34m\]"
export OTHER_LIGHT_BLUE="\[\033[1;34m\]"
export OTHER_MAGENTA="\[\033[0;35m\]"
export OTHER_LIGHT_MAGENTA="\[\033[1;35m\]"
export OTHER_CYAN="\[\033[0;36m\]"
export OTHER_LIGHT_CYAN="\[\033[1;36m\]"
export OTHER_WHITE="\[\033[1;37m\]"
export OTHER_LIGHT_GRAY="\[\033[0;37m\]"
export OTHER_GRAY="\[\033[1;38m\]"
export OTHER_GRAY_TOO="\[\033[0;38m\]"
export NO_COLOUR="\033[0m"
export RED="\033[0;31m"
export LIGHT_RED="\033[1;31m"
export GREEN="\033[0;32m"
export LIGHT_GREEN="\033[1;32m"
export BROWN="\033[0;33m"
export YELLOW="\033[1;33m"
export BLUE="\033[0;34m"
export LIGHT_BLUE="\033[1;34m"
export MAGENTA="\033[1;35m"
export LIGHT_MAGENTA="\033[0;35m"
export CYAN="\033[0;36m"
export LIGHT_CYAN="\033[1;36m"
export WHITE="\033[1;37m"
export LIGHT_GRAY="\033[0;37m"
export GRAY="\033[1;38m"
export GRAY_TOO="\033[0;38m"