0.1.1 • Published 9 years ago
seed-color-fn v0.1.1
seed-color-fn

Color function pack for Seed!
Install
npm install seed-color-fn --save-devBasic Usage
SCSS
This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:
var gulp = require('gulp');
var sass = require('gulp-sass');
var pack = require('seed-color-fn');
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass({
includePaths: pack
}))
.pipe(gulp.dest('./css'));
});Once that is setup, simply @import seed-color-fn as needed in your .scss file:
// Packs
@import "pack/seed-color-fn/_index";Usage
Adding colors
Add colors to the global color scheme by using the _color mixin:
// My awesome custom color scheme
$my-colors: (
red: red,
blue: blue
);
// Add my colors to the global color scheme
@include _color($my-colors);Using colors
After you've successfully added/defined colors in your color scheme, use the _color function to use the color:
.my-class {
color: _color(red);
}