From 782357da66e1a7fa4ea55a5d230d97f6357ff030 Mon Sep 17 00:00:00 2001 From: Sergio Date: Mon, 3 Apr 2023 18:27:55 +0200 Subject: [PATCH] =?UTF-8?q?colors.sh:=20A=C3=B1adido?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- colors.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 colors.sh diff --git a/colors.sh b/colors.sh new file mode 100755 index 0000000..7a8ec3f --- /dev/null +++ b/colors.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +#BLACK=$(tput setaf 0) +#RED=$(tput setaf 1) +#GREEN=$(tput setaf 2) +#YELLOW=$(tput setaf 3) +#LIME_YELLOW=$(tput setaf 190) +#POWDER_BLUE=$(tput setaf 153) +BLUE=$(tput setaf 4) +#MAGENTA=$(tput setaf 5) +#CYAN=$(tput setaf 6) +#WHITE=$(tput setaf 7) +#BRIGHT=$(tput bold) +NORMAL=$(tput sgr0) +#BLINK=$(tput blink) +#REVERSE=$(tput smso) +#UNDERLINE=$(tput smul) + +printf "%40s\n" "${BLUE}This text is blue${NORMAL}" \ No newline at end of file