chroma-js
Version:
JavaScript library for color conversions
12 lines (9 loc) • 302 B
JavaScript
import '../io/lab/index.js';
import Color from '../Color.js';
import mix from '../generator/mix.js';
Color.prototype.tint = function (f = 0.5, ...rest) {
return mix(this, 'white', f, ...rest);
};
Color.prototype.shade = function (f = 0.5, ...rest) {
return mix(this, 'black', f, ...rest);
};