For the given json: ```json { "backgroundColor": "#3215B3", } ``` the following doesn't work ($backgroundColor doesn't get replaced): ```css :root { --backgroundColor: $backgroundColor; } ``` but this one works: ``` html { color: #3215B3; } ``` I'm using the CLI.
For the given json:
{ "backgroundColor": "#3215B3", }the following doesn't work ($backgroundColor doesn't get replaced):
but this one works:
I'm using the CLI.