From 1ecf40e6c8a2e3c5d9c5621b51824e0837859024 Mon Sep 17 00:00:00 2001 From: Candifloss Date: Wed, 13 May 2026 06:27:02 +0000 Subject: [PATCH] Update colors --- bash_prompt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash_prompt.sh b/bash_prompt.sh index a2bc7f8..8a957b0 100644 --- a/bash_prompt.sh +++ b/bash_prompt.sh @@ -4,16 +4,16 @@ set_prompt() { # User settings if (( EUID == 0 )); then - local COLOR_USER='\[\033[38;2;180;40;120m\]' # Purple-red (root) + local COLOR_USER='\[\033[38;2;191;29;60m\]' # Deep pink / crimson (root) local PROMPT_SYMBOL='#' else - local COLOR_USER='\[\033[38;2;44;162;221m\]' # Azure blue (user) + local COLOR_USER='\[\033[38;2;44;162;221m\]' # Azure blue (user) local PROMPT_SYMBOL='$' fi # Host and path local COLOR_HOST='\[\033[38;2;44;180;70m\]' # Emerald green - local COLOR_PATH='\[\033[38;2;126;98;247m\]' # Soft purple + local COLOR_PATH='\[\033[38;2;72;72;72m\]' # Dark gray / charcoal # Dynamic symbol color if (( EXIT_STATUS != 0 )); then