I recently dove into the world of LESS and have found it to be quite interesting. However, I encountered a unique situation where a background color was assigned the code #03A9F4 - 100. Based on my limited knowledge of hexadecimal numbers from some IT classes in college (I come from a non-CS background), I would expect the resulting CSS color code to be #03A8F4. To my surprise, the document I was working with had #004590 as the output.
So, what am I missing here?
Less Code
@div-width: 100px;
@color: #03A9F4;
#left{
width: @div-width;
background-color: @color - 100;
}
Resulting CSS Code
#left {
width: 100px;
background-color: #004590;
}