Is it possible to combine a variable with another if it's from a different selector?
Some thing like this?
:root {
--shadow: 1px 1px var(--color);
}
.blue {
--color: blue;
text-shadow: var(--shadow);
}
.red {
--color: red;
text-shadow: var(--shadow);
}