1.0.1 • Published 7 years ago

iotacss-utils-color v1.0.1

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

Color Utility

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

Installation

npm install --save iotacss-utils-color

Options

$iota-utils-color-namespace : 'color-' !default;

$iota-utils-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;
}