change the colours only
Anole (is planned to) use(s) CSS variables for certain standard
colours. This means, you can quickly and easily create theme for
Anole by only creating a CSS file with those variables.
NB:
This feature is yet to be implemented.
As development proceeds, this page will be updated to match.
theming using "wildcards"
CSS allows you to target multiple selectors using attribute selectors.
This makes theming Anole a breeze, and you don't have to use any
preprocessors or any extensions.
For example, you may adjust the properties of all labels like this:
[class*="an-label"] {
padding: 15px;
}
a label with greater padding.