diff --git a/colors.sh b/colors.sh index 7a8ec3f..ce58a6b 100755 --- a/colors.sh +++ b/colors.sh @@ -1,5 +1,6 @@ #!/bin/bash +# Texto #BLACK=$(tput setaf 0) #RED=$(tput setaf 1) #GREEN=$(tput setaf 2) @@ -10,6 +11,20 @@ BLUE=$(tput setaf 4) #MAGENTA=$(tput setaf 5) #CYAN=$(tput setaf 6) #WHITE=$(tput setaf 7) + +# Fondo +#BLACK_BG=$(tput setab 0) +#RED_BG=$(tput setab 1) +#GREEN_BG=$(tput setab 2) +#YELLOW_BG=$(tput setab 3) +#LIME_YELLOW_BG=$(tput setab 190) +#POWDER_BLUE_BG=$(tput setab 153) +#BLUE_BG=$(tput setab 4) +#MAGENTA_BG=$(tput setab 5) +#CYAN_BG=$(tput setab 6) +#WHITE_BG=$(tput setab 7) + +# Especiales #BRIGHT=$(tput bold) NORMAL=$(tput sgr0) #BLINK=$(tput blink)