In JavaScript/DOM there's getComputedStyle
to get access to all the computed style properties of a given element and then there's getComputedStyle(...).getPropertyValue(...)
the get the actual value of a computed style property.
But how do I get the names of all involved custom properties (those that start with '--')? TYVMIA