bitcolor
v0.4.0
Published
Small and simple color manipulation library
Downloads
9
Readme
bitcolor
Small and simple color manipulation library.
Installation
Use Yarn or npm.
yarn add bitcolor
# or npm
npm i bitcolor
Usage
Just use exported functions!
import { fromRgb, toHexString, blend } from 'bitcolor'
const red = fromRgb(255, 0, 0)
const blue = fromRgb(0, 0, 255)
const purple = blend(red, blue)
console.log(toHexString(purple)) // #ff00ff
Development
See CONTRIBUTING.md.