analyze_color
Analyze a hex color code to find the closest matching fountain pen inks. Explore detailed ink knowledge context and get tailored recommendations based on color similarity.
Instructions
Analyze a color and provide ink knowledge context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | Hex color code (e.g., "#FF5733") | |
max_results | No | Maximum number of closest inks to return (default: 5) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Hex color code (e.g., \"#FF5733\")",
"type": "string"
},
"max_results": {
"default": 5,
"description": "Maximum number of closest inks to return (default: 5)",
"type": "number"
}
},
"required": [
"color"
],
"type": "object"
}