Hi,
Recently I have been working on my tw5-primer theme, and some feedback I have gotten suggests that the theme doesn’t allow palette tweaking. Testing on my own, I was able to verify it, indeed, doesn’t allow this behaviour, and I have begun to fix it.
Here is the issue: even simplifying the CSS, the theme still overrides the palette changes. For example, if I am working on .tc-body, I add the following CSS to my theme
body.tc-body {
background-color: #000;
}
, which changes the background to black. However, if a user goes to change the palette, which, say, changes the background to white, it doesn’t work, because the palette call of
body.tc-body {
background-color: #fff;
}
is still overridden. As far as I can tell, my theme CSS cannot be simplified further to where it is not override ALL the timer.
Is any tw dev/experienced theme-maker able to help?