aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-18 11:14:31 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-18 11:14:31 -0500
commit72c75bc163170e42ed98b958310c7b69bee6485b (patch)
treede9800795baf37126c4fc3155ec30a0117641160
parent3c791ed208ca604cc00f7dd9e7d9cf582f64a639 (diff)
Add colors to use at terminal.
-rw-r--r--colors.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/colors.sh b/colors.sh
new file mode 100644
index 0000000..c92c528
--- /dev/null
+++ b/colors.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+BLK="\e[0;30m"
+RED="\e[0;31m"
+GRN="\e[0;32m"
+YLW="\e[0;33m"
+BLU="\e[0;34m"
+PRP="\e[0;35m"
+CYN="\e[0;36m"
+WHT="\e[0;37m"
+
+RST="\e[0m" \ No newline at end of file