colorjs.io
Version:
Let’s get serious about color
23 lines (18 loc) • 504 B
JavaScript
import ColorSpace from "./ColorSpace.js";
import getAll from "./getAll.js";
import getColor from "./getColor.js";
/** @import { ColorTypes, Ref } from "./types.js" */
/**
* @param {ColorTypes} color
* @param {Ref} prop
* @returns {number}
*/
export default function get (color, prop) {
color = getColor(color);
if (prop === "alpha") {
return color.alpha ?? 1;
}
let { space, index } = ColorSpace.resolveCoord(prop, color.space);
let coords = getAll(color, space);
return coords[index];
}