Pad colors with zeroes

pull/22/head
Dominik Ritter 6 years ago
parent e970a021c8
commit 39fe5217c6

@ -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

Loading…
Cancel
Save