From 32d32cb22320091ac8fc6436f1aa8f70158aa878 Mon Sep 17 00:00:00 2001 From: Sergio Date: Mon, 3 Apr 2023 19:07:42 +0200 Subject: [PATCH] =?UTF-8?q?colors.sh:=20A=C3=B1adidos=20colores=20de=20fon?= =?UTF-8?q?do?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- colors.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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)