I'm currently changing the system provided CSS variables using javascript using the code
document.body.style.setProperty("--rh__primary-base", "rgba(254,80,0)");
When I inspect element however, I see that the old value of --rh__primary-base still exists in the code just crossed out. Is there any way to get the old value of --rh__primary-base without removing the current value of what I changed?
Save this value to variable before changing, there is no other way to get old value.