From 72c75bc163170e42ed98b958310c7b69bee6485b Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 18 Mar 2021 11:14:31 -0500 Subject: Add colors to use at terminal. --- colors.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 colors.sh (limited to 'colors.sh') 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 -- cgit v1.2.3-54-g00ecf