Method to quickly define variables:
---
const foregroundColor = "hsl(20, 50%, 50%)";
const backgroundColor = "hsl(200, 50%, 50%)";
---
<style define:vars={{ foregroundColor, backgroundColor }}>
p {
background-color: var(--backgroundColor);
color: var(--foregroundColor);
}
</style>