0.1.2 • Published 8 years ago

iotacss-color v0.1.2

Weekly downloads
16
License
-
Repository
github
Last release
8 years ago

Color Utility

The color utility contains helper classes for the color CSS property.

Installation

npm install --save iotacss-color

Dependencies

Options

$iota-color-namespace : 'color-' !default;
$iota-color-names     : () !default;

Example

$iota-color-names: (
  white: #FFFFFF,
  black: #000000
);

It will generate:

.u-color-white {
  color: #FFFFFF !important;
}

.u-color-black {
  color: #000000 !important;
}