iotacss-color
v0.1.2
Published
Color utility for iotaCSS
Downloads
2
Readme
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;
}