iotacss-utils-color
v1.0.1
Published
Color utility for iotaCSS
Downloads
47
Readme
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;
}