Skip to main content
Glama
convertLabToLch.js473 B
import normalizeHue from '../util/normalizeHue.js'; /* References: * https://drafts.csswg.org/css-color/#lab-to-lch * https://drafts.csswg.org/css-color/#color-conversion-code */ const convertLabToLch = ({ l, a, b, alpha }, mode = 'lch') => { let c = Math.sqrt(a * a + b * b); let res = { mode, l, c }; if (c) res.h = normalizeHue((Math.atan2(b, a) * 180) / Math.PI); if (alpha !== undefined) res.alpha = alpha; return res; }; export default convertLabToLch;

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MatheusgVentura/Project-One'

If you have feedback or need assistance with the MCP directory API, please join our Discord server