Convert color values into variables.

Enable color codeLens.
The path of the variables configuration file.
Defines which languages have color transformation enabled. The languages that are turned on by default are css, sass, scss, less and stylus documents:
"sass-color-transformation.languages": [
"scss",
"sass",
"stylus",
"less"
]
Get Started
create a variables config file first (use sass extension please).
for example, we create a sass file named variables-config.sass and put it in .vscode folder
$B40: #5AAFF5;
$B50: #0070CC;
$B60: #005AA5;
$snow: #fff;
$dark: [#000](https://github.com/JJVvV/vscode-sass-color-transformation/issues/000);
$snow-background: rgba(255, 255, 255, 1);
$border-brand: $B40;
$primary-brand: $B50;
$hover-brand: $B60;
--main-bg-color: $primary-brand;
body
background-color: #0070CC
