Multi Brand Colors with support for CSS/CSS-Vars/SASS/SCSS/LESS/Stylus/JSON
npm install multi-brand-colorsMulti Brand Colors
===================
> Multi Brand Colors with support for CSS/CSS-Vars/SCSS/SASS/Stylus/LESS/JSON
#### Bower support
```
bower install --save multi-brand-colors
#### NPM support
``
npm install --save multi-brand-colors
html
Document
Lorem ipsum dolor.
Lorem ipsum dolor.
`$3
About CSS Variables:
www.w3.org/TR/css-variablesHow use with PostCSS:
github.com/postcss/postcss-custom-properties
`css
@import 'bower_components/multi-brand-colors/dist/css-vars/index.css';
// or
@import 'multi-brand-colors';.div {
color: var(--mbc-twitter);
}
`$3
`scss
@import 'bower_components/multi-brand-colors/dist/scss/index.scss';.div {
color: $mbc-twitter;
}
`$3
`sass
@import 'bower_components/multi-brand-colors/dist/sass/index.sass'.div {
color: $mbc-twitter
}
`$3
`less
@import 'bower_components/multi-brand-colors/dist/less/index.less';.div {
color: @mbc-twitter;
}
`$3
`styl
@import bower_components/multi-brand-colors/dist/stylus/index.styl.div
color $mbc-twitter
`$3
`javascript
// simple example
var json = require('./dist/json/index.json');console.log(json);
``