plesiecki / postcss-colors

PostCSS plugin for colors management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostCSS Colors Build Status npm version Dependency Status

Make custom color palette with ease.

Installation

npm i postcss-colors -D

Usage

in

@colors palette {
    foo: white;
    bar: #000;
}
@colors {
    link-color: bar;
}
.baz {
    background-color: foo;
    color: link-color;
}

out

.baz {
    background-color: black;
    color: white;
}

About

PostCSS plugin for colors management


Languages

Language:JavaScript 100.0%