There are some span tags with code like this:
<span style="color: rgb(r,g,b);">Text</span>
Need to convert HTML attribute to LESS variable.
.block(@rgb){
@ccolor: ~'style="color: @{rgb}';
span[@{ccolor}]{color:darken(@rgb, 30%);}
}
I can’t designate an HTML object.