Fix color variable display in 500 tracker output

ISSUE: Example text was showing raw ANSI codes like:
  \033[2mExample: domain.com...\033[0m

FIX: Added DIM and BOLD color variable definitions
  - These weren't being loaded from common-functions.sh
  - Now examples display properly with dim gray text
This commit is contained in:
cschantz
2025-11-03 20:44:45 -05:00
parent 85a17d7b4c
commit 037885011f
+4
View File
@@ -10,6 +10,10 @@
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
source "$SCRIPT_DIR/lib/common-functions.sh" source "$SCRIPT_DIR/lib/common-functions.sh"
# Ensure color variables are set
DIM='\033[2m'
BOLD='\033[1m'
print_banner "Fast 500 Error Tracker" print_banner "Fast 500 Error Tracker"
echo "" echo ""