richthegeek / phpsass

A compiler for SASS/SCSS written in PHP, brought up to date (approx 3.2) from a fork of PHamlP: http://code.google.com/p/phamlp/
http://phpsass.com/
382 stars 83 forks source link

variable overwriting #144

Open gamma613 opened 10 years ago

gamma613 commented 10 years ago

Here's a simplified version of some code that I believe is being incorrectly processed:

$x : #9f0;
$y : solid 1px scale-color($x, $lightness: -50%);

body {
    background:$x;
}

the result of which is

body {
    background:#4d8000;
}