tangled
alpha
login
or
join now
yemou.pink
/
scripts
A collection of scripts
0
fork
atom
overview
issues
pulls
pipelines
fix hex to rgb conversion
yemou
5 years ago
8a580e2a
e1ba1ef8
options
unified
split
Changed files
+1
-1
thm
+1
-1
thm
···
12
12
hex_r=${hex%????}
13
13
hex_g=${hex#??}
14
14
hex_g=${hex_g%??}
15
15
-
hex_b=${hex%????}
15
15
+
hex_b=${hex#????}
16
16
printf '%d,%d,%d' "0x$hex_r" "0x$hex_g" "0x$hex_b"
17
17
}
18
18