← Utilidades para desarrolladores

Color aleatorio

GET /generate/color

Generate a random color with its hex code, RGB values, HSL values, and a human-readable color name. Útil para 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.

Ejemplos de solicitudes

Uso basico
curl https://nordapi.ee/api/v1/generate/color

Respuesta en vivo

{
  "data": {
    "b": 69,
    "g": 4,
    "hex": "#980445",
    "r": 152,
    "rgb": "rgb(152,4,69)"
  },
  "success": true
}