summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/functions/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/functions/core.py b/scss/functions/core.py
index de638b5..61e86bf 100644
--- a/scss/functions/core.py
+++ b/scss/functions/core.py
@@ -60,7 +60,7 @@ def rgba2(color, a=None):
if a is None:
alpha = 1
else:
- alpha = _interpret_percentage(a, relto=100)
+ alpha = _interpret_percentage(a)
return Color.from_rgb(*color.rgba[:3], alpha=alpha)