From 579815f4b56e76aeff084dc7ddd2a8a46f6faa00 Mon Sep 17 00:00:00 2001 From: Justin Rost Date: Fri, 28 Feb 2025 08:33:08 +0100 Subject: [PATCH] colors --- Init-Server.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Init-Server.sh b/Init-Server.sh index d2a7db3..c45b013 100644 --- a/Init-Server.sh +++ b/Init-Server.sh @@ -1,10 +1,10 @@ #!/bin/bash # Define color codes -GREEN="\033[0;32m" -BLUE="\033[0;34m" -YELLOW="\033[1;33m" -NC="\033[0m" # No Color +GREEN='\e[32m' +BLUE='\e[34m' +YELLOW='\e[33m' +NC='\e[0m' # No Color # Function for consistent log messages log_success() { echo -e "${GREEN}[SUCCESS]${NC} $1"; }