generate_analogic_complement_scheme
Create an analogic complement color scheme by inputting a seed color and selecting the number of colors (3-10) for harmonious design palettes.
Instructions
Generates an analogic complement color scheme
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | The seed color in hex (098765), RGB (0,71,171), or HSL (215,100%,34%) format | |
count | No | Number of colors to generate (3-10, default: 5) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "The seed color in hex (098765), RGB (0,71,171), or HSL (215,100%,34%) format",
"type": "string"
},
"count": {
"default": 5,
"description": "Number of colors to generate (3-10, default: 5)",
"maximum": 10,
"minimum": 3,
"type": "integer"
}
},
"required": [
"color"
],
"type": "object"
}