An open API service indexing awesome lists of open source software.

https://github.com/postcss/postcss-brand-colors

PostCSS plugin to insert branding colors of all the major companies
https://github.com/postcss/postcss-brand-colors

Last synced: 5 months ago
JSON representation

PostCSS plugin to insert branding colors of all the major companies

Awesome Lists containing this project

README

          

# PostCSS Brand Colors [![Build Status][ci-img]][ci]

[PostCSS] plugin to insert branding colors of all the major companies.

It takes colors from [brand-colors] package.

[brand-colors]: https://github.com/reimertz/brand-colors
[PostCSS]: https://github.com/postcss/postcss
[ci-img]: https://travis-ci.org/postcss/postcss-brand-colors.svg
[ci]: https://travis-ci.org/postcss/postcss-brand-colors

```css
.twitter-button {
background: twitter-color;
}
```

```css
.twitter-button {
background: #55acee;
}
```

## Usage

```js
postcss([ require('postcss-brand-colors') ])
```

See [PostCSS] docs for examples for your environment.