Ensure colors are exported!

This commit is contained in:
2026-03-28 12:20:14 -07:00
parent df8f7f3101
commit f34e02c641

View File

@@ -7,18 +7,18 @@
export PATH="$PATH:~/bin-shared:~/.bin-shared"
# PS1 Colors
PURPLE=`tput setaf 55`
ORANGE=`tput setaf 208`
GREEN=`tput setaf 34`
export PURPLE=`tput setaf 55`
export ORANGE=`tput setaf 208`
export GREEN=`tput setaf 34`
RED=`tput setaf 196`
SCARLET=`tput setaf 160`
YELLOW=`tput setaf 226`
export RED=`tput setaf 196`
export SCARLET=`tput setaf 160`
export YELLOW=`tput setaf 226`
GRAY=`tput setaf 243`
export GRAY=`tput setaf 243`
RESET=`tput sgr0`
BOLD=`tput bold`
export RESET=`tput sgr0`
export BOLD=`tput bold`
## Aliases ##