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"; }