How to convert a custom property into a negative value
calc(var(--your-custom-property) * -1);
So in context, it would look something like this:
.class {
margin-bottom: calc(var(--your-custom-property) * -1);
}