From b2b7e4001000a1336d29cc62c089755585246f22 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Tue, 20 Dec 2022 20:38:09 -0800 Subject: [PATCH] :pencil2: Fixed typo --- scripts/dye | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dye b/scripts/dye index 5c887f9a..564869f4 100755 --- a/scripts/dye +++ b/scripts/dye @@ -44,7 +44,7 @@ hex_to_rgb() { ((r = 16#${_:0:2}, g = 16#${_:2:2}, b = 16#${_:4:2})) a=1.0 fi - printf "%s\n" "rgb($r, $g, $b, $a)" + printf "%s\n" "rgba($r, $g, $b, $a)" } rgb_to_hex() {