Convert from RGB

Request URL

https://colour.wtf/api/v1/translate/rgb/255,16,16

Response

{
  "cmyk":{"c":0,"k":0,"m":94,"y":94},
  "hex":{"hex":"FF1010"},
  "hsl":{"h":0,"l":53,"s":100},
  "hsv":{"h":0,"s":94,"v":100},
  "rgb":{"b":16,"g":16,"r":255}
}


Convert from CMYK

Request URL

https://colour.wtf/api/v1/translate/cmyk/0,94,94,0

Response

{
  "cmyk":{"c":0,"k":0,"m":94,"y":94},
  "hex":{"hex":"FF1010"},
  "hsl":{"h":0,"l":53,"s":100},
  "hsv":{"h":0,"s":94,"v":100},
  "rgb":{"b":16,"g":16,"r":255}
}


Convert from Hex

Request URL

https://colour.wtf/api/v1/translate/hex/ff1010

Response

{
  "cmyk":{"c":0,"k":0,"m":94,"y":94},
  "hex":{"hex":"FF1010"},
  "hsl":{"h":0,"l":53,"s":100},
  "hsv":{"h":0,"s":94,"v":100},
  "rgb":{"b":16,"g":16,"r":255}
}


Convert from HSV

Request URL

https://colour.wtf/api/v1/translate/hsv/0,94,100

Response

{
  "cmyk":{"c":0,"k":0,"m":94,"y":94},
  "hex":{"hex":"FF1010"},
  "hsl":{"h":0,"l":53,"s":100},
  "hsv":{"h":0,"s":94,"v":100},
  "rgb":{"b":16,"g":16,"r":255}
}


Convert from HSL

Request URL

https://colour.wtf/api/v1/translate/hsl/0,53,100

Response

{
  "cmyk":{"c":0,"k":0,"m":94,"y":94},
  "hex":{"hex":"FF1010"},
  "hsl":{"h":0,"l":53,"s":100},
  "hsv":{"h":0,"s":94,"v":100},
  "rgb":{"b":16,"g":16,"r":255}
}