color-to-variable
v1.0.10
Published
```javascript npm install color-to-variable -g ```
Maintainers
Readme
Installation
npm install color-to-variable -gUsage
ctv style.scssExample
Basically script transform this
.boom {
color: #fff;
}
.test {
color: #000;
}into this
$white: #fff;
$black: #000000;
.boom {
color: $white;
}
.test {
color: $black;
}