summaryrefslogtreecommitdiff
path: root/scss/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'scss/types.py')
-rw-r--r--scss/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/types.py b/scss/types.py
index b844c92..e733377 100644
--- a/scss/types.py
+++ b/scss/types.py
@@ -1023,7 +1023,7 @@ class Color(Value):
sp = ''
else:
sp = ' '
- candidates.append("rgba(%d,%s%d,%s%d,%s%.2g)" % (r, sp, g, sp, b, sp, a))
+ candidates.append("rgba(%d,%s%d,%s%d,%s%.6g)" % (r, sp, g, sp, b, sp, a))
if compress:
return min(candidates, key=len)