1.0.0 • Published 9 years ago

gulp-colors v1.0.0

Weekly downloads
25
License
MIT
Repository
github
Last release
9 years ago

gulp-colors

Replace all the default colors in your files this better ones by mrmrs/colors.

npm.io

Installation

npm install gulp-colors --save-dev

Usage

This will work in any file containing color names like blue, green and yellow. It will then replace the default colors with good looking hex codes!

var colors = require('gulp-colors');

gulp.task('styles', function () {
  return gulp.src('stylesheet.css')
    .pipe(colors())
    .pipe(gulp.dest(dist));
});

Thanks

A big thanks and shoutout to @mrmrs for this awesome color set!