generate_monochrome_light_scheme
Create a light monochrome color scheme by inputting a base color in hex, RGB, or HSL format and specifying the number of shades to generate, ideal for cohesive design projects.
Instructions
Generates a light monochrome 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"
}