Design
Generate vibrant, glowing neon colors with high saturation and brightness, creating eye-catching electric light effects perfect for digital displays and modern design
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/neon-colors' \
-H 'Content-Type: application/json' \
-d '{"baseColor":"#FF00FF","neonStyle":"classic","neonCount":6,"intensity":0.8,"glowEffect":0.5,"colorTemperature":0,"includeDark":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/neon-colors| Name | Type | Required | Description |
|---|---|---|---|
| baseColor | color | Yes | — |
| neonStyle | select | No | — |
| neonCount | number | No | How many neon colors to generate |
| intensity | number | No | How bright and saturated the neon colors should be (0.5-1.0) |
| glowEffect | number | No | How much the colors should appear to glow (0.0-1.0) |
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-neon-colors": {
"name": "neon-colors",
"description": "Generate vibrant, glowing neon colors with high saturation and brightness, creating eye-catching electric light effects perfect for digital displays and modern design",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=neon-colors",
"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": "neon-colors",
"arguments": {
"baseColor": "#FF00FF",
"neonStyle": "classic",
"neonCount": 6,
"intensity": 0.8,
"glowEffect": 0.5,
"colorTemperature": 0,
"includeDark": true,
"showHexCodes": true,
"showRgbValues": true,
"showHslValues": true,
"generatePalette": false
}
}
}Questions or issues? Contact [email protected]
| colorTemperature | number | No | Cool (-1) to Warm (1) bias (-1 to 1) |
| includeDark | checkbox | No | Generate complementary dark backgrounds |
| 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"
}
}