From 2b61376baf191a82f9774dcb9f51abd03edb1eba Mon Sep 17 00:00:00 2001 From: "Eevee (Alex Munroe)" Date: Tue, 27 Aug 2013 15:17:41 -0700 Subject: That's not how you calculate hue... --- scss/functions/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/functions/core.py b/scss/functions/core.py index 4ea9476..93f0d8b 100644 --- a/scss/functions/core.py +++ b/scss/functions/core.py @@ -203,7 +203,7 @@ def alpha(color): @register('hue', 1) def hue(color): h, s, l = color.hsl - return Number(h * 100, "deg") + return Number(h * 360, "deg") @register('saturation', 1) -- cgit v1.2.1