1.0.10 • Published 8 years ago
color-to-variable v1.0.10
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;
}