Color Scheme API

This API generates color schemes from a single base color value. It accepts a singular color value in hexadecimal format and returns each color scheme color value in hexadecimal format.

The output of this tool may not be accurate, nor provide an acceptable color scheme/palette for design purposes. This tool is for demonstration purposes ONLY.

Example API fetch


async function apiReq() {
  const hexValue = '3A0B61'
  const baseURL = 'https://color-scheme-api.cyberalcove.com'
  try {
    const res = await fetch(`${baseURL}/api/${hexValue}`)
    const data = await res.json()
    console.log(data)
  } catch (error) {
    console.log(error)
  }
}
apiReq()
      

Test it Out