GET /generate/color
Generate a random color with its hex code, RGB values, HSL values, and a human-readable color name. Useful for design tools that need color inspiration, generative art projects, UI theming features, placeholder color generation, and any creative application that benefits from random color selection.
curl https://nordapi.ee/api/v1/generate/color
{
"data": {
"b": 151,
"g": 206,
"hex": "#d4ce97",
"r": 212,
"rgb": "rgb(212,206,151)"
},
"success": true
}