We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab83015 commit 681b451Copy full SHA for 681b451
pywal/util.py
@@ -54,6 +54,11 @@ def alpha_dec(self):
54
"""Export the alpha value as a decimal number in [0, 1]."""
55
return int(self.alpha_num) / 100
56
57
+ @property
58
+ def alpha_hex(self):
59
+ """Export the alpha value as a hexdecimal number in [00, FF]."""
60
+ return "%02X" % (int(int(self.alpha_num) * 255 / 100))
61
+
62
@property
63
def decimal(self):
64
"""Export color in decimal."""
0 commit comments