Background
While the Less compiler allows to negate a Less var independently of the contents, CSS custom properties don't work that way.
With the introduction of T387778: [breaking change] Font modes: Introduce font modes to Codex, the @size-icon-* and @font-size-* token values are changing to feature custom properties.
- -@size CodeSearch
- @font-size isn't used with negations, no occurrences of -@font-size
Goal
Replace negations with calc( -1 * @design-token-name )
Acceptance criteria
- All cases of negation are replaced