Allow the use of the calc() function when defining the value of custom variables. For example:
calc()
Define Variable A as 100vw
100vw
Define Variable B as 20px
20px
Define Variable C using calc(var(--Variable-A) - var(--Variable-B)), resulting in 100vw - 20px
calc(var(--Variable-A) - var(--Variable-B))
100vw - 20px
You won't be notified about changes to this idea.