In my less file I define a variable theme colour as: @primaryColour: red;
But when the id of my body changes, I want to change the overall theme colour to '@primaryColour: blue;
How do I re-define this theme colour? This doesn't work:
@primaryColour: red;
body#secondTheme {
@primaryColour: yellow;
}