Online CSS Variable removal tool
Removes and replaces :root variables in your css file.
:root { --base-font-size: 16px; --link-color: #6495ed; } p { font-size: var( --base-font-size ); } a { font-size: var( --base-font-size ); color: var( --link-color ); }
Convert
Reset
p { font-size: 16px; } a { font-size: 16px; color: #6495ed; }