Skip to content
This repository was archived by the owner on Jul 10, 2018. It is now read-only.

Latest commit

 

History

History
45 lines (29 loc) · 1.25 KB

README.md

File metadata and controls

45 lines (29 loc) · 1.25 KB

Bifrost

Bower npm Build Status

Bifrost is an easy to use and highly configurable color palette for your Sass projects.

It uses the SCSS syntax with human-readable variable naming provided by Sip's handy naming gimmick.

Colors are provided as rgba format to make every value easily adjustable.


Usage

Install it from npm (preferred) or bower:

npm install -D bifrost-color
bower install --save-dev bifrost-color

Use it in your Sass files by calling the function and passing the correct parameters:

/**
 * @param {string} color-group
 * @param {string} named-color
 */

ul li {
  color: bifrost(whites, narvik);
}

See an example of bifrost here

Preview

Contributing

Be sure to add your own colors to help improve the list. Make sure you format them as rgba and respect the rules from scss-lint.

Run tests locally with npm install && npm test and submit a PR.