I have encountered an issue with my HTML code. Here's a snippet of it:
<html>
<head>
<link rel="less/less.js" href="css/style.less">
</head>
<header> This is a header. </header>
</html>
Within style.less, I have the following code:
@light-blue: @blue + #111;
#header {
color: @light-blue;
}
However, despite specifying the color in style.less as light blue, the header still appears as regular black when rendered. Curiously, there are no error messages in the console.