Currently using Bootstrap, compiling with Codekit, and also have a separate style.less that I'm working on.
In variables.less:
@blue: #0096EF;
In style.less, I have the following:
.title-text {color: @blue;}
@import: "variables.less";
In bootstrap.less:
@import: "style.less";
@import: "variables.less";
Am I doing this right? To my mind, when bootstrap is compiled it results in variables.less occurring twice.