From e54e2423a8f977a51d644e905cbfa641f5af38ed Mon Sep 17 00:00:00 2001 From: Bryan Pedini Date: Fri, 6 Mar 2020 12:01:44 +0100 Subject: [PATCH] added bash color variables the file is intended to be sourced or copied onto .bashrc/.bash_profile/whatever --- bash-dependent/bash-color-variables | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bash-dependent/bash-color-variables diff --git a/bash-dependent/bash-color-variables b/bash-dependent/bash-color-variables new file mode 100644 index 0000000..280b998 --- /dev/null +++ b/bash-dependent/bash-color-variables @@ -0,0 +1,14 @@ +FORMAT_RESET="\[\033[00;37m\]" +BLINK="\[\033[05m\]" +RED="\[\033[00;31m\]" +LIGHTRED="\[\033[01;31m\]" +GREEN="\[\033[00;32m\]" +LIGHTGREEN="\[\033[01;32m\]" +BROWN="\[\033[00;33m\]" +LIGHTBROWN="\[\033[01;33m\]" +BLUE="\[\033[00;34m\]" +LIGHTBLUE="\[\033[01;34m\]" +PURPLE="\[\033[00;35m\]" +LIGHTPURPLE="\[\033[01;35m\]" +CYAN="\[\033[00;36m\]" +LIGHTCYAN="\[\033[01;36m\]"