I was reading lesscss.org and I am wondering why:
@nice-blue: #5B83AD;
@light-blue: @nice-blue + #111;
#header { color: @light-blue; }
compiles the following output
#header { color: #6c94be; }
and not
#header { color: #6c93ad; }
I was reading lesscss.org and I am wondering why:
@nice-blue: #5B83AD;
@light-blue: @nice-blue + #111;
#header { color: @light-blue; }
compiles the following output
#header { color: #6c94be; }
and not
#header { color: #6c93ad; }