Is it possible to let a property variable have a value of an another variable?
Like this:
:root {
--theme-primary: --color-red;
--color-red: #F44336;
}
... or:
:root {
--theme-primary: var(--color-red);
--color-red: #F44336;
}
If possible, what is the code, without using JS as possible?