0.2.0 • Published 4 years ago
coloration-lib v0.2.0
Coloration
Installation
npm i coloration-lib --save- 0.1.3 : for View Engine
- 0.2.0+ : for Ivy
Requirements
Only for demo:
- Angular 13.3.0 and more
Demo
Usage
Examples
changeLuminosity
import { Coloration } from 'coloration-lib';
const color = new Coloration('red');
color.changeLuminosity(0.55);
console.log(color.toHEX()); // #ff8c8cmaskColor
const color = new Coloration('red');
color.maskColor('blue', 0.25);
console.log(color.toHEX()); // #bf0040addColor
const color = new Coloration('red');
color.addColor({
h: -23,
v: 10,
alpha: -0.2,
});
console.log(color.toHEX()); // #ff3381ccPublishing the library
npm run build:lib
npm run publish:libPublishing the demo
npm run build:demoLicense
This module is released under the permissive MIT license. Your contributions are always welcome.