Unable to set SCSS variable to CSS variable?

CssSass

Css Problem Overview


Consider the following SCSS:

$color-black: #000000;

body {
    --color: $color-black;
}

When it is compiled with node-sass version 4.7.2, it produces following CSS:

body {
    --color: #000000; 
}

When I compile the same SCSS with version 4.8.3 or higher, it produces following:

body {
    --color: $color-black; 
}

What am I missing? I checked release logs, but could not found anything useful. Also, I wonder if this change is genuine why does it have only minor version change? Should it not be a major release?

Also, what is my alternative? Should I use Interpolation?

Css Solutions


Solution 1 - Css

Just use string interpolation:

$color-black: #000000;

body {
    --color: #{$color-black};
}

Apparently the old behaviour is not intended and violated the language specs of SASS:

Solution 2 - Css

scss and css

I found a workaround to mapping the scss variables to css variables.

See Terry's answer for better use

Scss:

// sass variable map 
$colors: (
  color-black: #FFBB00
);

// loop over each name, color
:root {
  // each item in color map
  @each $name, $color in $colors {
    --#{$name}: #{$color};
  }
}

Css:

:root {
  --color-black: #FFBB00;
}

Solution 3 - Css

I had an issue with older sass versions.

Trying to compile a list of variables coming from an array, it would get stuck with the double dash. Here's my solution in case it helps someone


$var-element:'--';

:root {
    @each $color in $color-variables {
     #{$var-element}#{nth($color, 1)}: #{nth($color, 2)};   
    }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHarshal PatilView Question on Stackoverflow
Solution 1 - CssTerryView Answer on Stackoverflow
Solution 2 - CssPersijnView Answer on Stackoverflow
Solution 3 - CsscontrolZedView Answer on Stackoverflow