mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
22 lines
427 B
JavaScript
22 lines
427 B
JavaScript
/** @module color/mixer */
|
|
|
|
/** The name of the module. */
|
|
export const name = 'mixer';
|
|
|
|
/** The most recent blended color. */
|
|
export var lastColor = null;
|
|
|
|
/** Blend two colors together. */
|
|
export function blend(color1, color2) {}
|
|
|
|
// convert color to array of RGB values (0-255)
|
|
function rgbify(color) {}
|
|
|
|
export {
|
|
/**
|
|
* Get the red, green, and blue values of a color.
|
|
* @function
|
|
*/
|
|
rgbify as toRgb
|
|
}
|