-
Notifications
You must be signed in to change notification settings - Fork 468
Closed
Description
input.scss
a { b { color: lighten(Crimson, 10%); } }
Actual results
$ ./node_modules/.bin/node-sass --version
node-sass 4.5.3 (Wrapper) [JavaScript]
libsass 3.5.0.beta.2 (Sass Compiler) [C/C++]
$ ./node_modules/.bin/node-sass test.scss test.scss |& jq --raw-output .message
argument `$color` of `lighten($color, $amount)` must be a color
Backtrace:
test.scss:1, in function `lighten`
test.scss:1
Expected result
$ sass --version
Sass 3.5.1 (Bleeding Edge)
$ sass test.scss
a b {
color: #ed365b; }
Originally reported in sass/libsass-python#214
SamyCookie