Color Converter
Convert any color between HEX, RGB, HSL, HSV, and CMYK in one place.
HEX
RGB
HSL
HSV
CMYK
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/color-converter/run \
-H "Content-Type: application/json" \
-d '{
"input": "your input here"
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/color-converter/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"input": "your input here"
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_color_converterFull reference: developer docs · OpenAPI spec
About CMYK
CMYK is a device-dependent print color model — the actual color of ink-on-paper depends on the printer, paper, and profile. The CMYK shown here is a naïve conversion from sRGB: no ICC profile, no black-generation curve. Use it for a rough preview only; for production printing, ask your printer for the correct profile.
You might also like
- Color Picker & Contrast CheckerPick colors, convert between HEX/RGB/HSL, and check WCAG contrast.
- CSS Unit ConverterConvert px ↔ rem ↔ em ↔ pt ↔ % with an adjustable base font size.
- HTML Table GeneratorPaste CSV or TSV and get a clean HTML, Tailwind-styled HTML, or Markdown table.
- IP Address ConverterConvert IPv4 between dotted decimal, integer, hex, and binary notations. Compress and expand IPv6.