Color
Random Color
GET https://api.fluxpoint.dev/color/random
Get a random color.
Headers
Name
Type
Description
{
"success": true,
"code": 200,
"message": "",
"hex": "#ff0000",
"name": "Red",
"r": 255,
"g": 0,
"b": 0,
}Color Info
GET https://api.fluxpoint.dev/color/info?name=red
Get color info from name, hex or rgb value.
Query Parameters
Name
Type
Description
name/hex/rgb
String
Get info for this color
Headers
Name
Type
Description
{
"success": true,
"code": 200,
"message": "",
"hex": "#ff0000",
"name": "Red",
"r": 255,
"g": 0,
"b": 0,
}Last updated