aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/colors.zsh3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions/colors.zsh b/functions/colors.zsh
index 758b3446..71ca7c9a 100755
--- a/functions/colors.zsh
+++ b/functions/colors.zsh
@@ -314,7 +314,8 @@ function foregroundColor() {
function getColorCode() {
# Early exit: Check if given value is already numerical
if [[ "$1" = <-> ]]; then
- echo -n "$1"
+ # Pad color with zeroes
+ echo -n "${(l:3::0:)1}"
return
fi