-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.colors
71 lines (61 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
# __ ____
# /\ \ /\ _`\
# \ \ \ \ \,\L\_\
# \ \ \ __\/_\__ \
# \ \ \L\ \ /\ \L\ \
# \ \____/ \ `\____\
# \/___/ \/_____/
# a = black
# b = red
# c = green
# d = brown
# e = blue
# f = magenta
# g = cyan
# h = light gray
# x = default
export CLICOLOR=1
export LSCOLORS=fxcxgxgxBxgxgxgxgxFxFx
# _____ __ __
# /\ __`\ /\ \__ /\ \__
# \ \ \/\ \ __ __\ \ ,_\ _____ __ __\ \ ,_\
# \ \ \ \ \/\ \/\ \\ \ \/ /\ '__`\/\ \/\ \\ \ \/
# \ \ \_\ \ \ \_\ \\ \ \_\ \ \L\ \ \ \_\ \\ \ \_
# \ \_____\ \____/ \ \__\\ \ ,__/\ \____/ \ \__\
# \/_____/\/___/ \/__/ \ \ \/ \/___/ \/__/
# \ \_\
# \/_/
colors_loaded=true;
# Attributes
bold="\033[1m";
bold_off="\033[22m";
blink="\033[5m";
blink_off="\033[25m";
# Text colors
black="\033[30m";
red="\033[0;31m";
orange="\033[1;31m";
olive="\033[0;32m";
green="\033[1;32m";
brown="\033[0;33m";
yellow="\033[1;33m";
blue="\033[0;34m";
sky="\033[1;34m";
magenta="\033[0;35m";
purple="\033[0;35m";
aqua="\033[0;36m";
cyan="\033[0;36m";
ecru="\033[0;37";
white="\033[1;37";
# Background colors
b_black="\033[0;40m";
b_red="\033[0;41m";
b_green="\033[0;42m";
b_brown="\033[0;43m";
b_blue="\033[0;44m";
b_magenta="\033[0;45m";
b_cyan="\033[0;46m";
b_white="\033[0;47m";
# Resets all
stop="\033[0m";