I\'m not sure what to call this, but basically let\'s say I have a style that I use a lot,
.somepattern{ font-size:16px; font-weight:bold; borde
Even later to the party!
You can now do this with css custom variables.
In our css using the var() function:
.some-pattern { font-size: var(--font-size); font-weight: bold; border: var(--border); }
Then in our html defining the custom variables inline:
test