Example I have exist class like
.color-white {
color : #fff;
//background: #fff; <-- or getting by background
}
It could be located in third-party .css file.
And in Less how to get color #fff
?
Somthing like
.hello {
color : getColorByClass(.color-white);
}
or
@white : getColorByClass(.color-white);
Is it possible?