Generates three colors positioned 120° apart on the color wheel for balanced, vibrant color schemes. Access via MCP in Cursor or Windsurf, or call GET /v1/color/triadic with any base color. Returns precise hex values — input #FF0000 (red) outputs red, cyan, and yellow. Perfect for creating harmonious palettes in design workflows.
curl "https://tinyfn.io/v1/color/triadic" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/color/triadic', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/color/triadic',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's color tools:
{
"mcpServers": {
"tinyfn-color": {
"url": "https://tinyfn.io/mcp/color",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Accepts hex codes (#FF0000), RGB values (255,0,0), HSL values, and named colors like 'red' or 'blue'.
Triadic uses three colors spaced 120° apart, while complementary uses two colors 180° apart. Triadic schemes are more vibrant and balanced.
Yes, available as an MCP tool in Cursor, Claude Code, Windsurf, Cline, and other compatible editors for real-time palette generation.
Returns JSON with three hex color values and optional RGB/HSL equivalents, ensuring consistent output for design applications.
Triadic schemes can be vibrant but may need contrast adjustments for WCAG compliance. Test combinations before using in UI design.
Get your free API key and start using Triadic Colors in seconds.
Get Free API Key