I change a class on my body depending on what month we are actually in. This is going to change how my theme will behave. So what I want to do is to change my color variable into my .less file depending on those classes. This is what I tryed (and failed) to do.
...
body.january{
@c_primary:<COLOR>;
@c_secondary:<COLOR>;
@c_text:<COLOR>;
}
body.february{
@c_primary:<COLOR>;
@c_secondary:<COLOR>;
@c_text:<COLOR>;
}
...
Is there a way to do it?