Skip to main content
Glama
convertRgbToLrgb.js376 B
const fn = c => { const abs = Math.abs(c); if (abs <= 0.04045) { return c / 12.92; } return (Math.sign(c) || 1) * Math.pow((abs + 0.055) / 1.055, 2.4); }; const convertRgbToLrgb = ({ r, g, b, alpha }) => { let res = { mode: 'lrgb', r: fn(r), g: fn(g), b: fn(b) }; if (alpha !== undefined) res.alpha = alpha; return res; }; export default convertRgbToLrgb;

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