Styles are saved in CSS as custom variables in :root
In CSS, you can assign custom properties to variables, for example: :root { --main-bg-color: pink;} body { background-color: var(--main-bg-color);} Currently in Webflow, when you set colors or other styles, these do not appear in the CSS as variab...