Skip to content

Commit bfc130f

Browse files
jarugupjclaude
andcommitted
Use kernel green for install/uninstall banner
Recolor the HYPEMAN ASCII banner from purple to the kernel brand green (#81b300). Renames the banner color variable to KERNEL_GREEN so the intent is explicit and keeps install.sh and uninstall.sh in sync. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 70a2d98 commit bfc130f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SERVICE_NAME="hypeman"
2727
RED='\033[38;2;255;110;110m'
2828
GREEN='\033[38;2;92;190;83m'
2929
YELLOW='\033[0;33m'
30-
PURPLE='\033[38;2;172;134;249m'
30+
KERNEL_GREEN='\033[38;2;129;179;0m'
3131
NC='\033[0m' # No Color
3232

3333
info() { echo -e "${GREEN}[INFO]${NC} $1"; }
@@ -793,7 +793,7 @@ fi
793793
# =============================================================================
794794

795795
echo ""
796-
echo -e "${PURPLE}"
796+
echo -e "${KERNEL_GREEN}"
797797
cat << 'EOF'
798798
██╗ ██╗ ██╗ ██╗ ██████╗ ███████╗ ███╗ ███╗ █████╗ ███╗ ██╗
799799
██║ ██║ ╚██╗ ██╔╝ ██╔══██╗ ██╔════╝ ████╗ ████║ ██╔══██╗ ████╗ ██║

scripts/uninstall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SERVICE_USER="hypeman"
1919
RED='\033[38;2;255;110;110m'
2020
GREEN='\033[38;2;92;190;83m'
2121
YELLOW='\033[0;33m'
22-
PURPLE='\033[38;2;172;134;249m'
22+
KERNEL_GREEN='\033[38;2;129;179;0m'
2323
NC='\033[0m' # No Color
2424

2525
info() { echo -e "${GREEN}[INFO]${NC} $1"; }
@@ -208,7 +208,7 @@ fi
208208
# =============================================================================
209209

210210
echo ""
211-
echo -e "${PURPLE}"
211+
echo -e "${KERNEL_GREEN}"
212212
cat << 'EOF'
213213
██╗ ██╗ ██╗ ██╗ ██████╗ ███████╗ ███╗ ███╗ █████╗ ███╗ ██╗
214214
██║ ██║ ╚██╗ ██╔╝ ██╔══██╗ ██╔════╝ ████╗ ████║ ██╔══██╗ ████╗ ██║

0 commit comments

Comments
 (0)