number-to-css-color

0.1.5 • Public • Published

number-to-css-color

es6 js-standard-style CircleCI

Converts a number to a CSS hex color. It even supports the upcoming CSS4 8 digits notation with alpha.

A note about compatibility

The npm package should be used in an ES6 environment. Even though the published code has ES5 syntax it uses some ES6 features, so you have to make sure to use ES5 and ES6 polyfills if you are in an ancient environment.

Install

npm install number-to-css-color

Usage

import convert from 'number-to-css-color'
 
console.log(convert(0xf)) // -> "#00000f"
console.log(convert(0x10c, {alpha: true})) // -> "#0000010c"

Test

npm test

License

MIT

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i number-to-css-color

    Weekly Downloads

    1

    Version

    0.1.5

    License

    MIT

    Unpacked Size

    4.2 kB

    Total Files

    4

    Last publish

    Collaborators

    • layflags