SomMeri / less4j

Less language is an extension of css and less4j compiles it into regular css. Less adds several dynamic features into css: variables, expressions, nested rules, and so on. Less was designed to be compatible with css and any correct css file is also correct less file.
145 stars 47 forks source link

multiply with alpha didn't work #293

Closed NF13 closed 9 years ago

NF13 commented 9 years ago
.test1 {color:multiply(fade(#A21619, 20%), #ffffff);}

excepected value:

.test1 {
  color: #ecd0d1;
}

Tested with: http://lesstester.com/

value from less4j:

.test1 {
  color: #a21619;
}
SomMeri commented 9 years ago

Thank you for report, I will fix this for the next version.

Off-topic: If you want sample code on github to be formatted like code, you can close it into four tics.