-
Notifications
You must be signed in to change notification settings - Fork 0
/
.colors
51 lines (43 loc) · 1.44 KB
/
.colors
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
#! /bin/zsh
# This file use the \033[ syntax for <Esc> because \033[ doesn't work in sh
# Regular Colors
export BLK="\033[0;30m" # Black
export RED="\033[0;31m" # Red
export GRN="\033[0;32m" # Green
export YLW="\033[0;33m" # Yellow
export BLU="\033[0;34m" # Blue
export PPL="\033[0;35m" # Purple
export CYN="\033[0;36m" # Cyan
export WHT="\033[0;37m" # White
# Bold
export BLK_BOLD="\033[1;30m" # Black
export RED_BOLD="\033[1;31m" # Red
export GRN_BOLD="\033[1;32m" # Green
export YLW_BOLD="\033[1;33m" # Yellow
export BLU_BOLD="\033[1;34m" # Blue
export PPL_BOLD="\033[1;35m" # Purple
export CYN_BOLD="\033[1;36m" # Cyan
export WHT_BOLD="\033[1;37m" # White
# Underline
export BLK_UNDERLINE="\033[4;30m" # Black
export RED_UNDERLINE="\033[4;31m" # Red
export GRN_UNDERLINE="\033[4;32m" # Green
export YLW_UNDERLINE="\033[4;33m" # Yellow
export BLU_UNDERLINE="\033[4;34m" # Blue
export PPL_UNDERLINE="\033[4;35m" # Purple
export CYN_UNDERLINE="\033[4;36m" # Cyan
export WHT_UNDERLINE="\033[4;37m" # White
# Background
export ON_BLK="\033[40m" # Black
export ON_RED="\033[41m" # Red
export ON_GRN="\033[42m" # Green
export ON_YLW="\033[43m" # Yellow
export ON_BLU="\033[44m" # Blue
export ON_PPL="\033[45m" # Purple
export ON_CYN="\033[46m" # Cyan
export ON_WHT="\033[47m" # White
# Intense
export IRED="\033[0;91m" # Red
# Reset all
export NONE="\033[0m" # Text Reset
echo "Sourced .$RED""c$YLW""o$GRN""l$CYN""o$BLU""r$PPL""s$NONE!"