← Developer Utilities

Random Color

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.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/generate/color

Live Response

{
  "data": {
    "b": 151,
    "g": 206,
    "hex": "#d4ce97",
    "r": 212,
    "rgb": "rgb(212,206,151)"
  },
  "success": true
}