If I have:
.foo
{
background-color:#fff;
}
LESS converts this to:
.foo
{
background-color:white;
}
Why is this? Do browsers process named colours faster than HEX values?
I'm implementing LESS using dotless. Could this be carrying out the conversion? And if so why?