Design
Generate split complementary color schemes with harmonious contrast using base color and two adjacent colors to complement
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/color-split-complement' \
-H 'Content-Type: application/json' \
-d '{"baseColor":"#4ECDC4","splitAngle":30,"saturationAdjust":1,"lightnessAdjust":0,"includeOriginal":true,"showHexCodes":true,"showRgbValues":true,"showHslValues":true,"generatePalette":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/color-split-complement| Name | Type | Required | Description |
|---|---|---|---|
| baseColor | color | Yes | — |
| splitAngle | number | No | Angle between complement and split colors (typically 15-45 degrees) |
| saturationAdjust | number | No | Multiplier for saturation (0.5-2.0) |
| lightnessAdjust | number | No | Adjust lightness (-0.3 to 0.3) |
| includeOriginal | checkbox | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-color-split-complement": {
"name": "color-split-complement",
"description": "Generate split complementary color schemes with harmonious contrast using base color and two adjacent colors to complement",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=color-split-complement",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "color-split-complement",
"arguments": {
"baseColor": "#4ECDC4",
"splitAngle": 30,
"saturationAdjust": 1,
"lightnessAdjust": 0,
"includeOriginal": true,
"showHexCodes": true,
"showRgbValues": true,
"showHslValues": true,
"generatePalette": false
}
}
}Questions or issues? Contact [email protected]
| — |
| showHexCodes | checkbox | No | — |
| showRgbValues | checkbox | No | — |
| showHslValues | checkbox | No | — |
| generatePalette | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}