Open
Description
Before conversion
root: {
--red: #ff0000;
}
.myclass { color: var(--red); }
After conversion
.myclass { color: #ff0000; }
I have a very large file with all the variables inside it for theme management; it would be nice to remove all those long names and just replace them with the colors. It would save a huge amount of space.