@uranetz/setcurrentcolor
v1.2.1
Published
svgo plugin for setting specified attributes (stroke and fill) with currentColor value
Readme
setCurrentColor
svgo plugin for setting up specified attributes (ex stroke and fill) with currentColor value
install
install via npm
npm install @uranetz/setcurrentcolornew in v1.2.1
from this version and up property to be replaced could be in style attribute too
usage
add plugin to svgo optimize:
import setCurrentColor from '@uranetz/setcurrentcolor';
optimize( data, {
//all other staff here
plugins: [
setCurrentColor
],
});params
The "attrs" parameter a pattern to set currentColor value - default to fill and stroke The "force" parameter - changes attrs if they alredy set - default is false. The "path" parameter a pattern to set currentColor for
test
For test run
npm testexample and usage
Simple example showed in test.js. Advanced usage can be found in index.js .
